Searched refs:coordinateSystemType (Results 1 - 6 of 6) sorted by relevance
/base/location/frameworks/js/napi/source/ |
H A D | location_napi_entry.cpp | 28 napi_value coordinateSystemType; in CoordinateSystemTypeConstructor() local 29 NAPI_CALL(env, napi_create_object(env, &coordinateSystemType)); in CoordinateSystemTypeConstructor() 30 SetEnumPropertyByInteger(env, coordinateSystemType, CoordinateSystemType::WGS84, "WGS84"); in CoordinateSystemTypeConstructor() 31 SetEnumPropertyByInteger(env, coordinateSystemType, CoordinateSystemType::GCJ02, "GCJ02"); in CoordinateSystemTypeConstructor() 32 return coordinateSystemType; in CoordinateSystemTypeConstructor()
|
H A D | geofence_napi.cpp | 210 if (JsObjectToInt(env, geofenceValue, "coordinateSystemType", value) == SUCCESS) { in JsObjToGeoFenceRequest() 211 geofence.coordinateSystemType = static_cast<CoordinateSystemType>(value); in JsObjToGeoFenceRequest() 213 geofence.coordinateSystemType = CoordinateSystemType::WGS84; in JsObjToGeoFenceRequest()
|
/base/location/interfaces/inner_api/include/ |
H A D | geofence_request.h | 35 CoordinateSystemType coordinateSystemType; member
|
/base/location/frameworks/native/geofence_sdk/source/ |
H A D | geofence_request.cpp | 171 geofence_.coordinateSystemType = static_cast<CoordinateSystemType>(data.ReadInt32());
in ReadFromParcel() 212 parcel.WriteInt32(static_cast<int>(geofence_.coordinateSystemType));
in Marshalling()
|
H A D | geofence_sdk.cpp | 225 int coordinateSystemType = reply.ReadInt32(); in GetGeofenceSupportedCoordTypes() local 226 coordinateSystemTypes.push_back(static_cast<CoordinateSystemType>(coordinateSystemType)); in GetGeofenceSupportedCoordTypes()
|
/base/location/services/location_locator/locator/source/ |
H A D | locator_ability.cpp | 1488 int coordinateSystemType = replyToStub.ReadInt32(); in QuerySupportCoordinateSystemType() local 1489 coordinateSystemTypes.push_back(static_cast<CoordinateSystemType>(coordinateSystemType)); in QuerySupportCoordinateSystemType()
|
Completed in 8 milliseconds