/external/chromium-trace/catapult/telemetry/third_party/webpagereplay/third_party/dns/rdtypes/ANY/ |
D | LOC.py | 100 def __init__(self, rdclass, rdtype, latitude, longitude, altitude, argument 115 if isinstance(longitude, int) or isinstance(longitude, long): 116 longitude = float(longitude) 117 if isinstance(longitude, float): 118 longitude = _float_to_tuple(longitude) 119 self.longitude = longitude 132 if self.longitude[0] > 0: 134 long_degrees = self.longitude[0] 137 long_degrees = -1 * self.longitude[0] 140 lat_hemisphere, long_degrees, self.longitude[1], self.longitude[2], [all …]
|
D | GPOS.py | 46 def __init__(self, rdclass, rdtype, latitude, longitude, altitude): argument 52 if isinstance(longitude, float) or \ 53 isinstance(longitude, int) or \ 54 isinstance(longitude, long): 55 longitude = str(longitude) 61 _validate_float_string(longitude) 64 self.longitude = longitude 68 return '%s %s %s' % (self.latitude, self.longitude, self.altitude) 72 longitude = tok.get_string() 75 return cls(rdclass, rdtype, latitude, longitude, altitude) [all …]
|
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/ |
D | ShadowLocation.java | 21 private double longitude; field in ShadowLocation 58 longitude = l.getLongitude(); in set() 169 return longitude; in getLongitude() 173 public void setLongitude(double longitude) { in setLongitude() argument 174 this.longitude = longitude; in setLongitude() 210 if (Double.compare(that.longitude, longitude) != 0) return false; in equals() 225 temp = longitude != +0.0d ? Double.doubleToLongBits(longitude) : 0L; in hashCode() 238 ", longitude=" + longitude + in toString() 384 if (latitude != mLat1 || longitude != mLon1 || in distanceTo() 386 computeDistanceAndBearing(latitude, longitude, in distanceTo() [all …]
|
D | ShadowAddress.java | 16 private double longitude; field in ShadowAddress 33 return longitude; in getLongitude() 37 public void setLongitude(double longitude) { in setLongitude() argument 38 this.longitude = longitude; in setLongitude()
|
D | ShadowGeocoder.java | 39 …public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOE… in getFromLocation() argument 42 this.lastLongitude = longitude; in getFromLocation()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/ |
D | LocationInformationBox.java | 19 private double longitude; field in LocationInformationBox 54 return longitude; in getLongitude() 57 public void setLongitude(double longitude) { in setLongitude() argument 58 this.longitude = longitude; in setLongitude() 103 longitude = IsoTypeReader.readFixedPoint1616(content); in _parseDetails() 118 IsoTypeWriter.writeFixedPont1616(byteBuffer, longitude); in getContent()
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | polar_coordinates.inl | 25 atan(tmp.x, tmp.z), // longitude 31 degrees(atan(tmp.x, tmp.z)), // longitude 44 T const longitude(polar.y); local 48 T const longitude(radians(polar.y)); 52 cos(latitude) * sin(longitude), 54 cos(latitude) * cos(longitude));
|
/external/icu/icu4c/source/i18n/ |
D | astro.h | 87 longitude = lon; 98 longitude = lon; in set() 126 double longitude; variable 315 CalendarAstronomer(double longitude, double latitude); 483 /*public*/ void getSunLongitude(double julianDay, double &longitude, double &meanAnomaly);
|
D | astro.cpp | 272 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) : in CalendarAstronomer() argument 274 fLongitude = normPI(longitude * (double)DEG_RAD); in CalendarAstronomer() 446 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 636 /*public*/ void CalendarAstronomer::getSunLongitude(double jDay, double &longitude, double &meanAno… in getSunLongitude() argument 655 longitude = norm2PI(trueAnomaly(meanAnomaly, SUN_E) + SUN_OMEGA_G); in getSunLongitude() 1482 sprintf(tmp, "[%.5f,%.5f]", longitude*RAD_DEG, latitude*RAD_DEG); in toString()
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
D | ImfEnvmap.cpp | 62 float longitude = (dir.z == 0 && dir.x == 0)? 0: atan2 (dir.x, dir.z); in latLong() local 64 return V2f (latitude, longitude); in latLong() 71 float latitude, longitude; in latLong() local 86 longitude = -2 * M_PI * in latLong() 92 longitude = 0; in latLong() 95 return V2f (latitude, longitude); in latLong()
|
D | ImfStandardAttributes.h | 180 IMF_STD_ATTRIBUTE_DEF (longitude, Longitude, float)
|
D | ImfStandardAttributes.cpp | 102 IMF_STD_ATTRIBUTE_IMP (longitude, Longitude, float)
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | CalendarAstronomer.java | 241 public CalendarAstronomer(double longitude, double latitude) { in CalendarAstronomer() argument 243 fLongitude = normPI(longitude * DEG_RAD); in CalendarAstronomer() 428 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 1503 longitude = lon; 1511 return Double.toString(longitude*RAD_DEG) + "," + (latitude*RAD_DEG); 1533 public final double longitude;
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | CalendarAstronomer.java | 239 public CalendarAstronomer(double longitude, double latitude) { in CalendarAstronomer() argument 241 fLongitude = normPI(longitude * DEG_RAD); in CalendarAstronomer() 426 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 1501 longitude = lon; 1509 return Double.toString(longitude*RAD_DEG) + "," + (latitude*RAD_DEG); 1531 public final double longitude;
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/ |
D | AstroTest.java | 52 double longitude = astro.getSunLongitude(); in TestSolarLongitude() local 53 if (longitude != tests[i][5]) { in TestSolarLongitude() 54 if ((float)longitude == (float)tests[i][5]) { in TestSolarLongitude() 55 logln("longitude(" + longitude + in TestSolarLongitude() 59 errln("FAIL: longitude(" + longitude + in TestSolarLongitude()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/ |
D | AstroTest.java | 48 double longitude = astro.getSunLongitude(); in TestSolarLongitude() local 49 if (longitude != tests[i][5]) { in TestSolarLongitude() 50 if ((float)longitude == (float)tests[i][5]) { in TestSolarLongitude() 51 logln("longitude(" + longitude + in TestSolarLongitude() 55 errln("FAIL: longitude(" + longitude + in TestSolarLongitude()
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | LocationFacade.java | 174 @RpcParameter(name = "longitude") Double longitude, in geocode() 177 return mGeocoder.getFromLocation(latitude, longitude, maxResults); in geocode()
|
/external/autotest/client/site_tests/graphics_SanAngeles/src/ |
D | demo.c | 346 int a, longitude, latitude; in createSuperShape() local 360 for (longitude = 0; longitude < longitudeCount; ++longitude) in createSuperShape() 366 float t1 = -PI + longitude * 2 * PI / resol1; in createSuperShape() 367 float t2 = -PI + (longitude + 1) * 2 * PI / resol1; in createSuperShape()
|
/external/piex/src/ |
D | piex_types.h | 72 Rational longitude[3]; member
|
/external/icu/icu4c/source/test/intltest/ |
D | astrotst.cpp | 94 double longitude = astro->getSunLongitude(); in TestSolarLongitude() local 98 …toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude ); in TestSolarLongitude()
|
/external/libexif/po/ |
D | en_AU.po | 2565 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2566 "indicates east longitude, and 'W' is west longitude." 2568 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2569 "indicates east longitude, and 'W' is west longitude." 2577 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2583 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2813 "Indicates whether the longitude of the destination point is east or west " 2814 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." 2816 "Indicates whether the longitude of the destination point is east or west " 2817 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." [all …]
|
D | en_GB.po | 2565 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2566 "indicates east longitude, and 'W' is west longitude." 2568 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2569 "indicates east longitude, and 'W' is west longitude." 2577 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2583 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2813 "Indicates whether the longitude of the destination point is east or west " 2814 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." 2816 "Indicates whether the longitude of the destination point is east or west " 2817 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." [all …]
|
D | libexif-12.pot | 2521 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2522 "indicates east longitude, and 'W' is west longitude." 2531 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2717 "Indicates whether the longitude of the destination point is east or west " 2718 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." 2727 "Indicates the longitude of the destination point. The longitude is expressed " 2729 "respectively. If longitude is expressed as degrees, minutes and seconds, a "
|
D | be.po | 2525 "Indicates whether the longitude is east or west longitude. ASCII 'E' " 2526 "indicates east longitude, and 'W' is west longitude." 2535 "Indicates the longitude. The longitude is expressed as three RATIONAL values " 2721 "Indicates whether the longitude of the destination point is east or west " 2722 "longitude. ASCII 'E' indicates east longitude, and 'W' is west longitude." 2731 "Indicates the longitude of the destination point. The longitude is expressed " 2733 "respectively. If longitude is expressed as degrees, minutes and seconds, a "
|
/external/timezonepicker-support/ |
D | zone.tab | 11 # 2. Latitude and longitude of the zone's principal location 14 # first latitude (+ is north), then longitude (+ is east).
|