HomeSort by relevance Sort by last modified time
    Searched defs:latitude (Results 1 - 25 of 37) sorted by null

1 2

  /external/webkit/Source/WebKit2/Shared/
WebGeolocationPosition.h 45 double latitude; member in struct:WebKit::WebGeolocationPosition::Data
50 static PassRefPtr<WebGeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy)
52 return adoptRef(new WebGeolocationPosition(timestamp, latitude, longitude, accuracy));
58 double latitude() const { return m_data.latitude; } function in class:WebKit::WebGeolocationPosition
65 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy);
  /external/webkit/Source/WebCore/page/
Coordinates.h 37 static PassRefPtr<Coordinates> create(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new Coordinates(latitude, longitude, providesAltitude, altitude, accuracy, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); }
44 double latitude() const { return m_latitude; } function in class:WebCore::Coordinates
58 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
59 : m_latitude(latitude)
GeolocationPosition.h 39 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); }
41 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy, providesAltitude, altitude, providesAltitudeAccuracy, altitudeAccuracy, providesHeading, heading, providesSpeed, speed)); }
45 double latitude() const { return m_latitude; } function in class:WebCore::GeolocationPosition
59 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
61 , m_latitude(latitude)
75 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy, bool providesAltitude, double altitude, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
77 , m_latitude(latitude)
  /external/webkit/Source/WebKit/chromium/src/
WebGeolocationClientMock.cpp 54 void WebGeolocationClientMock::setPosition(double latitude, double longitude, double accuracy)
56 WebGeolocationPosition webPosition(currentTime(), latitude, longitude, accuracy, local
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.cpp 69 double latitude = coord.latitude(); local
87 m_lastPosition = GeolocationPosition::create(timeStampInSeconds, latitude, longitude,
  /frameworks/media/libvideoeditor/vss/inc/
M4EXIFC_CommonAPI.h 92 M4OSA_Char *latitudeRef; /**< latitude reference */
93 M4COMMON_Location latitude; /**< latitude */ member in struct:__anon15971
  /external/icu4c/i18n/
astro.h 62 * This is a spherical coordinate system in which the latitude
81 * @param lat The ecliptic latitude, measured in radians.
86 latitude = lat;
92 * @param lat The ecliptic latitude, measured in radians.
97 latitude = lat;
108 * The ecliptic latitude, in radians. This specifies an object's
113 double latitude; member in class:CalendarAstronomer::Ecliptic
303 * latitude and longitude. The object's time is set to the current
309 * @param latitude The desired latitude, in <em>degrees</em>. Positiv
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalMediaItem.java 40 public double latitude = INVALID_LATLNG; field in class:LocalMediaItem
64 latLong[0] = latitude;
88 if (GalleryUtils.isValidLocation(latitude, longitude)) {
89 details.addDetail(MediaDetails.INDEX_LOCATION, new double[] {latitude, longitude});
  /development/samples/GlobalTime/src/com/android/globaltime/
City.java 42 private float latitude, longitude; field in class:City
62 // float latitude = dis.readFloat();
81 float latitude = Float.intBitsToFloat(ilat); local
88 latitude, longitude, cx, cy, cz);
168 * latitude, longitude, and 3D (X, Y, Z) coordinate.
172 float latitude, float longitude,
177 this.latitude = latitude;
200 return latitude;
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
SaveCopyTask.java 58 ImageColumns.LATITUDE,
117 double latitude = 0f; local
126 latitude = cursor.getDouble(INDEX_LATITUDE);
149 if ((latitude != 0f) || (longitude != 0f)) {
150 values.put(Images.Media.LATITUDE, latitude);
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 56 ImageColumns.LATITUDE,
167 double latitude = PicasaSource.getLatitude(image); local
169 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude);
181 } else if (ImageColumns.LATITUDE.equals(column)) {
182 columnValues[i] = isValidLatlong ? latitude : null;
  /packages/wallpapers/Basic/src/com/android/wallpaper/grass/
SunCalculator.java 229 final double latitude = Math.toRadians(mLocation.getLatitude()); local
232 double sinLatitude = Math.sin(latitude);
233 double cosLatitude = Math.cos(latitude);
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
KmlParser.java 142 double latitude = Double.parseDouble(m.group(2)); local
144 locationNode.setLocation(longitude, latitude);
GpxParser.java 237 double latitude = Double.parseDouble(attributes.getValue(ATTR_LATITUDE)); local
239 locationNode.setLocation(longitude, latitude);
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 230 double latitude = 1.23456789; local
231 address.setLatitude(latitude);
233 assertEquals(latitude, address.getLatitude());
428 "countryName=null,hasLatitude=false,latitude=0.0,hasLongitude=false," +
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 51 private static final float LATITUDE = 0.0000f;
207 mMediaRecorder.setLocation(LATITUDE, LONGITUDE);
241 float latitude = Float.parseFloat(location.substring(0, index - 1)); local
243 assertTrue("Incorrect latitude: " + latitude, Math.abs(latitude - LATITUDE) <= TOLERANCE);
  /development/ndk/platforms/android-4/samples/san-angeles/jni/
demo.c 200 // latitude 0 to pi/2 for no mirrored bottom
210 int a, longitude, latitude; local
227 // latitude 0 to pi/2
228 for (latitude = latitudeBegin; latitude < latitudeEnd; ++latitude)
232 float p1 = -PI / 2 + latitude * 2 * PI / resol2;
233 float p2 = -PI / 2 + (latitude + 1) * 2 * PI / resol2;
255 if (latitude == latitudeBegin + 1)
335 } // latitude
    [all...]
  /frameworks/base/opengl/tests/angeles/
demo.c 200 // latitude 0 to pi/2 for no mirrored bottom
210 int a, longitude, latitude; local
227 // latitude 0 to pi/2
228 for (latitude = latitudeBegin; latitude < latitudeEnd; ++latitude)
232 float p1 = -PI / 2 + latitude * 2 * PI / resol2;
233 float p2 = -PI / 2 + (latitude + 1) * 2 * PI / resol2;
255 if (latitude == latitudeBegin + 1)
335 } // latitude
    [all...]
  /hardware/libhardware/include/hardware/
gps.h 80 /** GpsLocation has valid latitude and longitude. */
237 /** Represents latitude in degrees. */
238 double latitude; member in struct:__anon16206
408 * latitude and longitude are measured in degrees
411 int (*inject_location)(double latitude, double longitude, float accuracy);
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 46 double latitude = 0.0; variable
1207 printf(" e. Latitude: %.7lf\n", latitude);
1224 latitude += degree_by_step;
1226 if (latitude > 90.0) {
1227 latitude -= 180.0;
1230 snprintf(coord_str, 7, "%.7lf", latitude);
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
CropImage.java 391 double latitude = PicasaSource.getLatitude(mMediaItem); local
393 if (GalleryUtils.isValidLocation(latitude, longitude)) {
394 values.put(Images.Media.LATITUDE, latitude);
430 if (GalleryUtils.isValidLocation(localImage.latitude, localImage.longitude)) {
431 values.put(Images.Media.LATITUDE, localImage.latitude);
    [all...]
  /frameworks/base/services/java/com/android/server/
LocationManagerService.java 1437 double latitude = loc.getLatitude(); local
    [all...]
  /hardware/msm7k/libcamera/
camera_ifc.h 400 double latitude; /* degrees, WGS ellipsoid */ member in struct:__anon16263
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-1240/
loc_api_common.h 96 double latitude; member in struct:rpc_loc_parsed_position_s_type
737 double latitude; member in struct:rpc_loc_assist_data_pos_s_type
    [all...]
  /hardware/qcom/gps/loc_api/libloc_api-rpc/inc-3200/
loc_api_common.h 90 double latitude; member in struct:rpc_loc_parsed_position_s_type
710 double latitude; member in struct:rpc_loc_assist_data_pos_s_type
    [all...]

Completed in 1306 milliseconds

1 2