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

1 2 3 4 5 6 7 8 910

  /developers/build/prebuilts/gradle/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /developers/samples/android/wearable/wear/SpeedTracker/Shared/src/main/java/com/example/android/wearable/speedtracker/common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /development/samples/browseable/SpeedTracker/Shared/src/com.example.android.wearable.speedtracker.common/
LocationEntry.java 28 public double longitude; field in class:LocationEntry
32 public LocationEntry(Calendar calendar, double latitude, double longitude) {
35 this.longitude = longitude;
  /external/opencv3/3rdparty/openexr/IlmImf/
ImfEnvmap.cpp 62 float longitude = (dir.z == 0 && dir.x == 0)? 0: atan2 (dir.x, dir.z); local
64 return V2f (latitude, longitude);
71 float latitude, longitude; local
86 longitude = -2 * M_PI *
92 longitude = 0;
95 return V2f (latitude, longitude);
  /packages/apps/Camera2/src/com/android/camera/data/
VideoDataFactory.java 69 double longitude = c.getDouble(VideoDataQuery.COL_LONGITUDE); local
71 Location location = Location.from(latitude, longitude);
PhotoDataFactory.java 67 double longitude = c.getDouble(PhotoDataQuery.COL_LONGITUDE); local
68 Location location = Location.from(latitude, longitude);
  /developers/build/prebuilts/gradle/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
UpdateService.java 82 double longitude = dataMap.getDouble(Constants.KEY_LONGITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /developers/samples/android/wearable/wear/SpeedTracker/Application/src/main/java/com/example/android/wearable/speedtracker/db/
UpdateService.java 82 double longitude = dataMap.getDouble(Constants.KEY_LONGITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /development/samples/browseable/SpeedTracker/Application/src/com.example.android.wearable.speedtracker/db/
UpdateService.java 82 double longitude = dataMap.getDouble(Constants.KEY_LONGITUDE); local
88 new LocationEntry(calendar, latitude, longitude));
  /external/icu/icu4c/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/robolectric/v1/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;
  /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/icu/icu4c/source/test/intltest/
astrotst.cpp 94 double longitude = astro->getSunLongitude(); local
95 //longitude = 0;
98 logln((UnicodeString)"Sun position is " + result.toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude );
155 //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);
  /external/piex/src/
piex_types.h 72 Rational longitude[3]; member in struct:piex::PreviewImageData::Gps
  /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...]
  /frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
GEOLocationElement.java 18 * RFC-3825 defines a resolution field for each of latitude, longitude and altitude as "the number
128 double longitude = local
132 new RealValue(longitude, bitsToAbsResolution(rawLonRes, LL_WIDTH,
134 new RealValue(longitude);
  /hardware/qcom/gps/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 297 double longitude = location.gpsLocation.longitude; local
313 if (longitude < 0)
316 longitude *= -1.0;
324 lonMinutes = fmod(longitude * 60.0 , 60.0);
328 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
450 double longitude = location.gpsLocation.longitude; local
466 if (longitude < 0)
469 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 294 double longitude = location.gpsLocation.longitude; local
310 if (longitude < 0)
313 longitude *= -1.0;
321 lonMinutes = fmod(longitude * 60.0 , 60.0);
325 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
447 double longitude = location.gpsLocation.longitude; local
463 if (longitude < 0)
466 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 297 double longitude = location.gpsLocation.longitude; local
313 if (longitude < 0)
316 longitude *= -1.0;
324 lonMinutes = fmod(longitude * 60.0 , 60.0);
328 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
450 double longitude = location.gpsLocation.longitude; local
466 if (longitude < 0)
469 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 290 double longitude = location.gpsLocation.longitude; local
306 if (longitude < 0)
309 longitude *= -1.0;
317 lonMinutes = fmod(longitude * 60.0 , 60.0);
321 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
443 double longitude = location.gpsLocation.longitude; local
459 if (longitude < 0)
462 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 298 double longitude = location.gpsLocation.longitude; local
314 if (longitude < 0)
317 longitude *= -1.0;
325 lonMinutes = fmod(longitude * 60.0 , 60.0);
329 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
451 double longitude = location.gpsLocation.longitude; local
467 if (longitude < 0)
470 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msm8996/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 298 double longitude = location.gpsLocation.longitude; local
314 if (longitude < 0)
317 longitude *= -1.0;
325 lonMinutes = fmod(longitude * 60.0 , 60.0);
329 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
451 double longitude = location.gpsLocation.longitude; local
467 if (longitude < 0)
470 longitude *= -1.0
    [all...]
  /hardware/qcom/gps/msmcobalt/loc_api/libloc_api_50001/
loc_eng_nmea.cpp 619 double longitude = location.gpsLocation.longitude; local
635 if (longitude < 0)
638 longitude *= -1.0;
646 lonMinutes = fmod(longitude * 60.0 , 60.0);
650 (uint8_t)floor(longitude),lonMinutes, lonHemisphere);
772 double longitude = location.gpsLocation.longitude; local
788 if (longitude < 0)
791 longitude *= -1.0
    [all...]
  /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;

Completed in 1678 milliseconds

1 2 3 4 5 6 7 8 910