Home
last modified time | relevance | path

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

/aosp14/frameworks/base/location/java/android/location/
H A 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
115 new Parcelable.Creator<CorrelationVector>() {
118 return new CorrelationVector(parcel);
122 public CorrelationVector[] newArray(int size) {
123 return new CorrelationVector[size];
161 if (!(object instanceof CorrelationVector)) { in equals()
164 CorrelationVector c = (CorrelationVector) object; in equals()
224 public CorrelationVector build() { in build()
[all …]
H A DGnssMeasurement.java77 @Nullable private Collection<CorrelationVector> mReadOnlyCorrelationVectors;
1898 public Collection<CorrelationVector> getCorrelationVectors() { in getCorrelationVectors()
1910 @Nullable Collection<CorrelationVector> correlationVectors) { in setCorrelationVectors()
1966 CorrelationVector[] correlationVectorsArray =
1967 new CorrelationVector[parcel.readInt()];
1968 parcel.readTypedArray(correlationVectorsArray, CorrelationVector.CREATOR);
1969 Collection<CorrelationVector> corrVecCollection =
2016 CorrelationVector[] correlationVectorArray = in writeToParcel()
2017 mReadOnlyCorrelationVectors.toArray(new CorrelationVector[correlationVectorCount]); in writeToParcel()
2129 for (CorrelationVector correlationVector : mReadOnlyCorrelationVectors) { in toString()
/aosp14/frameworks/base/services/core/jni/gnss/
H A DGnssMeasurementCallback.cpp24 using hardware::gnss::CorrelationVector;
502 const CorrelationVector& correlationVector = measurement.correlationVectors[i]; in translateSingleGnssMeasurement()
/aosp14/frameworks/base/core/api/
H A Dtest-lint-baseline.txt120 …on.GnssMeasurement#setCorrelationVectors(java.util.Collection<android.location.CorrelationVector>):
H A Dsystem-current.txt6172 public final class CorrelationVector implements android.os.Parcelable {
6179 …Null public static final android.os.Parcelable.Creator<android.location.CorrelationVector> CREATOR;
6182 public static final class CorrelationVector.Builder {
6183 ctor public CorrelationVector.Builder();
6184 method @NonNull public android.location.CorrelationVector build();
6185 …method @NonNull public android.location.CorrelationVector.Builder setFrequencyOffsetMetersPerSecon…
6186 method @NonNull public android.location.CorrelationVector.Builder setMagnitude(@NonNull int[]);
6187 …method @NonNull public android.location.CorrelationVector.Builder setSamplingStartMeters(@FloatRan…
6188 …method @NonNull public android.location.CorrelationVector.Builder setSamplingWidthMeters(@FloatRan…
6242 …method @Nullable public java.util.Collection<android.location.CorrelationVector> getCorrelationVec…
H A Dtest-current.txt1786 …lic void setCorrelationVectors(@Nullable java.util.Collection<android.location.CorrelationVector>);