/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 110 if isinstance(latitude, int) or isinstance(latitude, long): 111 latitude = float(latitude) 112 if isinstance(latitude, float): 113 latitude = _float_to_tuple(latitude) 114 self.latitude = latitude 126 if self.latitude[0] > 0: 128 lat_degrees = self.latitude[0] 131 lat_degrees = -1 * self.latitude[0] 139 lat_degrees, self.latitude[1], self.latitude[2], self.latitude[3], [all …]
|
D | GPOS.py | 46 def __init__(self, rdclass, rdtype, latitude, longitude, altitude): argument 48 if isinstance(latitude, float) or \ 49 isinstance(latitude, int) or \ 50 isinstance(latitude, long): 51 latitude = str(latitude) 60 _validate_float_string(latitude) 63 self.latitude = latitude 68 return '%s %s %s' % (self.latitude, self.longitude, self.altitude) 71 latitude = 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 | 20 private double latitude; field in ShadowLocation 57 latitude = l.getLatitude(); in set() 159 return latitude; in getLatitude() 163 public void setLatitude(double latitude) { in setLatitude() argument 164 this.latitude = latitude; in setLatitude() 209 if (Double.compare(that.latitude, latitude) != 0) return false; in equals() 223 temp = latitude != +0.0d ? Double.doubleToLongBits(latitude) : 0L; in hashCode() 237 ", latitude=" + latitude + in toString() 384 if (latitude != mLat1 || longitude != mLon1 || in distanceTo() 386 computeDistanceAndBearing(latitude, longitude, in distanceTo() [all …]
|
D | ShadowAddress.java | 17 private double latitude; field in ShadowAddress 23 return latitude; in getLatitude() 27 public void setLatitude(double latitude) { in setLatitude() argument 28 this.latitude = latitude; in setLatitude()
|
D | ShadowGeocoder.java | 39 …public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOE… in getFromLocation() argument 41 this.lastLatitude = latitude; in getFromLocation()
|
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/ |
D | LocationInformationBox.java | 20 private double latitude; field in LocationInformationBox 62 return latitude; in getLatitude() 65 public void setLatitude(double latitude) { in setLatitude() argument 66 this.latitude = latitude; in setLatitude() 104 latitude = IsoTypeReader.readFixedPoint1616(content); in _parseDetails() 119 IsoTypeWriter.writeFixedPont1616(byteBuffer, latitude); in getContent()
|
/external/vulkan-validation-layers/libs/glm/gtx/ |
D | polar_coordinates.inl | 24 atan(xz_dist, tmp.y), // latitude 30 degrees(atan(xz_dist, tmp.y)), // latitude 43 T const latitude(polar.x); local 47 T const latitude(radians(polar.x)); 52 cos(latitude) * sin(longitude), 53 sin(latitude), 54 cos(latitude) * cos(longitude));
|
/external/opencv3/3rdparty/openexr/IlmImf/ |
D | ImfEnvmap.cpp | 58 float latitude = (r < abs (dir.y))? in latLong() local 64 return V2f (latitude, longitude); in latLong() 71 float latitude, longitude; in latLong() local 75 latitude = -M_PI * in latLong() 81 latitude = 0; in latLong() 95 return V2f (latitude, longitude); in latLong()
|
D | ImfStandardAttributes.h | 181 IMF_STD_ATTRIBUTE_DEF (latitude, Latitude, float)
|
D | ImfStandardAttributes.cpp | 103 IMF_STD_ATTRIBUTE_IMP (latitude, Latitude, float)
|
/external/icu/icu4c/source/i18n/ |
D | astro.h | 86 latitude = lat; 97 latitude = lat; in set() 113 double latitude; variable 315 CalendarAstronomer(double longitude, double latitude);
|
D | astro.cpp | 272 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) : in CalendarAstronomer() argument 275 fLatitude = normPI(latitude * (double)DEG_RAD); in CalendarAstronomer() 446 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 1482 sprintf(tmp, "[%.5f,%.5f]", longitude*RAD_DEG, latitude*RAD_DEG); in toString()
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | CalendarAstronomer.java | 239 public CalendarAstronomer(double longitude, double latitude) { in CalendarAstronomer() argument 242 fLatitude = normPI(latitude * DEG_RAD); in CalendarAstronomer() 426 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 1500 latitude = lat; 1509 return Double.toString(longitude*RAD_DEG) + "," + (latitude*RAD_DEG); 1518 public final double latitude;
|
/external/icu/android_icu4j/src/main/java/android/icu/impl/ |
D | CalendarAstronomer.java | 241 public CalendarAstronomer(double longitude, double latitude) { in CalendarAstronomer() argument 244 fLatitude = normPI(latitude * DEG_RAD); in CalendarAstronomer() 428 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude); in eclipticToEquatorial() 1502 latitude = lat; 1511 return Double.toString(longitude*RAD_DEG) + "," + (latitude*RAD_DEG); 1520 public final double latitude;
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | LocationFacade.java | 173 @RpcParameter(name = "latitude") Double latitude, 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 364 for (latitude = latitudeBegin; latitude < latitudeEnd; ++latitude) in createSuperShape() 368 float p1 = -PI / 2 + latitude * 2 * PI / resol2; in createSuperShape() 369 float p2 = -PI / 2 + (latitude + 1) * 2 * PI / resol2; in createSuperShape() 391 if (latitude == latitudeBegin + 1) in createSuperShape()
|
/external/piex/src/ |
D | piex_types.h | 70 Rational latitude[3]; member
|
/external/libexif/po/ |
D | en_GB.po | 2531 "Indicates whether the latitude is north or south latitude. The ASCII value " 2532 "'N' indicates north latitude, and 'S' is south latitude." 2534 "Indicates whether the latitude is north or south latitude. The ASCII value " 2535 "'N' indicates north latitude, and 'S' is south latitude." 2547 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2553 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2779 "Indicates whether the latitude of the destination point is north or south " 2780 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2781 "latitude." 2783 "Indicates whether the latitude of the destination point is north or south " [all …]
|
D | en_AU.po | 2531 "Indicates whether the latitude is north or south latitude. The ASCII value " 2532 "'N' indicates north latitude, and 'S' is south latitude." 2534 "Indicates whether the latitude is north or south latitude. The ASCII value " 2535 "'N' indicates north latitude, and 'S' is south latitude." 2547 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2553 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2779 "Indicates whether the latitude of the destination point is north or south " 2780 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2781 "latitude." 2783 "Indicates whether the latitude of the destination point is north or south " [all …]
|
D | libexif-12.pot | 2494 "Indicates whether the latitude is north or south latitude. The ASCII value " 2495 "'N' indicates north latitude, and 'S' is south latitude." 2508 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2692 "Indicates whether the latitude of the destination point is north or south " 2693 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2694 "latitude." 2703 "Indicates the latitude of the destination point. The latitude is expressed " 2705 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|
D | tr.po | 2498 "Indicates whether the latitude is north or south latitude. The ASCII value " 2499 "'N' indicates north latitude, and 'S' is south latitude." 2512 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2696 "Indicates whether the latitude of the destination point is north or south " 2697 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2698 "latitude." 2707 "Indicates the latitude of the destination point. The latitude is expressed " 2709 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|
D | sr.po | 2518 "Indicates whether the latitude is north or south latitude. The ASCII value " 2519 "'N' indicates north latitude, and 'S' is south latitude." 2534 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2737 "Indicates whether the latitude of the destination point is north or south " 2738 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2739 "latitude." 2748 "Indicates the latitude of the destination point. The latitude is expressed " 2750 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|
D | ja.po | 2506 "Indicates whether the latitude is north or south latitude. The ASCII value " 2507 "'N' indicates north latitude, and 'S' is south latitude." 2520 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2705 "Indicates whether the latitude of the destination point is north or south " 2706 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2707 "latitude." 2716 "Indicates the latitude of the destination point. The latitude is expressed " 2718 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|
D | zh_CN.po | 2498 "Indicates whether the latitude is north or south latitude. The ASCII value " 2499 "'N' indicates north latitude, and 'S' is south latitude." 2512 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2696 "Indicates whether the latitude of the destination point is north or south " 2697 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2698 "latitude." 2707 "Indicates the latitude of the destination point. The latitude is expressed " 2709 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|
D | uk.po | 2497 "Indicates whether the latitude is north or south latitude. The ASCII value " 2498 "'N' indicates north latitude, and 'S' is south latitude." 2511 "Indicates the latitude. The latitude is expressed as three RATIONAL values " 2695 "Indicates whether the latitude of the destination point is north or south " 2696 "latitude. The ASCII value 'N' indicates north latitude, and 'S' is south " 2697 "latitude." 2706 "Indicates the latitude of the destination point. The latitude is expressed " 2708 "respectively. If latitude is expressed as degrees, minutes and seconds, a "
|