HomeSort by relevance Sort by last modified time
    Searched refs:getLongitude (Results 1 - 25 of 46) sorted by null

1 2

  /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());
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
LocationPoint.java 33 public final double getLongitude() {
WayPointLabelProvider.java 42 return String.format("%.6f", wayPoint.getLongitude());
  /development/tools/emulator/test-apps/GpsLocationTest/src/com/android/emulator/gps/test/
GpsLocationTest.java 70 assertEquals(new Float(LONGITUDE), new Float(mLocation.getLongitude()));
  /frameworks/base/telephony/java/android/telephony/
CdmaCellIdentity.java 116 public int getLongitude() {
  /frameworks/base/tests/LocationTracker/src/com/android/locationtracker/data/
KMLFormatter.java 60 builder.addLine(loc.getLongitude() + "," + loc.getLatitude() + ","
CSVFormatter.java 58 rowOutput.append(entry.getLocation().getLongitude());
TrackerEntry.java 176 cValues.put(LONGITUDE, mLocation.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);
LocationManagerTest.java 321 assertEquals(longitude1, location.getLongitude());
372 assertEquals(longitude1, location.getLongitude());
419 assertEquals(longitude1, location.getLongitude());
508 assertEquals(longitude1, location.getLongitude());
518 assertEquals(longitude2, location.getLongitude());
AddressTest.java 137 assertEquals(longitude, address.getLongitude());
142 address.getLongitude();
  /packages/apps/Gallery2/src_pd/com/android/gallery3d/picasasource/
PicasaSource.java 113 public static double getLongitude(MediaObject image) {
  /packages/apps/Camera/src/com/android/camera/
Storage.java 82 values.put(ImageColumns.LONGITUDE, location.getLongitude());
172 values.put(ImageColumns.LONGITUDE, location.getLongitude());
LocationManager.java 135 && newLocation.getLongitude() == 0.0) {
  /frameworks/base/services/java/com/android/server/location/
LocationBasedCountryDetector.java 79 location.getLatitude(), location.getLongitude(), 1);
  /packages/apps/LegacyCamera/src/com/android/camera/
LocationManager.java 135 && newLocation.getLongitude() == 0.0) {
Storage.java 84 values.put(ImageColumns.LONGITUDE, location.getLongitude());
  /development/samples/training/location-aware/src/com/example/android/location/
LocationActivity.java 250 location.getLatitude() + ", " + location.getLongitude()).sendToTarget();
354 addresses = geocoder.getFromLocation(loc.getLatitude(), loc.getLongitude(), 1);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 143 return mLocation.getLongitude() / 15.0;
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
EmulatorControlPanel.java 716 wayPoint.getLongitude(), wayPoint.getLatitude(),
765 points[0].getLongitude(), points[0].getLatitude(),
    [all...]
  /frameworks/base/location/java/android/location/
Address.java 338 public double getLongitude() {

Completed in 450 milliseconds

1 2