Home
last modified time | relevance | path

Searched refs:GetStringFormatById (Results 1 – 20 of 20) sorted by relevance

/ohos5.0/base/global/resource_management/frameworks/resmgr/test/unittest/common/
H A Dresource_manager_test_string.cpp253 RState state = rm->GetStringFormatById(outValue, id, 101);
268 RState state = rm->GetStringFormatById(outValue, NON_EXIST_ID, 101);
343 RState state = rm->GetStringFormatById(id, outValue, jsParams);
362 RState state = rm->GetStringFormatById(id, outValue, jsParams);
454 RState state = rm->GetStringFormatById(id, outValue, jsParams);
473 RState state = rm->GetStringFormatById(id, outValue, jsParams);
492 RState state = rm->GetStringFormatById(id, outValue, jsParams);
511 RState state = rm->GetStringFormatById(id, outValue, jsParams);
530 RState state = rm->GetStringFormatById(id, outValue, jsParams);
564 RState state = rm->GetStringFormatById(id, outValue, jsParams);
[all …]
H A Dresource_manager_test_common.cpp365 RState state = rm->GetStringFormatById(outValue, id, 101); // 101 means the format number in TestGetStringFormatById()
396 RState state = rm->GetStringFormatById(id, outValue, jsParams); in TestGetStringFormatById()
410 RState state = rm->GetStringFormatById(outValue, id, args); in TestGetStringFormatByIdWithVaArgs()
H A Dresource_manager_performance_test.cpp402 rm->GetStringFormatById(outValue, ids[i], 12);
/ohos5.0/base/global/resource_management/interfaces/inner_api/include/
H A Dresource_manager.h88 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, ...) = 0;
183 virtual RState GetStringFormatById(uint32_t id, std::string &outValue,
236 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, va_list args) = 0;
/ohos5.0/foundation/resourceschedule/background_task_mgr/services/test/unittest/mock/include/
H A Dmock_resource_manager_impl.h93 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, ...);
487 virtual RState GetStringFormatById(uint32_t id, std::string &outValue,
/ohos5.0/base/global/resource_management/frameworks/resmgr/include/
H A Dresource_manager_impl.h132 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, ...);
534 virtual RState GetStringFormatById(uint32_t id, std::string &outValue,
723 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, va_list args);
/ohos5.0/base/global/resource_management_lite/frameworks/resmgr_lite/include/
H A Dresource_manager.h41 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, ...) = 0;
H A Dresource_manager_impl.h77 virtual RState GetStringFormatById(std::string &outValue, uint32_t id, ...);
/ohos5.0/foundation/ability/ability_runtime/test/mock/frameworks_kits_ability_native_test/include/
H A Dmock_resourceManager_interface1.h44 virtual RState GetStringFormatById(std::string& outValue, uint32_t id, ...) = 0;
H A Dmock_resourceManager_interface1.cpp68 virtual RState GetStringFormatById(std::string& outValue, uint32_t id, ...) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerTestInstance
/ohos5.0/foundation/ability/ability_runtime/test/mock/frameworks_kits_appkit_native_test/include/
H A Dmock_resourceManager_interface1.h44 virtual RState GetStringFormatById(std::string& outValue, uint32_t id, ...) = 0;
H A Dmock_resourceManager_interface1.cpp68 virtual RState GetStringFormatById(std::string& outValue, uint32_t id, ...) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerTestInstance
/ohos5.0/foundation/resourceschedule/background_task_mgr/services/test/unittest/mock/
H A Dmock_resource_manager.cpp67 RState ResourceManagerImpl::GetStringFormatById(std::string &outValue, uint32_t id, ...) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerImpl
/ohos5.0/base/global/resource_management/frameworks/resmgr/src/
H A Dresource_manager_impl.cpp121 RState ResourceManagerImpl::GetStringFormatById(std::string &outValue, uint32_t id, ...) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerImpl
151 RState ResourceManagerImpl::GetStringFormatById(std::string &outValue, uint32_t id, va_list args) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerImpl
1543 RState ResourceManagerImpl::GetStringFormatById(uint32_t id, std::string &outValue, in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerImpl
H A Dnative_resource_manager.cpp685 RState state = mgr->resManager->GetStringFormatById(tempResultValue, resId, args); in OH_ResourceManager_GetString()
/ohos5.0/base/global/resource_management_lite/frameworks/resmgr_lite/test/unittest/lite/common/
H A Dresource_manager_test.cpp489 RState state = rm->GetStringFormatById(outValue, id, 101);
504 RState state = rm->GetStringFormatById(outValue, NON_EXIST_ID, 101);
H A Dresource_manager_performance_test.cpp395 rm->GetStringFormatById(outValue, ids[i], 12);
/ohos5.0/base/global/resource_management_lite/frameworks/resmgr_lite/src/
H A Dresource_manager_impl.cpp83 RState ResourceManagerImpl::GetStringFormatById(std::string &outValue, uint32_t id, ...) in GetStringFormatById() function in OHOS::Global::Resource::ResourceManagerImpl
/ohos5.0/base/global/resource_management/test/fuzztest/resmgr_fuzzer/
H A Dresmgr_fuzzer.cpp480 result = rm->GetStringFormatById(outValue, testId); in GetStringFormatByIdFuzzTest()
/ohos5.0/base/global/resource_management/interfaces/js/innerkits/core/src/
H A Dresource_manager_napi_sync_impl.cpp324 RState state = resMgr->GetStringFormatById(resId, dataContext->value_, dataContext->jsParams_); in ProcessStrResource()