Home | History | Annotate | Download | only in cts

Lines Matching defs:LATITUDE

79     // Latitude ranges from -1296000 to 1296000.
80 private static final int LATITUDE = 1296000;
206 int latitude = cdma.getLatitude();
207 assertTrue("getLatitude() out of range [-1296000,1296000], latitude=" + latitude,
208 latitude == Integer.MAX_VALUE || (latitude >= -LATITUDE && latitude <= LATITUDE));