Home
last modified time | relevance | path

Searched refs:getLongitude (Results 1 – 13 of 13) sorted by relevance

/external/grpc-grpc/examples/node/static_codegen/route_guide/
Droute_guide_server.js54 feature.getLocation().getLongitude() === point.getLongitude()) {
84 var left = _.min([lo.getLongitude(), hi.getLongitude()]);
85 var right = _.max([lo.getLongitude(), hi.getLongitude()]);
93 if (feature.getLocation().getLongitude() >= left &&
94 feature.getLocation().getLongitude() <= right &&
117 var lon1 = toRadians(start.getLongitude() / COORD_FACTOR);
118 var lon2 = toRadians(end.getLongitude() / COORD_FACTOR);
176 return point.getLatitude() + ' ' + point.getLongitude();
Droute_guide_client.js47 var longitude = feature.getLocation().getLongitude();
88 feature.getLocation().getLongitude()/COORD_FACTOR);
144 ', ' + location.getLongitude()/COORD_FACTOR);
170 note.getLocation().getLongitude());
Droute_guide_pb.js64 longitude: msg.getLongitude()
154 f = this.getLongitude();
192 proto.routeguide.Point.prototype.getLongitude = function() { method in proto.routeguide.Point
/external/grpc-grpc-java/examples/src/main/java/io/grpc/examples/routeguide/
DRouteGuideServer.java142 int left = min(request.getLo().getLongitude(), request.getHi().getLongitude()); in listFeatures()
143 int right = max(request.getLo().getLongitude(), request.getHi().getLongitude()); in listFeatures()
153 int lon = feature.getLocation().getLongitude(); in listFeatures()
260 && feature.getLocation().getLongitude() == location.getLongitude()) {
281 double lon1 = toRadians(RouteGuideUtil.getLongitude(start));
282 double lon2 = toRadians(RouteGuideUtil.getLongitude(end));
DRouteGuideClient.java91 RouteGuideUtil.getLongitude(feature.getLocation())); in getFeature()
95 RouteGuideUtil.getLongitude(feature.getLocation())); in getFeature()
171 RouteGuideUtil.getLongitude(point)); in recordRoute()
207 .getLatitude(), note.getLocation().getLongitude()); in routeChat()
236 .getLatitude(), request.getLocation().getLongitude()); in routeChat()
DRouteGuideUtil.java44 public static double getLongitude(Point location) { in getLongitude() method in RouteGuideUtil
45 return location.getLongitude() / COORD_FACTOR; in getLongitude()
/external/grpc-grpc-java/examples/android/routeguide/app/src/main/java/io/grpc/routeguideexample/
DRouteGuideUtil.java30 public static double getLongitude(Point location) { in getLongitude() method in RouteGuideUtil
31 return location.getLongitude() / COORD_FACTOR; in getLongitude()
DRouteGuideActivity.java207 RouteGuideUtil.getLongitude(feature.getLocation())); in getFeature()
213 RouteGuideUtil.getLongitude(feature.getLocation())); in getFeature()
320 RouteGuideUtil.getLongitude(point)); in recordRoute()
379 note.getLocation().getLongitude()); in routeChat()
409 request.getLocation().getLongitude()); in routeChat()
/external/grpc-grpc/examples/php/route_guide/
Droute_guide_client.php42 $feature->getLocation()->getLongitude() / COORD_FACTOR
190 $route_note_reply->getLocation()->getLongitude(),
/external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/
DShadowLocationManager.java459 copy.setLongitude(location.getLongitude()); in copyOf()
473 double lonDifference = Math.toRadians(location2.getLongitude() - location1.getLongitude()); in distanceBetween()
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/threegpp26244/
DLocationInformationBox.java53 public double getLongitude() { in getLongitude() method in LocationInformationBox
/external/robolectric-shadows/robolectric/src/test/java/org/robolectric/shadows/
DShadowLocationManagerTest.java448 assertThat(listener.location.getLongitude()).isEqualTo(2.0d); in simulateLocation_shouldNotNotifyListenerIfLessThanMinimumDistance()
/external/sl4a/Common/src/com/googlecode/android_scripting/jsonrpc/
DJsonBuilder.java606 result.put("longitude", location.getLongitude()); in buildJsonLocation()
877 result.put("longitude", cellidentity.getLongitude()); in buildCellInfoCdma()