/third_party/grpc/examples/node/dynamic_codegen/route_guide/ |
D | route_guide_client.js | 56 feature.location.latitude/COORD_FACTOR + ', ' + 60 feature.location.latitude/COORD_FACTOR + ', ' + 66 latitude: 409146138, property 70 latitude: 0, property 86 latitude: 400000000, property 90 latitude: 420000000, property 98 feature.location.latitude/COORD_FACTOR + ', ' + 149 latitude: lat, property 158 point_senders[i] = pointSender(rand_point.location.latitude, 176 note.location.latitude + ', ' + note.location.longitude); [all …]
|
D | route_guide_server.js | 62 if (feature.location.latitude === point.latitude && 96 var top = _.max([lo.latitude, hi.latitude]); 97 var bottom = _.min([lo.latitude, hi.latitude]); 105 feature.location.latitude >= bottom && 106 feature.location.latitude <= top) { 125 var lat1 = toRadians(start.latitude / COORD_FACTOR); 126 var lat2 = toRadians(end.latitude / COORD_FACTOR); 186 return point.latitude + ' ' + point.longitude;
|
/third_party/boost/boost/geometry/util/ |
D | normalize_spheroidal_coordinates.hpp | 261 CoordinateType& latitude, in apply() argument 264 latitude_convert_if_polar<Units, IsEquatorial>::apply(latitude); in apply() 268 if (math::larger(latitude, constants::half_period())) in apply() 270 latitude = normalize_up(latitude); in apply() 272 else if (math::smaller(latitude, -constants::half_period())) in apply() 274 latitude = normalize_down(latitude); in apply() 278 if (latitude < constants::min_latitude()) in apply() 280 latitude = -constants::half_period() - latitude; in apply() 283 else if (latitude > constants::max_latitude()) in apply() 285 latitude = constants::half_period() - latitude; in apply() [all …]
|
/third_party/grpc/examples/ruby/route_guide/ |
D | route_guide_client.rb | 32 Point.new(latitude: 409_146_138, longitude: -746_188_906), 33 Point.new(latitude: 0, longitude: 0) 54 lo: Point.new(latitude: 400_000_000, longitude: -750_000_000), 55 hi: Point.new(latitude: 420_000_000, longitude: -730_000_000)) 111 location: Point.new(latitude: 0, longitude: 0)), 113 location: Point.new(latitude: 0, longitude: 1)), 115 location: Point.new(latitude: 1, longitude: 0)), 117 location: Point.new(latitude: 1, longitude: 1)), 119 location: Point.new(latitude: 0, longitude: 1))
|
D | route_guide_server.rb | 38 lat_a = to_radians.call(point_a.latitude / COORD_FACTOR) 39 lat_b = to_radians.call(point_b.latitude / COORD_FACTOR) 58 lats = [@bounds.lo.latitude, @bounds.hi.latitude] 98 'latitude' => point.latitude }] || '' 113 'latitude' => point.latitude }] || '' 145 'latitude' => n.location.latitude,
|
/third_party/grpc/examples/cpp/route_guide/ |
D | route_guide_server.cc | 61 float lat_1 = start.latitude() / kCoordFactor; in GetDistance() 62 float lat_2 = end.latitude() / kCoordFactor; in GetDistance() 81 if (f.location().latitude() == point.latitude() && in GetFeatureName() 109 long top = (std::max)(lo.latitude(), hi.latitude()); in ListFeatures() 110 long bottom = (std::min)(lo.latitude(), hi.latitude()); in ListFeatures() 114 f.location().latitude() >= bottom && in ListFeatures() 115 f.location().latitude() <= top) { in ListFeatures() 158 if (n.location().latitude() == note.location().latitude() && in RouteChat()
|
D | route_guide_client.cc | 51 Point MakePoint(long latitude, long longitude) { in MakePoint() argument 53 p.set_latitude(latitude); in MakePoint() 59 long latitude, long longitude) { in MakeFeature() argument 62 f.mutable_location()->CopyFrom(MakePoint(latitude, longitude)); in MakeFeature() 67 long latitude, long longitude) { in MakeRouteNote() argument 70 n.mutable_location()->CopyFrom(MakePoint(latitude, longitude)); in MakeRouteNote() 107 << feature.location().latitude()/kCoordFactor_ << ", " in ListFeatures() 136 << f.location().latitude()/kCoordFactor_ << ", " in RecordRoute() 172 << " at " << note.location().latitude() << ", " in RouteChat() 182 << " at " << server_note.location().latitude() << ", " in RouteChat() [all …]
|
/third_party/grpc/examples/python/route_guide/ |
D | route_guide_client.py | 28 def make_route_note(message, latitude, longitude): argument 31 location=route_guide_pb2.Point(latitude=latitude, longitude=longitude)) 48 stub, route_guide_pb2.Point(latitude=409146138, longitude=-746188906)) 49 guide_get_one_feature(stub, route_guide_pb2.Point(latitude=0, longitude=0)) 54 lo=route_guide_pb2.Point(latitude=400000000, longitude=-750000000), 55 hi=route_guide_pb2.Point(latitude=420000000, longitude=-730000000))
|
D | route_guide_server.py | 39 lat_1 = start.latitude / coord_factor 40 lat_2 = end.latitude / coord_factor 74 top = max(request.lo.latitude, request.hi.latitude) 75 bottom = min(request.lo.latitude, request.hi.latitude) 79 feature.location.latitude >= bottom and 80 feature.location.latitude <= top):
|
/third_party/grpc/examples/python/multiplex/ |
D | multiplex_client.py | 31 def make_route_note(message, latitude, longitude): argument 34 location=route_guide_pb2.Point(latitude=latitude, longitude=longitude)) 52 route_guide_pb2.Point(latitude=409146138, longitude=-746188906)) 54 route_guide_pb2.Point(latitude=0, longitude=0)) 59 lo=route_guide_pb2.Point(latitude=400000000, longitude=-750000000), 60 hi=route_guide_pb2.Point(latitude=420000000, longitude=-730000000))
|
D | multiplex_server.py | 41 lat_1 = start.latitude / coord_factor 42 lat_2 = end.latitude / coord_factor 82 top = max(request.lo.latitude, request.hi.latitude) 83 bottom = min(request.lo.latitude, request.hi.latitude) 87 feature.location.latitude >= bottom and 88 feature.location.latitude <= top):
|
/third_party/grpc/examples/node/static_codegen/route_guide/ |
D | route_guide_client.js | 46 var latitude = feature.getLocation().getLatitude(); 50 latitude/COORD_FACTOR + ', ' + longitude/COORD_FACTOR); 53 latitude/COORD_FACTOR + ', ' + longitude/COORD_FACTOR); 113 location.setLatitude(value.location.latitude); 177 latitude: 0, property 183 latitude: 0, property 189 latitude: 1, property 195 latitude: 0, property 203 note.location.latitude + ', ' + note.location.longitude); 207 location.setLatitude(note.location.latitude);
|
/third_party/boost/boost/geometry/strategies/ |
D | normalize.hpp | 55 CoordinateType const& latitude, in apply() 67 >::apply(longitude, latitude, point_in, point_out); in apply() 88 CoordinateType const& latitude, in apply() 100 >::apply(longitude, latitude, point_in, point_out); in apply() 109 CoordinateType const& latitude, in apply() 116 >(latitude)); in apply() 121 >::apply(longitude, latitude, point_in, point_out); in apply() 134 in_coordinate_type latitude = geometry::get<1>(point_in); in apply() local 141 >(longitude, latitude); in apply() 146 >::apply(longitude, latitude, point_in, point_out); in apply()
|
/third_party/skia/third_party/externals/oboe/samples/RhythmGame/third_party/glm/gtx/ |
D | polar_coordinates.inl | 17 asin(tmp.y), // latitude 28 T const latitude(polar.x); local 32 cos(latitude) * sin(longitude), 33 sin(latitude), 34 cos(latitude) * cos(longitude));
|
/third_party/boost/libs/geometry/test/formulas/ |
D | direct_accuracy.cpp | 54 double latitude(1.0 * i); in test_main() local 64 GeographicLibWGS84.Inverse(0.0, 0.0, latitude, longitude, distance_m, azimuth, azi2); in test_main() 69 BOOST_CHECK_CLOSE(latitude, lat2k, 140 * CALCULATION_TOLERANCE); in test_main() 76 BOOST_CHECK_CLOSE(latitude, results_6.lat2, 220 * CALCULATION_TOLERANCE); in test_main() 86 BOOST_CHECK_CLOSE(latitude, results_8.lat2, 220 * CALCULATION_TOLERANCE); in test_main()
|
/third_party/boost/libs/geometry/test/test_geometries/ |
D | custom_lon_lat_point.hpp | 28 CoordinateType longitude, latitude; member 68 return (Dimension == 0) ? p.longitude : p.latitude; in get() 75 ( Dimension == 0 ? p.longitude : p.latitude ) = value; in set() 86 CoordinateType longitude, latitude; member 126 return (Dimension == 0) ? p.longitude : p.latitude; in get()
|
/third_party/grpc/examples/objective-c/route_guide/ |
D | ViewControllers.m | 37 NSString *verticalDirection = self.latitude >= 0 ? @"N" : @"S"; 40 [NSString stringWithFormat:@"%.02f%@ %.02f%@", abs(self.latitude) / 1E7f, verticalDirection, 48 latitude:(float)latitude 54 latitude:(float)latitude 58 note.location.latitude = (int32_t)latitude * 1E7; 103 point.latitude = 409146138; 160 rectangle.lo.latitude = 405E6; 162 rectangle.hi.latitude = 410E6; 273 location.latitude = [((NSNumber *)feature[@"location"][@"latitude"]) intValue]; 323 [RTGRouteNote noteWithMessage:@"First message" latitude:0 longitude:0], [all …]
|
/third_party/flutter/skia/third_party/externals/icu/source/i18n/ |
D | astro.h | 88 latitude = lat; 99 latitude = lat; in set() 115 double latitude; variable 317 CalendarAstronomer(double longitude, double latitude);
|
/third_party/skia/third_party/externals/icu/source/i18n/ |
D | astro.h | 88 latitude = lat; 99 latitude = lat; in set() 115 double latitude; variable 317 CalendarAstronomer(double longitude, double latitude);
|
/third_party/node/deps/icu-small/source/i18n/ |
D | astro.h | 88 latitude = lat; 99 latitude = lat; in set() 115 double latitude; variable 317 CalendarAstronomer(double longitude, double latitude);
|
/third_party/icu/icu4c/source/i18n/ |
D | astro.h | 88 latitude = lat; 99 latitude = lat; in set() 115 double latitude; variable 317 CalendarAstronomer(double longitude, double latitude);
|
/third_party/python/Lib/ |
D | antigravity.py | 7 def geohash(latitude, longitude, datedow): argument 17 print('%d%s %d%s' % (latitude, p[1:], longitude, q[1:]))
|
/third_party/jsframework/runtime/main/extend/systemplugin/ |
D | geolocation.js | 20 latitude: '121.61934', property 49 data.latitude = getRandomArbitrary(121, 122)
|
/third_party/boost/libs/serialization/example/ |
D | demo_xml.hpp | 74 gps_position latitude; member in bus_stop 80 ar & BOOST_SERIALIZATION_NVP(latitude); in serialize() 86 latitude(_lat), longitude(_long) in bus_stop() 98 return os << bs.latitude << bs.longitude << ' ' << bs.description();
|
D | demo_gps.hpp | 74 gps_position latitude; member in bus_stop 80 ar & BOOST_SERIALIZATION_NVP(latitude); in serialize() 86 latitude(_lat), longitude(_long) in bus_stop() 98 return os << bs.latitude << bs.longitude << ' ' << bs.description();
|