Searched refs:longitude (Results 1 - 25 of 34) sorted by relevance

12

/external/python/cpython3/Lib/
H A Dantigravity.py7 def geohash(latitude, longitude, datedow):
17 print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAddress.java16 private double longitude; field in class:ShadowAddress
33 return longitude;
37 public void setLongitude(double longitude) { argument
38 this.longitude = longitude;
H A DShadowLocation.java21 private double longitude; field in class:ShadowLocation
58 longitude = l.getLongitude();
169 return longitude;
173 public void setLongitude(double longitude) { argument
174 this.longitude = longitude;
210 if (Double.compare(that.longitude, longitude) != 0) return false;
225 temp = longitude != +0.0d ? Double.doubleToLongBits(longitude)
[all...]
H A DShadowGeocoder.java39 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException { argument
42 this.lastLongitude = longitude;
100 * @param lng longitude for simulated response
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
H A DLocationInformationBox.java19 private double longitude; field in class:LocationInformationBox
54 return longitude;
57 public void setLongitude(double longitude) { argument
58 this.longitude = longitude;
103 longitude = IsoTypeReader.readFixedPoint1616(content);
118 IsoTypeWriter.writeFixedPont1616(byteBuffer, longitude);
/external/icu/icu4c/source/i18n/
H A Dastro.h66 * The longitude specifies the position along the ecliptic plane
84 * @param lon The ecliptic longitude, measured in radians.
89 longitude = lon;
95 * @param lon The ecliptic longitude, measured in radians.
100 longitude = lon;
118 * The ecliptic longitude, in radians.
128 double longitude; member in class:CalendarAstronomer::Ecliptic
274 * it takes for the moon to return the same ecliptic longitude as the sun.
275 * It is longer than the sidereal month because the sun's longitude increases
305 * latitude and longitude
[all...]
H A Dastro.cpp96 * it takes for the moon to return the same ecliptic longitude as the sun.
97 * It is longer than the sidereal month because the sun's longitude increases
109 * for the moon to return to the same ecliptic longitude relative to the
261 * latitude and longitude. The object's time is set to the current
264 * @param longitude The desired longitude, in <em>degrees</em> east of
274 CalendarAstronomer::CalendarAstronomer(double longitude, double latitude) : argument
276 fLongitude = normPI(longitude * (double)DEG_RAD);
448 return eclipticToEquatorial(result, ecliptic.longitude, ecliptic.latitude);
454 * @param eclipLong The ecliptic longitude
638 getSunLongitude(double jDay, double &longitude, double &meanAnomaly) argument
[all...]
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
H A DShadowGeocoder.java27 * @param longitude it's ignored by this implementation
32 public List<Address> getFromLocation(double latitude, double longitude, int maxResults) throws IOException { argument
/external/piex/src/
H A Dpiex_types.h72 Rational longitude[3]; member in struct:piex::PreviewImageData::Gps
H A Dtiff_parser.cc92 preview_image_data->gps.longitude)) {
/external/libxcam/modules/ocl/
H A Dcl_fisheye_handler.cpp168 CLFisheyeHandler::set_dst_range (float longitude, float latitude) argument
170 _range_longitude = longitude;
175 CLFisheyeHandler::get_dst_range (float &longitude, float &latitude) const argument
177 longitude = _range_longitude;
359 float longitude, latitude; local
360 get_dst_range (longitude, latitude);
362 ERROR, longitude > 0.0f && latitude > 0.0f,
363 XCAM_RETURN_ERROR_PARAM, "[%s] dest latitude and longitude were not set", get_name ());
421 radian_per_pixel[0] = degree2radian (longitude / table_width);
H A Dcl_fisheye_handler.h58 void set_dst_range (float longitude, float latitude);
59 void get_dst_range (float &longitude, float &latitude) const;
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/
H A DLocationFacade.java49 * {u'network': {u'altitude': 0, u'provider': u'network', u'longitude': -0.38509020000000002,
51 * {u'altitude': 51, u'provider': u'gps', u'longitude': -0.38537094593048096, u'time':
70 * lo = n['longitude']
169 @Rpc(description = "Returns a list of addresses for the given latitude and longitude.", returns = "A list of addresses.")
172 @RpcParameter(name = "longitude") Double longitude,
175 return mGeocoder.getFromLocation(latitude, longitude, maxResults);
170 geocode( @pcParametername = �) Double latitude, @RpcParameter(name = �) Double longitude, @RpcParameter(name = �, description = �) @RpcDefault(�) Integer maxResults) argument
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
H A DAstroTest.java43 // year, month, day, hour, minute, longitude (radians), ascension(radians), declination(radians)
55 double longitude = astro.getSunLongitude();
56 if (longitude != tests[i][5]) {
57 if ((float)longitude == (float)tests[i][5]) {
58 logln("longitude(" + longitude +
62 errln("FAIL: longitude(" + longitude +
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
H A DAstroTest.java40 // year, month, day, hour, minute, longitude (radians), ascension(radians), declination(radians)
52 double longitude = astro.getSunLongitude();
53 if (longitude != tests[i][5]) {
54 if ((float)longitude == (float)tests[i][5]) {
55 logln("longitude(" + longitude +
59 errln("FAIL: longitude(" + longitude +
/external/icu/android_icu4j/src/main/java/android/icu/impl/
H A DCalendarAstronomer.java73 * it takes for the moon to return the same ecliptic longitude as the sun.
74 * It is longer than the sidereal month because the sun's longitude increases
85 * for the moon to return to the same ecliptic longitude relative to the
231 * latitude and longitude. The object's time is set to the current
234 * @param longitude The desired longitude, in <em>degrees</em> east of
243 public CalendarAstronomer(double longitude, double latitude) { argument
245 fLongitude = normPI(longitude * DEG_RAD);
430 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude);
436 * @param eclipLong The ecliptic longitude
1539 public final double longitude; field in class:CalendarAstronomer.Ecliptic
[all...]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
H A DCalendarAstronomer.java71 * it takes for the moon to return the same ecliptic longitude as the sun.
72 * It is longer than the sidereal month because the sun's longitude increases
83 * for the moon to return to the same ecliptic longitude relative to the
229 * latitude and longitude. The object's time is set to the current
232 * @param longitude The desired longitude, in <em>degrees</em> east of
241 public CalendarAstronomer(double longitude, double latitude) { argument
243 fLongitude = normPI(longitude * DEG_RAD);
428 return eclipticToEquatorial(ecliptic.longitude, ecliptic.latitude);
434 * @param eclipLong The ecliptic longitude
1537 public final double longitude; field in class:CalendarAstronomer.Ecliptic
[all...]
/external/autotest/client/site_tests/graphics_SanAngeles/src/
H A Ddemo.c346 int a, longitude, latitude; local
359 // longitude -pi to pi
360 for (longitude = 0; longitude < longitudeCount; ++longitude)
366 float t1 = -PI + longitude * 2 * PI / resol1;
367 float t2 = -PI + (longitude + 1) * 2 * PI / resol1;
472 } // longitude
/external/icu/icu4c/source/test/intltest/
H A Dastrotst.cpp97 double longitude = astro->getSunLongitude(); local
98 //longitude = 0;
101 logln((UnicodeString)"Sun position is " + result.toString() + (UnicodeString)"; " /* + result.toHmsString()*/ + " Sun longitude is " + longitude );
/external/zxing/core/
H A Dcore.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/zxing/ com/google/zxing/oned/ ...
/external/robolectric/v3/runtime/
H A Dshadows-core-3.1-SNAPSHOT-16.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-17.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-18.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-19.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...
H A Dshadows-core-3.1-SNAPSHOT-21.jarMETA-INF/ META-INF/MANIFEST.MF linux-x86_64/ linux-x86_64/META-INF/ android/ ...

Completed in 884 milliseconds

12