Home
last modified time | relevance | path

Searched refs:MAX_LONGITUDE (Results 1 – 3 of 3) sorted by relevance

/packages/modules/Wifi/service/java/com/android/server/wifi/
DAfcEllipseLocation.java38 static final int MAX_LONGITUDE = 180; field in AfcEllipseLocation
79 } else if (mLongitude > MAX_LONGITUDE) { in AfcEllipseLocation()
80 mLongitude = MAX_LONGITUDE; in AfcEllipseLocation()
141 if (mLongitude + semiMajorAxisDegrees > MAX_LONGITUDE && comparingLongitude < 0) { in checkLocation()
/packages/modules/HealthFitness/framework/java/android/health/connect/datatypes/
DExerciseRoute.java112 private static final double MAX_LONGITUDE = 180; field in ExerciseRoute.Location
171 @FloatRange(from = MIN_LONGITUDE, to = MAX_LONGITUDE) double longitude, in Location()
181 longitude, MIN_LONGITUDE, MAX_LONGITUDE, "Longitude"); in Location()
323 @FloatRange(from = MIN_LONGITUDE, to = MAX_LONGITUDE)
/packages/modules/Wifi/service/tests/wifitests/src/com/android/server/wifi/
DAfcEllipseLocationTest.java189 when(mLocation.getLongitude()).thenReturn(AfcEllipseLocation.MAX_LONGITUDE - 0.001); in testEllipseOverMaximumLongitude()
219 double movingLongitudePoint = AfcEllipseLocation.MAX_LONGITUDE - 0.001; in testEllipseOverMinimumLongitude()
224 movingLongitudePoint = AfcEllipseLocation.MAX_LONGITUDE - 5; in testEllipseOverMinimumLongitude()