HomeSort by relevance Sort by last modified time
    Searched refs:SatelliteInfo (Results 1 - 4 of 4) sorted by null

  /frameworks/base/location/tests/locationtests/src/android/location/
GnssStatusTest.java 43 List<SatelliteInfo> svInfos = new ArrayList<>();
54 List<SatelliteInfo> svInfos = new ArrayList<>();
55 SatelliteInfo svInfo =
56 new SatelliteInfo(100,1, true, true, true, true, 100f, 20.3f, 45.5f, 100.23f);
68 List<SatelliteInfo> svInfos = new ArrayList<>();
69 SatelliteInfo svInfo1 =
70 new SatelliteInfo(20, 1,true, true, true, true, 10.1f, 20.3f, 45.5f, 111.23f);
71 SatelliteInfo svInfo2 =
72 new SatelliteInfo(50, 2, true, false, true, false, 20.2f, 21.3f, 46.5f, 222.23f);
73 SatelliteInfo svInfo3
    [all...]
SatelliteInfo.java 24 public class SatelliteInfo {
51 public SatelliteInfo(int svid, int constellationType, boolean hasEphemris, boolean hasAlmanac,
77 public static int[] getSvidWithFlagsArray(List<SatelliteInfo> svInfos) {
88 public static float[] getCn0sArray(List<SatelliteInfo> svInfos) {
99 public static float[] getElevationsArray(List<SatelliteInfo> svInfos) {
110 public static float[] getAzimuthsArray(List<SatelliteInfo> svInfos) {
121 public static float[] getCarrierFrequencyArray(List<SatelliteInfo> svInfos) {
  /cts/tests/tests/location/src/android/location/cts/asn1/supl2/supl_pos_init/
SatelliteInfo.java 37 public class SatelliteInfo
44 public SatelliteInfo() {
71 * Creates a new SatelliteInfo from encoded stream.
73 public static SatelliteInfo fromPerUnaligned(byte[] encodedBytes) {
74 SatelliteInfo result = new SatelliteInfo();
80 * Creates a new SatelliteInfo from encoded stream.
82 public static SatelliteInfo fromPerAligned(byte[] encodedBytes) {
83 SatelliteInfo result = new SatelliteInfo();
    [all...]
NavigationModel.java 161 private SatelliteInfo satInfo_;
162 public SatelliteInfo getSatInfo() {
166 * @throws ClassCastException if value is not a SatelliteInfo
169 this.satInfo_ = (SatelliteInfo) value;
171 public SatelliteInfo setSatInfoToNewInstance() {
172 satInfo_ = new SatelliteInfo();
380 return tag == null ? SatelliteInfo.getPossibleFirstTags() : ImmutableList.of(tag);

Completed in 91 milliseconds