Home
last modified time | relevance | path

Searched refs:CorrelationVector (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/location/java/android/location/
DCorrelationVector.java37 public final class CorrelationVector implements Parcelable { class
89 private CorrelationVector(Builder builder) { in CorrelationVector() method in CorrelationVector
103 private CorrelationVector(Parcel in) { in CorrelationVector() method in CorrelationVector
114 public static final @NonNull Parcelable.Creator<CorrelationVector> CREATOR =
115 new Parcelable.Creator<CorrelationVector>() {
117 public CorrelationVector createFromParcel(Parcel parcel) {
118 return new CorrelationVector(parcel);
122 public CorrelationVector[] newArray(int size) {
123 return new CorrelationVector[size];
161 if (!(object instanceof CorrelationVector)) { in equals()
[all …]
DGnssMeasurement.java77 @Nullable private Collection<CorrelationVector> mReadOnlyCorrelationVectors;
1899 public Collection<CorrelationVector> getCorrelationVectors() { in getCorrelationVectors()
1911 @Nullable Collection<CorrelationVector> correlationVectors) { in setCorrelationVectors()
1967 CorrelationVector[] correlationVectorsArray =
1968 new CorrelationVector[parcel.readInt()];
1969 parcel.readTypedArray(correlationVectorsArray, CorrelationVector.CREATOR);
1970 Collection<CorrelationVector> corrVecCollection =
2017 CorrelationVector[] correlationVectorArray = in writeToParcel()
2018 mReadOnlyCorrelationVectors.toArray(new CorrelationVector[correlationVectorCount]); in writeToParcel()
2130 for (CorrelationVector correlationVector : mReadOnlyCorrelationVectors) { in toString()
/frameworks/base/location/api/
Dsystem-current.txt9 public final class CorrelationVector implements android.os.Parcelable {
16 …Null public static final android.os.Parcelable.Creator<android.location.CorrelationVector> CREATOR;
19 public static final class CorrelationVector.Builder {
20 ctor public CorrelationVector.Builder();
21 method @NonNull public android.location.CorrelationVector build();
22 …method @NonNull public android.location.CorrelationVector.Builder setFrequencyOffsetMetersPerSecon…
23 method @NonNull public android.location.CorrelationVector.Builder setMagnitude(@NonNull int[]);
24 …method @NonNull public android.location.CorrelationVector.Builder setSamplingStartMeters(@FloatRan…
25 …method @NonNull public android.location.CorrelationVector.Builder setSamplingWidthMeters(@FloatRan…
79 …method @Nullable public java.util.Collection<android.location.CorrelationVector> getCorrelationVec…
Dtest-lint-baseline.txt32 …on.GnssMeasurement#setCorrelationVectors(java.util.Collection<android.location.CorrelationVector>):
Dtest-current.txt66 …lic void setCorrelationVectors(@Nullable java.util.Collection<android.location.CorrelationVector>);
/frameworks/base/services/core/jni/gnss/
DGnssMeasurementCallback.cpp24 using hardware::gnss::CorrelationVector;
502 const CorrelationVector& correlationVector = measurement.correlationVectors[i]; in translateSingleGnssMeasurement()