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

1 2 3

  /external/webkit/Source/WebKit2/Shared/
WebGeolocationPosition.h 46 double longitude; 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));
59 double longitude() const { return m_data.longitude; } function in class:WebKit::WebGeolocationPosition
65 WebGeolocationPosition(double timestamp, double latitude, double longitude, double accuracy);
  /external/smack/src/org/xbill/DNS/
GPOSRecord.java 17 private byte [] latitude, longitude, altitude; field in class:GPOSRecord
27 validate(double longitude, double latitude) throws IllegalArgumentException
29 if (longitude < -90.0 || longitude > 90.0) {
30 throw new IllegalArgumentException("illegal longitude " +
31 longitude);
41 * @param longitude The longitude component of the location.
47 GPOSRecord(Name name, int dclass, long ttl, double longitude, double latitude,
51 validate(longitude, latitude)
    [all...]
LOCRecord.java 21 private long latitude, longitude, altitude; field in class:LOCRecord
41 * @param longitude The longitude of the center of the sphere
48 LOCRecord(Name name, int dclass, long ttl, double latitude, double longitude,
53 this.longitude = (long)(longitude * 3600 * 1000 + (1L << 31));
72 longitude = in.readU32();
163 longitude = parsePosition(st, "longitude");
224 sb.append(positionToString(longitude, 'E', 'W'))
    [all...]
  /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)); }
45 double longitude() const { return m_longitude; } 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)
60 , m_longitude(longitude)
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)); }
46 double longitude() const { return m_longitude; } function in class:WebCore::GeolocationPosition
59 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
62 , m_longitude(longitude)
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)
78 , m_longitude(longitude)
  /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 70 double longitude = coord.longitude(); local
87 m_lastPosition = GeolocationPosition::create(timeStampInSeconds, latitude, longitude,
  /frameworks/av/libvideoeditor/vss/inc/
M4EXIFC_CommonAPI.h 94 M4OSA_Char *longitudeRef; /**< longitude reference */
95 M4COMMON_Location longitude; /**< longitude */ member in struct:__anon18903
  /external/icu4c/i18n/
astro.h 64 * The longitude specifies the position along the ecliptic plane
82 * @param lon The ecliptic longitude, measured in radians.
87 longitude = lon;
93 * @param lon The ecliptic longitude, measured in radians.
98 longitude = lon;
116 * The ecliptic longitude, in radians.
126 double longitude; member in class:CalendarAstronomer::Ecliptic
272 * it takes for the moon to return the same ecliptic longitude as the sun.
273 * It is longer than the sidereal month because the sun's longitude increases
303 * latitude and longitude. The object's time is set to the curren
    [all...]
  /external/robolectric/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...]
  /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});
  /external/icu4c/test/intltest/
astrotst.cpp 96 double longitude = astro->getSunLongitude(); local
97 //longitude = 0;
100 logln((UnicodeString)"Sun position is " + result.toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude );
157 //Longitude: 118 degrees 22' West
  /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/ml/bordeaux/service/src/android/bordeaux/services/
BaseCluster.java 52 public BaseCluster(String semanticId, double longitude, double latitude,
55 mCenter = getLocationVector(longitude, latitude);
79 protected double[] getLocationVector(double longitude, double latitude) {
81 double lambda = Math.toRadians(longitude);
93 double longitude = Math.toDegrees(Math.asin(mCenter[1] / cosPhi)); local
95 longitude = (longitude > 0) ? 180f - longitude : -180 - longitude;
97 return longitude;
    [all...]
ClusterManager.java 78 private static final String SEMANTIC_LONGITUDE = "Longitude";
265 double longitude = Double.valueOf(map.get(SEMANTIC_LONGITUDE)); local
269 new BaseCluster(semanticId, longitude, latitude, duration);
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 63 ImageColumns.LONGITUDE,
140 double longitude = PicasaSource.getLongitude(image); local
141 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude);
159 } else if (ImageColumns.LONGITUDE.equals(column)) {
160 columnValues[i] = isValidLatlong ? longitude : null;
  /cts/tests/tests/location/src/android/location/cts/
AddressTest.java 134 double longitude = 1.23456789; local
135 address.setLongitude(longitude);
137 assertEquals(longitude, address.getLongitude());
211 "longitude=0.0,phone=null,url=www.google.com,extras=null]";
  /cts/tests/tests/media/src/android/media/cts/
MediaRecorderTest.java 62 private static final float LONGITUDE = -180.0f;
216 mMediaRecorder.setLocation(LATITUDE, LONGITUDE);
275 float longitude = Float.parseFloat(location.substring(index)); local
277 assertTrue("Incorrect longitude: " + longitude, Math.abs(longitude - LONGITUDE) <= TOLERANCE);
  /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/services/jni/
com_android_server_location_GpsLocationProvider.cpp 82 (jdouble)location->latitude, (jdouble)location->longitude,
249 location->flags, (jdouble)location->latitude, (jdouble)location->longitude,
262 jdouble longitude = 0; local
271 longitude = location->longitude;
280 flags, latitude, longitude, altitude, speed, bearing, accuracy, timestamp);
565 jdouble latitude, jdouble longitude, jfloat accuracy)
568 sGpsInterface->inject_location(latitude, longitude, accuracy);
691 jint geofence_id, jdouble latitude, jdouble longitude, jdouble radius,
695 sGpsGeofencingInterface->add_geofence_area(geofence_id, latitude, longitude,
    [all...]
  /frameworks/native/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/libhardware/include/hardware/
gps.h 80 /** GpsLocation has valid latitude and longitude. */
247 /** Represents longitude in degrees. */
248 double longitude; member in struct:__anon20672
416 * latitude and longitude are measured in degrees
419 int (*inject_location)(double latitude, double longitude, float accuracy);
904 double longitude, double radius_meters,
  /hardware/ti/omap4xxx/test/CameraHal/
camera_test_menu.cpp 44 double longitude = 0.0; variable
1210 printf(" d. Longitude: %.7lf\n", longitude);
1241 longitude += degree_by_step;
1243 if (longitude > 180.0) {
1244 longitude -= 360.0;
1247 snprintf(coord_str, 7, "%.7lf", longitude);
    [all...]
  /device/lge/mako/camera/QCamera/HAL/core/inc/
QCameraHWI.h 213 rat_t longitude[3]; member in struct:__anon1600

Completed in 802 milliseconds

1 2 3