Home
last modified time | relevance | path

Searched refs:script (Results 1 – 25 of 102) sorted by relevance

12345

/base/update/updater/test/unittest/script/
DBUILD.gn37 "${updater_path}/services/script/script_instruction/script_basicinstruction.cpp",
38 "${updater_path}/services/script/script_instruction/script_instructionhelper.cpp",
39 "${updater_path}/services/script/script_instruction/script_loadscript.cpp",
40 "${updater_path}/services/script/script_instruction/script_registercmd.cpp",
41 "${updater_path}/services/script/script_instruction/script_updateprocesser.cpp",
42 "${updater_path}/services/script/script_interpreter/script_context.cpp",
43 "${updater_path}/services/script/script_interpreter/script_expression.cpp",
44 "${updater_path}/services/script/script_interpreter/script_function.cpp",
45 "${updater_path}/services/script/script_interpreter/script_interpreter.cpp",
46 "${updater_path}/services/script/script_interpreter/script_param.cpp",
[all …]
/base/update/updater/services/script/
DBUILD.gn22 script = "${updater_path}/services/script/generate_yacc.py"
23 inputs = [ script ]
47 "${updater_path}/services/include/script",
64 "${updater_path}/services/include/script",
65 "${updater_path}/services/script/script_instruction",
66 "${updater_path}/services/script/script_interpreter",
67 "${updater_path}/services/script/script_manager",
68 "${updater_path}/services/script/threadpool",
73 sources = [ "${updater_path}/services/script/threadpool/threadpool.cpp" ]
80 "${updater_path}/services/include/script",
[all …]
/base/global/i18n_lite/frameworks/i18n/src/
Dlocale_info.cpp41 script = NewArrayAndCopy(newScript, scriptLength); in Init()
61 if ((script != nullptr) && (LenCharArray(script) > 0)) { in InitIdstr()
62 idStr = idStr + "-" + script; in InitIdstr()
106 Init(o.language, o.script, o.region, status); in LocaleInfo()
120 I18nFree(static_cast<void *>(script)); in FreeResource()
132 ret = CompareLocaleItem(script, other.script); in operator ==()
149 if (o.script != nullptr) { in operator =()
150 script = NewArrayAndCopy(o.script, strlen(o.script)); in operator =()
171 return script; in GetScript()
245 if ((script != nullptr) && (LenCharArray(script) > 0)) { in GetMask()
[all …]
/base/update/updater/test/unittest/
DBUILD.gn96 "${updater_path}/services/script/script_instruction/script_basicinstruction.cpp",
97 "${updater_path}/services/script/script_instruction/script_instructionhelper.cpp",
98 "${updater_path}/services/script/script_instruction/script_loadscript.cpp",
99 "${updater_path}/services/script/script_instruction/script_registercmd.cpp",
100 "${updater_path}/services/script/script_instruction/script_updateprocesser.cpp",
101 "${updater_path}/services/script/script_interpreter/script_context.cpp",
102 "${updater_path}/services/script/script_interpreter/script_expression.cpp",
103 "${updater_path}/services/script/script_interpreter/script_function.cpp",
104 "${updater_path}/services/script/script_interpreter/script_interpreter.cpp",
105 "${updater_path}/services/script/script_interpreter/script_param.cpp",
[all …]
/base/global/resource_management/frameworks/resmgr/test/unittest/common/
Dtest_common.cpp72 ResConfig *CreateResConfig(const char *language, const char *script, const char *region) in CreateResConfig() argument
78 resConfig->SetLocaleInfo(language, script, region); in CreateResConfig()
82 Locale GetLocale(const char *language, const char *script, const char *region) in GetLocale() argument
86 .setRegion(region).setScript(script).build(errCode); in GetLocale()
Dtest_common.h47 ResConfig *CreateResConfig(const char *language, const char *script, const char *region);
49 Locale GetLocale(const char *language, const char *script, const char *region);
/base/global/resource_management_lite/frameworks/resmgr_lite/src/utils/
Dutils.cpp111 const char *script, in EncodeLocale() argument
115 uint32_t scriptData = Utils::EncodeScript(script); in EncodeLocale()
167 uint32_t Utils::EncodeScript(const char *script) in EncodeScript() argument
169 if (Utils::IsStrEmpty(script)) { in EncodeScript()
172 …return ((uint8_t)script[0] << 24) | ((uint8_t)script[1] << 16) | ((uint8_t)script[2] << 8) | (uint… in EncodeScript()
/base/update/updater/test/fuzztest/scriptmanager_fuzzer/
DBUILD.gn40 "${updater_path}/services/include/script",
41 "${updater_path}/services/script/threadpool",
42 "${updater_path}/services/script/script_manager",
43 "${updater_path}/services/script/script_instruction",
44 "${updater_path}/test/unittest/script",
56 "${updater_path}/services/script:libupdaterscript",
/base/global/resource_management_lite/frameworks/resmgr_lite/src/
Dres_locale.cpp85 RState ResLocale::SetScript(const char *script, size_t len) in SetScript() argument
101 *(temp + i) = toupper(*(script + i)); in SetScript()
103 *(temp + i) = tolower(*(script + i)); in SetScript()
111 RState ResLocale::Init(const char *language, size_t languageLen, const char *script, size_t scriptL… in Init() argument
118 r = this->SetScript(script, scriptLen); in Init()
271 const char *script, in BuildFromParts() argument
295 len = Utils::StrLen(script); in BuildFromParts()
297 if (LocaleMatcher::IsScriptTag(script, len)) { in BuildFromParts()
298 tempScript = script; in BuildFromParts()
381 LocaleInfo *BuildFromParts(const char *language, const char *script, const char *region, RState &rS… in BuildFromParts() argument
[all …]
Dres_config_impl.cpp39 const char *script, in SetLocaleInfo() argument
51 ResLocale::BuildFromParts(language, script, region, state); in SetLocaleInfo()
54 if (script == nullptr || script[0] == '\0') { in SetLocaleInfo()
Dglobal.c89 char script[MAX_SCRIPT_LENGTH] = { 0 }; in GLOBAL_IsRTL() local
90 if (strncpy_s(script, MAX_SCRIPT_LENGTH, localeArray[1], MAX_SCRIPT_LENGTH - 1) != EOK) { in GLOBAL_IsRTL()
94 if ((strlen(script) == MAX_SCRIPT_LENGTH - 1) && in GLOBAL_IsRTL()
95 (strcmp(script, "Arab") != 0) && (strcmp(script, "Hebr") != 0)) { in GLOBAL_IsRTL()
/base/update/updater/test/fuzztest/extractandexecutescript_fuzzer/
DBUILD.gn41 "${updater_path}/services/include/script",
42 "${updater_path}/services/script/threadpool",
43 "${updater_path}/services/script/script_manager",
44 "${updater_path}/services/script/script_instruction",
56 "${updater_path}/services/script:libupdaterscript",
/base/global/resource_management/frameworks/resmgr/src/
Dres_locale.cpp89 RState ResLocale::SetScript(const char *script, size_t len) in SetScript() argument
105 *(temp + i) = toupper(*(script + i)); in SetScript()
107 *(temp + i) = tolower(*(script + i)); in SetScript()
115 RState ResLocale::Init(const char *language, size_t languageLen, const char *script, size_t scriptL… in Init() argument
122 r = this->SetScript(script, scriptLen); in Init()
276 ResLocale *ResLocale::BuildFromParts(const char *language, const char *script, const char *region, … in BuildFromParts() argument
297 len = Utils::StrLen(script); in BuildFromParts()
299 if (!LocaleMatcher::IsScriptTag(script, len)) { in BuildFromParts()
303 tempScript = script; in BuildFromParts()
387 Locale *BuildFromParts(const char *language, const char *script, const char *region, RState &rState) in BuildFromParts() argument
[all …]
/base/global/resource_management_lite/frameworks/resmgr_lite/include/
Dres_locale.h83 …static ResLocale *BuildFromParts(const char *language, const char *script, const char *region, RSt…
100 RState SetScript(const char *script, size_t len);
108 RState Init(const char *language, size_t languageLen, const char *script, size_t scriptLen,
Dres_config.h29 virtual RState SetLocaleInfo(const char *language, const char *script, const char *region) = 0;
60 LocaleInfo *BuildFromParts(const char *language, const char *script, const char *region, RState &rS…
/base/update/updater/services/applypatch/
DBUILD.gn37 "${updater_path}/services/script/script_manager",
38 "${updater_path}/services/script/threadpool",
41 "${updater_path}/services/include/script",
52 "${updater_path}/services/script:libthreadpool",
/base/update/updater/test/unittest/updater_binary/
DBUILD.gn43 "${updater_path}/services/include/script",
50 "${updater_path}/services/script/script_manager",
51 "${updater_path}/services/script/script_interpreter",
53 "${updater_path}/test/unittest/script",
66 "${updater_path}/services/script:libupdaterscript",
/base/global/resource_management/frameworks/resmgr/include/
Dres_locale.h89 …static ResLocale *BuildFromParts(const char *language, const char *script, const char *region, RSt…
106 RState SetScript(const char *script, size_t len);
114 RState Init(const char *language, size_t languageLen, const char *script, size_t scriptLen,
/base/useriam/face_auth/ui/Settings_FaceAuth/
Dhvigorw17 # Hvigor startup script, version 1.0.0
43 # Determine node to start hvigor wrapper script
54 # Check hvigor wrapper script
59 # start hvigor-wrapper script
/base/global/i18n_lite/interfaces/kits/i18n/include/
Dlocale_info.h63 LocaleInfo(const char *lang, const char *script, const char *region);
205 char *script = nullptr; variable
212 void Init(const char *lang, const char *script, const char *region, int &status);
/base/global/resource_management_lite/frameworks/resmgr_lite/include/utils/
Dutils.h39 static uint32_t EncodeScript(const char *script);
50 const char *script,
/base/global/resource_management/frameworks/resmgr/src/utils/
Dutils.cpp222 const char *script, in EncodeLocale() argument
226 uint32_t scriptData = Utils::EncodeScript(script); in EncodeLocale()
278 uint32_t Utils::EncodeScript(const char *script) in EncodeScript() argument
280 if (Utils::IsStrEmpty(script)) { in EncodeScript()
283 …return ((uint8_t)script[0] << 24) | ((uint8_t)script[1] << 16) | ((uint8_t)script[2] << 8) | (uint… in EncodeScript()
/base/global/resource_management_lite/frameworks/resmgr_lite/test/unittest/lite/common/
Dtest_common.cpp69 ResConfig *CreateResConfig(const char *language, const char *script, const char *region) in CreateResConfig() argument
75 resConfig->SetLocaleInfo(language, script, region); in CreateResConfig()
/base/update/updater/
DBUILD.gn47 "test/unittest/script:script_unittest",
48 "test/unittest/script:user_instruction",
49 "test/unittest/script:user_instruction_invalid",
/base/global/resource_management/interfaces/inner_api/include/
Dres_config.h32 virtual RState SetLocaleInfo(const char *language, const char *script, const char *region) = 0;
92 EXPORT_FUNC Locale *BuildFromParts(const char *language, const char *script, const char *region, RS…

12345