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

1 2 3

  /external/jmonkeyengine/engine/src/desktop/jme3tools/navigation/
MapModel2D.java 141 double distance = NavCalculator.computeLongDiff(centre.getLongitude(),
142 position.getLongitude());
157 if (centre.getLongitude() == position.getLongitude()) {
183 if (centre.getLongitude() < 0 && position.getLongitude() < centre.getLongitude()) {
186 } else if (centre.getLongitude() < 0 && position.getLongitude() > centre.getLongitude()) {
    [all...]
MapModel3D.java 170 double distance = NavCalculator.computeLongDiff(centre.getLongitude(),
171 position.getLongitude());
186 if (centre.getLongitude() == position.getLongitude()) {
212 if (centre.getLongitude() < 0 && position.getLongitude() < centre.getLongitude()) {
215 } else if (centre.getLongitude() < 0 && position.getLongitude() > centre.getLongitude()) {
    [all...]
NavCalculator.java 95 double dLong = computeDLong(p1.getLongitude(), p2.getLongitude());
119 double dLong = computeDLong(p1.getLongitude(), p2.getLongitude());
153 double dLong = p1.getLongitude() - p2.getLongitude();
319 double initialLong = initialPos.getLongitude();
535 double dLon = computeDLong(p1.getLongitude(), p2.getLongitude());
552 double adj = Math.abs(p1.getLongitude() - p2.getLongitude())
    [all...]
Position.java 164 public double getLongitude() {
223 System.out.println(p.getLongitude());
  /external/smack/src/org/xbill/DNS/
GPOSRecord.java 72 validate(getLongitude(), getLatitude());
86 validate(getLongitude(), getLatitude());
104 validate(getLongitude(), getLatitude());
135 getLongitude() {
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocation.java 58 longitude = l.getLongitude();
168 public double getLongitude() {
385 dest.getLatitude() != mLat2 || dest.getLongitude() != mLon2) {
387 dest.getLatitude(), dest.getLongitude(), mResults);
391 mLon2 = dest.getLongitude();
414 dest.getLatitude() != mLat2 || dest.getLongitude() != mLon2) {
416 dest.getLatitude(), dest.getLongitude(), mResults);
420 mLon2 = dest.getLongitude();
ShadowAddress.java 32 public double getLongitude() {
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
LocationTest.java 76 assertEquals(0.0d, defaultLocation.getLongitude());
107 assertEquals(3.0, l.getLongitude());
  /cts/tests/tests/location/src/android/location/cts/
LocationTest.java 324 assertEquals(0, location.getLongitude(), DELTA);
327 assertEquals(180, location.getLongitude(), DELTA);
330 assertEquals(-180, location.getLongitude(), DELTA);
382 assertEquals(0, location.getLongitude(), DELTA);
417 assertEquals(TEST_LONGITUDE, l.getLongitude(), DELTA);
AddressTest.java 137 assertEquals(longitude, address.getLongitude());
142 address.getLongitude();
LocationManagerTest.java 324 assertEquals(longitude1, location.getLongitude());
376 assertEquals(longitude1, location.getLongitude());
424 assertEquals(longitude1, location.getLongitude());
514 assertEquals(longitude1, location.getLongitude());
525 assertEquals(longitude2, location.getLongitude());
685 assertEquals(longitude, location.getLongitude());
    [all...]
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 70 assertEquals(new Float(LONGITUDE), new Float(mLocation.getLongitude()));
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
LocationInformationBox.java 53 public double getLongitude() {
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
CSVFormatter.java 58 rowOutput.append(entry.getLocation().getLongitude());
KMLFormatter.java 60 builder.addLine(loc.getLongitude() + "," + loc.getLatitude() + ","
  /frameworks/base/core/java/android/hardware/location/
GeofenceHardwareRequest.java 116 public double getLongitude() {
  /frameworks/base/services/java/com/android/server/location/
GeofenceState.java 60 mLocation.setLongitude(fence.getLongitude());
LocationBasedCountryDetector.java 79 location.getLatitude(), location.getLongitude(), 1);
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
PicasaSource.java 112 public static double getLongitude(MediaObject image) {
  /frameworks/base/services/java/com/android/server/
TwilightService.java 475 mLocation.getLatitude(), mLocation.getLongitude());
480 mLocation.getLatitude(), mLocation.getLongitude());
487 mLocation.getLatitude(), mLocation.getLongitude());
  /cts/tests/tests/location2/src/android/location2/cts/
LocationManagerTest.java 146 assertEquals(LNG, location.getLongitude(), FUDGER_DELTA);
168 assertEquals(LNG, location.getLongitude(), FUDGER_DELTA);
  /frameworks/base/docs/html/training/location/
display-address.jd 156 loc.getLongitude(), 1);
167 Double.toString(loc.getLongitude()) +
  /external/webkit/Source/WebKit/android/jni/
GeolocationServiceBridge.cpp 214 env->GetMethodID(javaLocationClass, "getLongitude", "()D");
  /frameworks/base/docs/html/training/tv/
unsupported-features-tv.jd 113 address = geocoder.getFromLocation(location.getLatitude(), location.getLongitude(), 1).get(0);
  /frameworks/base/location/java/android/location/
Geofence.java 71 public double getLongitude() {

Completed in 1178 milliseconds

1 2 3