Searched refs:CorrelationVector (Results 1 – 6 of 6) sorted by relevance
37 public final class CorrelationVector implements Parcelable { class89 private CorrelationVector(Builder builder) { in CorrelationVector() method in CorrelationVector103 private CorrelationVector(Parcel in) { in CorrelationVector() method in CorrelationVector114 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 …]
77 @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()
9 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…
32 …on.GnssMeasurement#setCorrelationVectors(java.util.Collection<android.location.CorrelationVector>):
66 …lic void setCorrelationVectors(@Nullable java.util.Collection<android.location.CorrelationVector>);
24 using hardware::gnss::CorrelationVector;502 const CorrelationVector& correlationVector = measurement.correlationVectors[i]; in translateSingleGnssMeasurement()