HomeSort by relevance Sort by last modified time
    Searched refs:longitude (Results 51 - 75 of 108) sorted by null

1 23 4 5

  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
maximum-age.js 17 shouldBe('position.coords.longitude', 'mockLongitude');
  /hardware/libhardware/include/hardware/
gps.h 80 /** GpsLocation has valid latitude and longitude. */
239 /** Represents longitude in degrees. */
240 double longitude; member in struct:__anon16209
408 * latitude and longitude are measured in degrees
411 int (*inject_location)(double latitude, double longitude, float accuracy);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
GpxParser.java 236 double longitude = Double.parseDouble(attributes.getValue(ATTR_LONGITUDE)); local
239 locationNode.setLocation(longitude, latitude);
  /external/chromium/chrome/browser/geolocation/
geolocation_browsertest.cc 286 Geoposition GeopositionFromLatLong(double latitude, double longitude) {
289 geoposition.longitude = longitude;
304 CheckStringValueFromJavascript(base::DoubleToString(geoposition.longitude),
607 final_position.latitude, final_position.longitude);
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 52 private static final float LONGITUDE = -180.0f;
207 mMediaRecorder.setLocation(LATITUDE, LONGITUDE);
242 float longitude = Float.parseFloat(location.substring(index)); local
244 assertTrue("Incorrect longitude: " + longitude, Math.abs(longitude - LONGITUDE) <= TOLERANCE);
  /external/webkit/Source/WebCore/page/
GeolocationPositionCache.cpp 152 "longitude REAL NOT NULL, "
173 statement.getColumnDouble(1), // longitude
221 "longitude, "
233 statement.bindDouble(2, cachedPosition->coords()->longitude());
  /frameworks/base/location/java/android/location/
Address.java 325 * Returns true if a longitude has been assigned to this Address,
333 * Returns the longitude of the address if known.
336 * a longitude.
347 * Sets the longitude associated with this address.
349 public void setLongitude(double longitude) {
350 mLongitude = longitude;
355 * Removes any longitude associated with this address.
463 sb.append(",longitude=");
LocationManager.java     [all...]
Location.java 29 * time (a "fix"). A location consists of a latitude and longitude, a
40 * Constant used to specify formatting of a latitude or longitude
46 * Constant used to specify formatting of a latitude or longitude
53 * Constant used to specify formatting of a latitude or longitude
97 * longitude, and numSatellites are 0; hasAltitude, hasSpeed, and
384 * @param startLongitude the starting longitude
386 * @param endLongitude the ending longitude
500 * Returns the longitude of this fix.
507 * Sets the longitude of this fix.
509 public void setLongitude(double longitude) {
    [all...]
  /cts/tests/tests/location/src/android/location/cts/
LocationManagerTest.java 845 private void registerProximityListener(double latitude, double longitude, float radius,
848 mManager.addProximityAlert(latitude, longitude, radius, expiration, mPendingIntent);
    [all...]
AddressTest.java 274 double longitude = 1.23456789; local
275 address.setLongitude(longitude);
277 assertEquals(longitude, address.getLongitude());
429 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 210 int a, longitude, latitude; local
223 // longitude -pi to pi
224 for (longitude = 0; longitude < longitudeCount; ++longitude)
230 float t1 = -PI + longitude * 2 * PI / resol1;
231 float t2 = -PI + (longitude + 1) * 2 * PI / resol1;
336 } // longitude
  /frameworks/base/opengl/tests/angeles/
demo.c 210 int a, longitude, latitude; local
223 // longitude -pi to pi
224 for (longitude = 0; longitude < longitudeCount; ++longitude)
230 float t1 = -PI + longitude * 2 * PI / resol1;
231 float t2 = -PI + (longitude + 1) * 2 * PI / resol1;
336 } // longitude
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 47 double longitude = 0.0; variable
1208 printf(" d. Longitude: %.7lf\n", longitude);
1239 longitude += degree_by_step;
1241 if (longitude > 180.0) {
1242 longitude -= 360.0;
1245 snprintf(coord_str, 7, "%.7lf", longitude);
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 1438 double longitude = loc.getLongitude(); local
    [all...]
  /development/tools/emulator/system/gps/
gps_qemu.c 329 Token longitude,
344 tok = longitude;
346 D("longitude is too short: '%.*s'", tok.end-tok.p, tok.p);
355 r->fix.longitude = lon;
500 p += snprintf(p, end-p, " lat=%g lon=%g", r->fix.latitude, r->fix.longitude);
871 qemu_gps_inject_location(double latitude, double longitude, float accuracy)
  /sdk/emulator/gps/
gps_qemu.c 329 Token longitude,
344 tok = longitude;
346 D("longitude is too short: '%.*s'", tok.end-tok.p, tok.p);
355 r->fix.longitude = lon;
500 p += snprintf(p, end-p, " lat=%g lon=%g", r->fix.latitude, r->fix.longitude);
871 qemu_gps_inject_location(double latitude, double longitude, float accuracy)
  /frameworks/base/services/jni/
com_android_server_location_GpsLocationProvider.cpp 75 (jdouble)location->latitude, (jdouble)location->longitude,
451 jdouble latitude, jdouble longitude, jfloat accuracy)
454 sGpsInterface->inject_location(latitude, longitude, accuracy);
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/
CallbackProxy.java 498 double longitude,
501 longitude,
  /packages/apps/Gallery2/tests/src/com/android/gallery3d/data/
LocalDataTest.java 123 assertEquals(34.0, item.longitude);
243 "longitude DOUBLE," +
258 db.execSQL("INSERT INTO images (title, mime_type, latitude, longitude, "
301 assertEquals(22.0, item.longitude);
367 "longitude DOUBLE," +
381 db.execSQL("INSERT INTO video (title, mime_type, latitude, longitude, "
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
EmulatorConsole.java 531 public synchronized String sendLocation(double longitude, double latitude, double elevation) {
535 formatter.format(COMMAND_GPS, longitude, latitude, elevation);
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
DumpRenderTreeSupportQt.h 148 static void setMockGeolocationPosition(QWebPage*, double latitude, double longitude, double accuracy);
  /external/webkit/Tools/DumpRenderTree/qt/
LayoutTestControllerQt.h 222 void setMockGeolocationPosition(double latitude, double longitude, double accuracy);
  /external/webkit/Tools/DumpRenderTree/wx/
LayoutTestControllerWx.cpp 326 void LayoutTestController::setMockGeolocationPosition(double latitude, double longitude, double accuracy)
  /hardware/msm7k/libcamera/
camera_ifc.h 401 double longitude; /* degrees */ member in struct:__anon16266

Completed in 1260 milliseconds

1 23 4 5