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

12 3 4 5

  /development/samples/GlobalTime/src/com/android/globaltime/
City.java 42 private float latitude, longitude; field in class:City
63 // float longitude = dis.readFloat();
82 float longitude = Float.intBitsToFloat(ilon); local
88 latitude, longitude, cx, cy, cz);
168 * latitude, longitude, and 3D (X, Y, Z) coordinate.
172 float latitude, float longitude,
178 this.longitude = longitude;
196 return longitude;
  /external/webkit/Source/WebKit/qt/WebCoreSupport/
GeolocationClientQt.cpp 70 double longitude = coord.longitude(); local
87 m_lastPosition = GeolocationPosition::create(timeStampInSeconds, latitude, longitude,
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
reentrant-success.js 26 shouldBe('position.coords.longitude', 'mockLongitude');
44 shouldBe('position.coords.longitude', 'mockLongitude');
success.js 19 shouldBe('position.coords.longitude', 'mockLongitude');
timeout.js 19 shouldBe('position.coords.longitude', 'mockLongitude');
multiple-requests.js 40 shouldBe('position.coords.longitude', 'mockLongitude');
position-string.js 20 shouldBe('position.coords.longitude', 'mockLongitude');
callback-exception.js 19 shouldBe('position.coords.longitude', 'mockLongitude');
watch.js 16 shouldBe('position.coords.longitude', 'mockLongitude');
  /external/webkit/Source/WebCore/platform/gtk/
GeolocationServiceGtk.cpp 177 double longitude,
188 position_changed(position, fields, timestamp, latitude, longitude, altitude, accuracy, that);
191 void GeolocationServiceGtk::position_changed(GeocluePosition*, GeocluePositionFields fields, int timestamp, double latitude, double longitude, double altitude, GeoclueAccuracy* accuracy, GeolocationServiceGtk* that)
200 that->m_longitude = longitude;
  /frameworks/media/libvideoeditor/vss/inc/
M4EXIFC_CommonAPI.h 94 M4OSA_Char *longitudeRef; /**< longitude reference */
95 M4COMMON_Location longitude; /**< longitude */ member in struct:__anon15974
  /packages/apps/Gallery2/src/com/android/gallery3d/photoeditor/
SaveCopyTask.java 59 ImageColumns.LONGITUDE,
118 double longitude = 0f; local
127 longitude = cursor.getDouble(INDEX_LONGITUDE);
149 if ((latitude != 0f) || (longitude != 0f)) {
151 values.put(Images.Media.LONGITUDE, longitude);
  /frameworks/base/services/java/com/android/server/
TwilightCalculator.java 69 * @param longitude latitude in degrees.
71 public void calculateTwilight(long time, double latiude, double longitude) {
81 // ecliptic longitude
85 final double arcLongitude = -longitude / 360;
  /external/webkit/Source/WebCore/platform/android/
GeolocationServiceAndroid.cpp 179 // differences in latitude and longitude.
181 + fabs(position1->coords()->longitude() - position2->coords()->longitude());
  /frameworks/base/services/java/com/android/server/location/
GeocoderProxy.java 92 public String getFromLocation(double latitude, double longitude, int maxResults,
100 return provider.getFromLocation(latitude, longitude, maxResults,
  /frameworks/base/location/java/android/location/
ILocationManager.aidl 56 void addProximityAlert(double latitude, double longitude, float distance,
71 String getFromLocation(double latitude, double longitude, int maxResults,
  /packages/apps/Gallery2/src/com/android/gallery3d/util/
GalleryUtils.java 208 public static boolean isValidLocation(double latitude, double longitude) {
210 return (latitude != MediaItem.INVALID_LATLNG || longitude != MediaItem.INVALID_LATLNG);
214 double longitude) {
217 return String.format(Locale.ENGLISH, format, latitude, longitude);
220 public static void showOnMap(Context context, double latitude, double longitude) {
222 // We don't use "geo:latitude,longitude" because it only centers
227 latitude, longitude);
236 String url = formatLatitudeLongitude("geo:%f,%f", latitude, longitude);
ReverseGeocoder.java 57 // The latitude and longitude of the min latitude point.
60 // The latitude and longitude of the max latitude point.
63 // The latitude and longitude of the min longitude point.
66 // The latitude and longitude of the max longitude point.
304 public Address lookupAddress(final double latitude, final double longitude,
308 + (longitude + LON_MAX)) * EARTH_RADIUS_METERS);
319 List<Address> addresses = mGeocoder.getFromLocation(latitude, longitude, 1);
371 return lookupAddress(latitude, longitude, false)
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/location/
KmlParser.java 141 double longitude = Double.parseDouble(m.group(1)); local
144 locationNode.setLocation(longitude, latitude);
  /external/webkit/Source/WebKit2/WebProcess/Geolocation/
WebGeolocationManager.cpp 84 RefPtr<GeolocationPosition> position = GeolocationPosition::create(data.timestamp, data.latitude, data.longitude, data.accuracy);
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
LocalImage.java 69 ImageColumns.LONGITUDE, // 4
119 longitude = cursor.getDouble(INDEX_LONGITUDE);
136 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE));
237 if (GalleryUtils.isValidLocation(latitude, longitude)) {
LocalVideo.java 65 VideoColumns.LONGITUDE,
111 longitude = cursor.getDouble(INDEX_LONGITUDE);
126 longitude = uh.update(longitude, cursor.getDouble(INDEX_LONGITUDE));
  /frameworks/base/media/java/android/media/
MediaRecorder.java 365 * Set and store the geodata (latitude and longitude) in the output file.
373 * @param longitude longitude in degrees. Its value must be in the
377 * longitude is out of range.
380 public void setLocation(float latitude, float longitude) {
382 int longitudex10000 = (int) (longitude * 10000 + 0.5);
389 String msg = "Longitude: " + longitude + " out of range";
394 setParameter("param-geotag-longitude=" + longitudex10000);
    [all...]
  /external/icu4c/i18n/
astro.cpp 95 * it takes for the moon to return the same ecliptic longitude as the sun.
96 * It is longer than the sidereal month because the sun's longitude increases
108 * for the moon to return to the same ecliptic longitude relative to the
260 * latitude and longitude. The object's time is set to the current
263 * @param longitude The desired longitude, in <em>degrees</em> east of
273 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) :
275 fLongitude = normPI(longitude * (double)DEG_RAD);
447 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
453 * @param eclipLong The ecliptic longitude
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/provider/
GalleryProvider.java 57 ImageColumns.LONGITUDE,
168 double longitude = PicasaSource.getLongitude(image); local
169 boolean isValidLatlong = GalleryUtils.isValidLocation(latitude, longitude);
183 } else if (ImageColumns.LONGITUDE.equals(column)) {
184 columnValues[i] = isValidLatlong ? longitude : null;

Completed in 654 milliseconds

12 3 4 5