Home
last modified time | relevance | path

Searched refs:GeoAddress (Results 1 - 25 of 27) sorted by relevance

12

/base/location/frameworks/location_common/common/source/
H A Dgeo_address.cpp22 GeoAddress::GeoAddress() in GeoAddress() function in OHOS::Location::GeoAddress
28 std::string GeoAddress::GetDescriptions(int index) in GetDescriptions()
46 double GeoAddress::GetLatitude() in GetLatitude()
51 double GeoAddress::GetLongitude() in GetLongitude()
56 bool GeoAddress::GetIsSystemApp() in GetIsSystemApp()
61 void GeoAddress::SetIsSystemApp(bool isSystemApp) in SetIsSystemApp()
66 std::unique_ptr<GeoAddress> GeoAddress::Unmarshalling(Parcel& parcel) in Unmarshalling()
68 std::unique_ptr<GeoAddress> geoAddres in Unmarshalling()
[all...]
H A Dgeo_coding_mock_info.cpp30 geoAddress_ = std::make_shared<GeoAddress>(); in GeocodingMockInfo()
38 std::shared_ptr<GeoAddress> GeocodingMockInfo::GetGeoAddressInfo() in GetGeoAddressInfo()
48 void GeocodingMockInfo::SetGeoAddressInfo(std::shared_ptr<GeoAddress> geoAddress) in SetGeoAddressInfo()
59 geoAddress_ = GeoAddress::Unmarshalling(parcel); in ReadFromParcel()
/base/location/frameworks/native/locator_sdk/source/
H A Dgeo_convert_callback_host.cpp45 std::list<std::shared_ptr<GeoAddress>> result; in OnRemoteRequest()
47 result.push_back(GeoAddress::Unmarshalling(data)); in OnRemoteRequest()
65 void GeoConvertCallbackHost::OnResults(std::list<std::shared_ptr<GeoAddress>> &results) in OnResults()
82 std::list<std::shared_ptr<GeoAddress>> GeoConvertCallbackHost::GetResult() in GetResult()
85 std::list<std::shared_ptr<GeoAddress>> result; in GetResult()
H A Dlocator_proxy.cpp674 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinateV9()
681 if (resultSize > GeoAddress::MAX_RESULT) { in GetAddressByCoordinateV9()
682 resultSize = GeoAddress::MAX_RESULT; in GetAddressByCoordinateV9()
685 replyList.push_back(GeoAddress::Unmarshalling(reply)); in GetAddressByCoordinateV9()
693 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationNameV9()
700 if (resultSize > GeoAddress::MAX_RESULT) { in GetAddressByLocationNameV9()
701 resultSize = GeoAddress::MAX_RESULT; in GetAddressByLocationNameV9()
704 replyList.push_back(GeoAddress::Unmarshalling(reply)); in GetAddressByLocationNameV9()
H A Dlocator_impl.cpp362 void LocatorImpl::GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinate()
399 void LocatorImpl::GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationName()
944 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByCoordinateV9()
980 std::list<std::shared_ptr<GeoAddress>>& replyList) in GetAddressByLocationNameV9()
H A Dcountry_code_manager.cpp187 std::list<std::shared_ptr<GeoAddress>> replyList; in GetCountryCodeByLocation()
/base/location/interfaces/inner_api/include/
H A Dgeo_address.h26 class GeoAddress : public Parcelable { class
28 GeoAddress();
29 ~GeoAddress() override = default;
31 static std::unique_ptr<GeoAddress> Unmarshalling(Parcel& parcel);
H A Dgeo_coding_mock_info.h36 std::shared_ptr<GeoAddress> GetGeoAddressInfo();
39 void SetGeoAddressInfo(std::shared_ptr<GeoAddress> geoAddress);
42 std::shared_ptr<GeoAddress> geoAddress_;
H A Di_geocode_callback.h34 virtual void OnResults(std::list<std::shared_ptr<GeoAddress>> &results) = 0;
H A Dlocator.h51 virtual void GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) = 0;
52 virtual void GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList) = 0;
86 std::list<std::shared_ptr<GeoAddress>>& replyList) = 0;
88 std::list<std::shared_ptr<GeoAddress>>& replyList) = 0;
H A Dlocator_impl.h197 void GetAddressByCoordinate(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList);
205 void GetAddressByLocationName(MessageParcel &data, std::list<std::shared_ptr<GeoAddress>>& replyList);
459 std::list<std::shared_ptr<GeoAddress>>& replyList);
469 std::list<std::shared_ptr<GeoAddress>>& replyList);
H A Dlocator_proxy.h97 std::list<std::shared_ptr<GeoAddress>>& replyList);
99 std::list<std::shared_ptr<GeoAddress>>& replyList);
H A Dlocation_async_context.h196 std::list<std::shared_ptr<GeoAddress>> replyList;
209 std::list<std::shared_ptr<GeoAddress>> replyList;
/base/location/frameworks/native/locator_sdk/include/
H A Dgeo_convert_callback_host.h31 void OnResults(std::list<std::shared_ptr<GeoAddress>> &results) override;
33 std::list<std::shared_ptr<GeoAddress>> GetResult();
36 std::list<std::shared_ptr<GeoAddress>> result_;
/base/location/test/location_common/include/
H A Dlocation_common_test.h33 void SetGeoAddress(std::unique_ptr<GeoAddress>& geoAddress);
34 void VerifyGeoAddressReadFromParcel(std::unique_ptr<GeoAddress>& geoAddress);
/base/location/test/location_geocode/mock/include/
H A Dmock_geo_convert_callback_host.h38 MOCK_METHOD(void, OnResults, (std::list<std::shared_ptr<GeoAddress>> &results));
/base/location/test/location_common/source/
H A Dlocation_common_test.cpp89 void LocationCommonTest::SetGeoAddress(std::unique_ptr<GeoAddress>& geoAddress) in SetGeoAddress()
117 void LocationCommonTest::VerifyGeoAddressReadFromParcel(std::unique_ptr<GeoAddress>& geoAddress) in VerifyGeoAddressReadFromParcel()
198 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F()
217 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F()
471 std::shared_ptr<GeoAddress> geoAddress = std::make_shared<GeoAddress>(); in HWTEST_F()
536 std::unique_ptr<GeoAddress> geoAddress = std::make_unique<GeoAddress>(); in HWTEST_F()
[all...]
/base/location/test/location_geocode/source/
H A Dgeo_convert_callback_host_test.cpp110 std::list<std::shared_ptr<GeoAddress>> results; in HWTEST_F()
/base/location/test/location_locator/source/
H A Dlocation_without_permission_test.cpp116 std::list<std::shared_ptr<GeoAddress>> geoAddressList001; in HWTEST_F()
119 std::list<std::shared_ptr<GeoAddress>> geoAddressList002; in HWTEST_F()
H A Dlocator_impl_test.cpp351 std::list<std::shared_ptr<GeoAddress>> geoAddressList001; in HWTEST_F()
380 std::list<std::shared_ptr<GeoAddress>> geoAddressList002; in HWTEST_F()
405 std::list<std::shared_ptr<GeoAddress>> geoAddressList003; in HWTEST_F()
/base/location/frameworks/cj/include/
H A Dgeolocationmanager_utils.h195 CJGeoAddressArr ListGeoAddressToCJGeoAddressArr(std::list<std::shared_ptr<Location::GeoAddress>>& replyList);
/base/location/frameworks/js/napi/include/
H A Dnapi_util.h47 std::list<std::shared_ptr<GeoAddress>>& replyList, napi_value& arrayResult);
/base/location/frameworks/cj/source/
H A Dgeolocationmanager_utils.cpp120 void HandleDescriptions(std::shared_ptr<Location::GeoAddress>& geoAddress, CJGeoAddress& eachObj) in HandleDescriptions()
135 CJGeoAddressArr ListGeoAddressToCJGeoAddressArr(std::list<std::shared_ptr<Location::GeoAddress>>& replyList) in ListGeoAddressToCJGeoAddressArr()
H A Dgeolocationmanager_impl.cpp325 std::list<std::shared_ptr<Location::GeoAddress>> replyList; in GetAddressesFromLocation()
355 std::list<std::shared_ptr<Location::GeoAddress>> replyList; in GetAddressesFromLocationName()
/base/location/frameworks/js/napi/source/
H A Dnapi_util.cpp177 std::list<std::shared_ptr<GeoAddress>>& replyList, napi_value& arrayResult) in GeoAddressesToJsObj()
532 const std::string& fieldStr, std::shared_ptr<GeoAddress> address) in GetGeoAddressInfo()
588 std::shared_ptr<GeoAddress> geoAddress = std::make_shared<GeoAddress>(); in JsObjToRevGeocodeMock()

Completed in 17 milliseconds

12