/base/global/resource_management/interfaces/cj/src/ |
H A D | resource_manager_interface.h | 65 virtual void GetLocales(bool includeSystem, std::vector<std::string> &outValue) = 0;
|
H A D | resource_manager_impl.h | 99 void GetLocales(bool includeSystem, std::vector<std::string> &outValue) override;
|
H A D | resource_manager_impl.cpp | 454 void ResourceManagerImpl::GetLocales(bool includeSystem, std::vector<std::string> &outValue) in GetLocales() function in OHOS::Resource::ResourceManagerImpl 456 return resMgr_->GetLocales(outValue, includeSystem); in GetLocales()
|
H A D | resource_manager_ffi.cpp | 728 instance->GetLocales(includeSystem, value); in CJ_GetLocales()
|
/base/global/resource_management/frameworks/resmgr/include/ |
H A D | hap_resource.h | 326 void GetLocales(std::set<std::string> &outValue, bool includeSystem);
|
H A D | hap_manager.h | 363 void GetLocales(std::vector<std::string> &outValue, bool includeSystem = false);
|
H A D | resource_manager_impl.h | 616 virtual void GetLocales(std::vector<std::string> &outValue, bool includeSystem = false);
|
/base/global/resource_management/frameworks/resmgr/test/unittest/common/ |
H A D | resource_manager_test_hap.cpp | 1184 * @tc.desc: Test GetLocales function 1192 rm->GetLocales(outValue); in HWTEST_F() 1198 * @tc.desc: Test GetLocales function 1206 rm->GetLocales(outValue, false); in HWTEST_F() 1212 * @tc.desc: Test GetLocales function 1220 rm->GetLocales(outValue, true); in HWTEST_F()
|
/base/global/resource_management/interfaces/js/innerkits/core/src/ |
H A D | resource_manager_addon.cpp | 176 DECLARE_NAPI_FUNCTION("getLocales", GetLocales), 502 napi_value ResourceManagerAddon::GetLocales(napi_env env, napi_callback_info info) in GetLocales() function in OHOS::Global::Resource::ResourceManagerAddon 504 return AddonGetResource(env, info, "GetLocales", FunctionType::SYNC); in GetLocales()
|
H A D | resource_manager_napi_sync_impl.cpp | 92 {"GetLocales", [](napi_env& env, napi_callback_info& info) -> napi_value { 93 return ResourceManagerNapiSyncImpl::GetLocales(env, info);}}, 1233 napi_value ResourceManagerNapiSyncImpl::GetLocales(napi_env env, napi_callback_info info) in GetLocales() function in OHOS::Global::Resource::ResourceManagerNapiSyncImpl 1245 dataContext->addon_->GetResMgr()->GetLocales(dataContext->arrayValue_, dataContext->bValue_); in GetLocales()
|
/base/global/resource_management/interfaces/js/innerkits/core/include/ |
H A D | resource_manager_addon.h | 195 static napi_value GetLocales(napi_env env, napi_callback_info info);
|
H A D | resource_manager_napi_sync_impl.h | 95 static napi_value GetLocales(napi_env env, napi_callback_info info);
|
/base/global/resource_management/interfaces/inner_api/include/ |
H A D | resource_manager.h | 199 virtual void GetLocales(std::vector<std::string> &outValue, bool includeSystem = false) = 0;
|
/base/global/resource_management/frameworks/resmgr/src/ |
H A D | hap_resource.cpp | 490 void HapResource::GetLocales(std::set<std::string> &outValue, bool includeSystem) in GetLocales() function in OHOS::Global::Resource::HapResource
|
H A D | native_resource_manager.cpp | 385 mgr->resManager->GetLocales(tempResultValue, includeSystem);
in OH_ResourceManager_GetLocalesData() 386 return copyStringArray(resultValue, resultLen, tempResultValue, "GetLocales");
in OH_ResourceManager_GetLocalesData()
|
H A D | resource_manager_impl.cpp | 1626 void ResourceManagerImpl::GetLocales(std::vector<std::string> &outValue, bool includeSystem) in GetLocales() function in OHOS::Global::Resource::ResourceManagerImpl 1628 hapManager_->GetLocales(outValue, includeSystem); in GetLocales()
|
H A D | hap_manager.cpp | 1167 void HapManager::GetLocales(std::vector<std::string> &outValue, bool includeSystem) in GetLocales() function in OHOS::Global::Resource::HapManager 1175 hapResources_[i]->GetLocales(result, includeSystem); in GetLocales()
|