HomeSort by relevance Sort by last modified time
    Searched full:longitude (Results 1 - 25 of 567) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowAddress.java 16 private double longitude; field in class:ShadowAddress
33 return longitude;
37 public void setLongitude(double longitude) {
38 this.longitude = longitude;
ShadowLocation.java 21 private double longitude; field in class:ShadowLocation
58 longitude = l.getLongitude();
169 return longitude;
173 public void setLongitude(double longitude) {
174 this.longitude = longitude;
210 if (Double.compare(that.longitude, longitude) != 0) return false;
225 temp = longitude != +0.0d ? Double.doubleToLongBits(longitude) : 0L
    [all...]
  /external/vulkan-validation-layers/libs/glm/gtx/
polar_coordinates.inl 25 atan(tmp.x, tmp.z), // longitude
31 degrees(atan(tmp.x, tmp.z)), // longitude
44 T const longitude(polar.y);
48 T const longitude(radians(polar.y));
52 cos(latitude) * sin(longitude),
54 cos(latitude) * cos(longitude));
  /packages/apps/Camera2/src/com/android/camera/data/
Location.java 22 * Encapsulate latitude and longitude into a single location object.
33 private Location(double latitude, double longitude) {
35 mLongitude = longitude;
94 public static Location from(double latitude, double longitude) {
95 if (Double.isNaN(latitude) || Double.isNaN(longitude)
96 || Double.isInfinite(latitude) || Double.isInfinite(longitude)
97 || (latitude == 0.0 && longitude == 0.0)) {
101 return new Location(latitude, longitude);
  /developers/build/prebuilts/gradle/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
LocationInformationBox.java 19 private double longitude; field in class:LocationInformationBox
54 return longitude;
57 public void setLongitude(double longitude) {
58 this.longitude = longitude;
103 longitude = IsoTypeReader.readFixedPoint1616(content);
118 IsoTypeWriter.writeFixedPont1616(byteBuffer, longitude);
  /frameworks/base/location/java/android/location/
Geofence.java 42 * @param longitude longitude in degrees, between -180 and +180 inclusive
47 public static Geofence createCircle(double latitude, double longitude, float radius) {
48 return new Geofence(latitude, longitude, radius);
51 private Geofence(double latitude, double longitude, float radius) {
53 checkLatLong(latitude, longitude);
56 mLongitude = longitude;
86 private static void checkLatLong(double latitude, double longitude) {
90 if (longitude > 180.0 || longitude < -180.0)
    [all...]
Geocoder.java 34 * of a location into a (latitude, longitude) coordinate. Reverse
35 * geocoding is the process of transforming a (latitude, longitude)
100 * area immediately surrounding the given latitude and longitude.
110 * @param longitude the longitude a point for the search
118 * @throws IllegalArgumentException if longitude is
123 public List<Address> getFromLocation(double latitude, double longitude, int maxResults)
128 if (longitude < -180.0 || longitude > 180.0) {
129 throw new IllegalArgumentException("longitude == " + longitude)
    [all...]
IGpsGeofenceHardware.aidl 28 longitude, double radius, int lastTransition, int monitorTransition,
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareRequest.java 42 private void setCircularGeofence(double latitude, double longitude, double radius) {
44 mLongitude = longitude;
53 * @param longitude Longitude of the geofence
57 double longitude, double radius) {
59 geofenceRequest.setCircularGeofence(latitude, longitude, radius);
139 * Returns the longitude of this geofence.
  /developers/build/prebuilts/gradle/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 37 * @param longitude Longitude of the Geofence's center in degrees.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
47 this.mLongitude = longitude;
  /developers/samples/android/wearable/wear/Geofencing/Application/src/main/java/com/example/android/wearable/geofencing/
SimpleGeofence.java 37 * @param longitude Longitude of the Geofence's center in degrees.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
47 this.mLongitude = longitude;
  /development/samples/browseable/Geofencing/Application/src/com.example.android.wearable.geofencing/
SimpleGeofence.java 37 * @param longitude Longitude of the Geofence's center in degrees.
42 public SimpleGeofence(String geofenceId, double latitude, double longitude, float radius,
47 this.mLongitude = longitude;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 41 public double longitude = INVALID_LATLNG; field in class:LocalMediaItem
67 latLong[1] = longitude;
93 if (GalleryUtils.isValidLocation(latitude, longitude)) {
94 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
  /frameworks/support/room/common/src/main/java/android/arch/persistence/room/
Embedded.java 36 * double longitude;
44 * Room will consider {@code latitude} and {@code longitude} as if they are fields of the
47 * So if you have a query that returns {@code street, latitude, longitude}, Room will properly
51 * columns: {@code street, latitude, longitude}
83 * The column names for {@code latitude} and {@code longitude} will be {@code foo_latitude} and
  /cts/tests/tests/location/src/android/location/cts/psedorange/
Ecef2LlaConverter.java 20 * Converts ECEF (Earth Centered Earth Fixed) Cartesian coordinates to LLA (latitude, longitude,
44 * longitude, and altitude) using the close form approach
48 * <p>Output is GeodeticLlaValues class containing geodetic latitude (radians), geodetic longitude
60 // limit longitude to range of 0 to 2Pi
87 * longitude, and altitude) using iteration approach
91 * <p>Outputs is GeodeticLlaValues containing geodetic latitude (radians), geodetic longitude
160 * Class containing geodetic coordinates: latitude in radians, geodetic longitude in radians
  /external/sl4a/Common/src/com/googlecode/android_scripting/facade/
LocationFacade.java 49 * {u'network': {u'altitude': 0, u'provider': u'network', u'longitude': -0.38509020000000002,
51 * {u'altitude': 51, u'provider': u'gps', u'longitude': -0.38537094593048096, u'time':
70 * lo = n['longitude']
169 @Rpc(description = "Returns a list of addresses for the given latitude and longitude.", returns = "A list of addresses.")
172 @RpcParameter(name = "longitude") Double longitude,
175 return mGeocoder.getFromLocation(latitude, longitude, maxResults);
  /development/tools/emulator/test-apps/SmokeTests/src/com/android/emulator/smoketests/gps/
GpsLocationTest.java 39 * longitude and latitude coordinates via the geo fix command
41 private static final double LONGITUDE = -122.08345770835876;
70 assertEquals(new Float(LONGITUDE), new Float(mLocation.getLongitude()));
  /frameworks/base/location/lib/java/com/android/location/provider/
GeocodeProvider.java 40 public String getFromLocation(double latitude, double longitude, int maxResults,
42 return GeocodeProvider.this.onGetFromLocation(latitude, longitude, maxResults,
61 public abstract String onGetFromLocation(double latitude, double longitude, int maxResults,
  /system/chre/apps/chqts/src/general_test/
cell_info_cdma.cc 34 } else if (!isBoundedInt32(identity.longitude, -2592000, 2592000, max)) {
35 sendFatalFailureInt32("Invalid CDMA Longitude: %d", identity.longitude);
  /packages/apps/Dialer/java/com/android/incallui/calllocation/impl/res/values/
strings.xml 10 <string name="lat_long_format"><xliff:g id="latitude">%f</xliff:g>, <xliff:g id="longitude">%f</xliff:g></string>
  /frameworks/base/services/tests/servicestests/src/com/android/server/twilight/
TwilightServiceTest.java 62 private Location createMockLocation(double latitude, double longitude) {
67 location.setLongitude(longitude);
  /tools/tradefederation/core/prod-tests/src/com/android/sdk/tests/
EmulatorGpsPreparer.java 36 private static final double LONGITUDE = -122.08345770835876;
47 console.sendLocation(LONGITUDE, LATITUDE, 0);

Completed in 1339 milliseconds

1 2 3 4 5 6 7 8 91011>>