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

1 2 3 4

  /external/chromium_org/chrome/test/chromedriver/chrome/
geoposition.h 10 double longitude; member in struct:Geoposition
geolocation_override_manager_unittest.cc 59 double latitude, longitude, accuracy; local
61 ASSERT_TRUE(command.params.GetDouble("longitude", &longitude));
64 ASSERT_EQ(geoposition.longitude, longitude);
  /external/chromium_org/content/public/common/
geoposition.h 34 // A valid fix has a valid latitude, longitude, accuracy and timestamp.
41 // Longitude in decimal degrees west (WGS84 coordinate frame).
42 double longitude; member in struct:content::Geoposition
  /external/chromium_org/third_party/WebKit/Source/modules/geolocation/
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
53 Coordinates(double latitude, double longitude, bool providesAltitude, double altitude, double accuracy, bool providesAltitudeAccuracy, double altitudeAccuracy, bool providesHeading, double heading, bool providesSpeed, double speed)
55 , m_longitude(longitude)
GeolocationPosition.h 37 static PassRefPtr<GeolocationPosition> create(double timestamp, double latitude, double longitude, double accuracy) { return adoptRef(new GeolocationPosition(timestamp, latitude, longitude, accuracy)); }
39 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)); }
44 double longitude() const { return m_longitude; } function in class:WebCore::GeolocationPosition
57 GeolocationPosition(double timestamp, double latitude, double longitude, double accuracy)
60 , m_longitude(longitude)
73 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)
76 , m_longitude(longitude)
  /external/chromium_org/third_party/WebKit/Source/web/
WebGeolocationClientMock.cpp 55 void WebGeolocationClientMock::setPosition(double latitude, double longitude, double accuracy)
57 WebGeolocationPosition webPosition(currentTime(), latitude, longitude, accuracy, local
  /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...]
  /frameworks/av/libvideoeditor/vss/inc/
M4EXIFC_CommonAPI.h 94 M4OSA_Char *longitudeRef; /**< longitude reference */
95 M4COMMON_Location longitude; /**< longitude */ member in struct:__anon31066
  /external/chromium_org/third_party/icu/source/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/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/chromium_org/content/browser/geolocation/
network_location_request.cc 372 // latitude and longitude fields are always required.
373 double latitude, longitude; local
375 !GetAsDouble(*location_object, kLongitudeString, &longitude)) {
381 position->longitude = longitude;
  /external/chromium_org/third_party/icu/source/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/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/Camera2/src/com/android/camera/data/
RotationTask.java 130 double longitude = 0; local
133 longitude = latLong[1];
139 imageData.getHeight(), data.getSizeInBytes(), latitude, longitude);
  /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/
MediaMuxerTest.java 42 private static final float LONGITUDE = -180.0f;
200 muxer.setLocation(BAD_LATITUDE, LONGITUDE);
201 fail("setLocation succeeded with bad argument: [" + BAD_LATITUDE + "," + LONGITUDE
214 muxer.setLocation(LATITUDE, LONGITUDE);
384 float longitude = Float.parseFloat(location.substring(index)); local
387 assertTrue("Incorrect longitude: " + longitude,
388 Math.abs(longitude - LONGITUDE) <= TOLERANCE);
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);

Completed in 1382 milliseconds

1 2 3 4