Home
last modified time | relevance | path

Searched refs:script (Results 1 - 25 of 48) sorted by relevance

12

/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dace_application_info.cpp53 auto script = Localization::ComputeScript(language, countryOrRegion); in ChangeLocale() local
54 resConfig->SetLocaleInfo(languageLower.c_str(), script.c_str(), countryOrRegionUpper.c_str()); in ChangeLocale()
57 SetLocale(languageLower, countryOrRegionUpper, (script.empty()) ? "" : script, ""); in ChangeLocale()
61 const std::string& script, const std::string& keywordsAndValues) in SetLocale()
65 script_ = script; in SetLocale()
81 Localization::SetLocale(language_, countryOrRegion_, script, languageList.front(), keywordsAndValues_); in SetLocale()
84 Localization::SetLocale(language_, countryOrRegion_, script, selectLanguage.front(), keywordsAndValues_); in SetLocale()
60 SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script, const std::string& keywordsAndValues) SetLocale() argument
H A Dace_application_info.h38 void SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script,
/foundation/arkui/ace_engine/adapter/preview/entrance/
H A Dace_application_info.cpp53 auto script = Localization::ComputeScript(language, countryOrRegion); in ChangeLocale() local
54 resConfig->SetLocaleInfo(languageLower.c_str(), script.c_str(), countryOrRegionUpper.c_str()); in ChangeLocale()
57 SetLocale(languageLower, countryOrRegionUpper, (script.empty()) ? "" : script, ""); in ChangeLocale()
61 const std::string& script, const std::string& keywordsAndValues) in SetLocale()
65 script_ = (!script.empty()) ? script : Localization::ComputeScript(language, countryOrRegion); in SetLocale()
60 SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script, const std::string& keywordsAndValues) SetLocale() argument
H A Dace_application_info.h29 void SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script,
H A Dace_run_args.h82 std::string script = ""; member
H A Dace_ability.h61 std::string script = ""; member
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/state_mgmt/
H A Dbuild.py31 script = "build"
33 script = "build_release"
35 subprocess.call(["npm", "run", script])
/foundation/arkui/ace_engine/test/component_test/tools/previewer_host/main/
H A Dcollect_results_and_visualize.js227 <script src="https://cdn.staticfile.org/echarts/4.3.0/echarts.min.js"></script>
228 <script>
257 </script>
259 <script>
267 </script>
281 <script>
309 </script>
/foundation/arkui/ace_engine/frameworks/base/resource/
H A Dace_res_config.h37 AceResConfig(const std::string& language, const std::string& script, const std::string& region) in AceResConfig() argument
38 : language_(language), script_(script), region_(region) in AceResConfig()
47 AceResConfig(const std::string& language, const std::string& script, const std::string& region, in AceResConfig() argument
50 : language_(language), script_(script), region_(region), screenLong_(screenLong), screenShape_(screenShape), in AceResConfig()
H A Dace_res_config.cpp43 std::string language, script, region; in ConvertLocaleTagToConfig() local
44 Localization::ParseLocaleTag(localeTag, language, script, region, false); in ConvertLocaleTagToConfig()
45 return AceResConfig(language, script, region); in ConvertLocaleTagToConfig()
267 std::string language, script, region; in IsOnBacktrackingPath() local
268 Localization::ParseLocaleTag(backtrackPath[backtrackPath.size() - 1], language, script, region, true); in IsOnBacktrackingPath()
284 // Candidates' language and script are equal with the device's after being filtered MatchLocaleConfig(). in IsLocaleConfigMoreSpecified()
742 std::string language, script, region; in GetCurrentDeviceDeclarativeResTag() local
743 Localization::ParseLocaleTag(localeTag, language, script, region, false); in GetCurrentDeviceDeclarativeResTag()
749 deviceResConfig = AceResConfig(language, script, region, longScreenType, SystemProperties::GetScreenShape(), in GetCurrentDeviceDeclarativeResTag()
999 std::string language, script, regio in ConvertDeclarativeResTagToConfig() local
1017 std::string language, script, region; ConvertDeclarativeResTagToConfig() local
[all...]
/foundation/arkui/ui_lite/frameworks/font/
H A Dui_multi_font_manager.h41 bool IsNeedShaping(const char* text, uint8_t& ttfId, uint32_t& script);
42 uint16_t GetShapingFontId(const char* text, uint16_t fontId, uint8_t& ttfId, uint32_t& script);
H A Dui_multi_font_manager.cpp162 bool UIMultiFontManager::IsNeedShaping(const char *text, uint8_t &ttfId, uint32_t &script) in IsNeedShaping() argument
173 script = GetScriptByTtfId(ttfId); in IsNeedShaping()
181 uint16_t UIMultiFontManager::GetShapingFontId(const char* text, uint16_t fontId, uint8_t& ttfId, uint32_t& script) in GetShapingFontId() argument
190 if (!IsNeedShaping(text, ttfId, script)) { in GetShapingFontId()
210 script = GetScriptByTtfId(ttfId); in GetShapingFontId()
/foundation/arkui/ace_engine/frameworks/base/i18n/
H A Dlocalization.h76 static void SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script,
81 static void ParseLocaleTag(const std::string& languageTag, std::string& language, std::string& script,
272 void SetLocaleImpl(const std::string& language, const std::string& countryOrRegion, const std::string& script,
H A Dlocalization.cpp180 const std::string& script, const std::string& selectLanguage, const std::string& keywordsAndValues) in SetLocaleImpl()
200 if (!script.empty()) { in SetLocaleImpl()
201 languageTag_.append("-").append(script); in SetLocaleImpl()
970 void Localization::SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script, in SetLocale() argument
977 instance_->HandleOnMymrChange(script == "Qaag"); in SetLocale()
994 instance->SetLocaleImpl(language, countryOrRegion, script, selectLanguage, keywordsAndValues); in SetLocale()
1009 const std::string& localeTag, std::string& language, std::string& script, std::string& region, bool needAddSubtags) in ParseLocaleTag()
1020 script = locale.getScript(); in ParseLocaleTag()
179 SetLocaleImpl(const std::string& language, const std::string& countryOrRegion, const std::string& script, const std::string& selectLanguage, const std::string& keywordsAndValues) SetLocaleImpl() argument
1008 ParseLocaleTag( const std::string& localeTag, std::string& language, std::string& script, std::string& region, bool needAddSubtags) ParseLocaleTag() argument
/foundation/arkui/ace_engine/test/mock/adapter/
H A Dmock_ace_application_info.cpp20 void SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script,
/foundation/arkui/ace_engine/test/unittest/core/pattern/time_picker/
H A Dtime_picker_order_test_ng.cpp161 const std::string script = "Hans"; in HWTEST_F() local
225 const std::string script = "Latn"; in HWTEST_F() local
289 const std::string script = ""; in HWTEST_F() local
353 const std::string script = ""; in HWTEST_F() local
417 const std::string script = ""; in HWTEST_F() local
481 const std::string script = ""; in HWTEST_F() local
545 const std::string script = ""; in HWTEST_F() local
609 const std::string script = ""; in HWTEST_F() local
673 const std::string script = "Hans"; in HWTEST_F() local
738 const std::string script in HWTEST_F() local
807 const std::string script = ""; HWTEST_F() local
876 const std::string script = ""; HWTEST_F() local
945 const std::string script = ""; HWTEST_F() local
1014 const std::string script = ""; HWTEST_F() local
1083 const std::string script = ""; HWTEST_F() local
1152 const std::string script = ""; HWTEST_F() local
1221 const std::string script = ""; HWTEST_F() local
1286 const std::string script = ""; HWTEST_F() local
1351 const std::string script = "Hans"; HWTEST_F() local
1418 const std::string script = "Latn"; HWTEST_F() local
1485 const std::string script = "Hans"; HWTEST_F() local
1552 const std::string script = "Hans"; HWTEST_F() local
1616 const std::string script = "Latn"; HWTEST_F() local
1680 const std::string script = ""; HWTEST_F() local
1744 const std::string script = ""; HWTEST_F() local
1808 const std::string script = ""; HWTEST_F() local
1872 const std::string script = ""; HWTEST_F() local
[all...]
/foundation/arkui/napi/test/unittest/jsvm/
H A Dtest_jsvm.cpp299 JSVM_Script script = nullptr; in HWTEST_F() local
300 JSVM_CALL(OH_JSVM_CompileScript(env, jsSrc, nullptr, 0, true, nullptr, &script)); in HWTEST_F()
301 JSVM_CALL(OH_JSVM_CreateCodeCache(env, script, dataPtr, lengthPtr)); in HWTEST_F()
486 JSVM_Script script; in HWTEST_F() local
495 JSVM_CALL(OH_JSVM_CompileScriptWithOrigin(env, jsSrc, nullptr, 0, true, nullptr, &origin, &script)); in HWTEST_F()
503 JSVM_Script script; in HWTEST_F() local
512 JSVM_Status status = OH_JSVM_CompileScriptWithOrigin(env, jsSrc, nullptr, 0, true, nullptr, &origin, &script); in HWTEST_F()
/foundation/arkui/ui_lite/test/unittest/font/
H A Dui_font_unit_test.cpp231 uint32_t script = 0; in HWTEST_F() local
232 uint16_t fontId = UIFont::GetInstance()->GetShapingFontId("", ttfId, script, FONT_ID, 0); in HWTEST_F()
/foundation/arkui/ace_engine/test/mock/core/common/
H A Dmock_ace_application_info.cpp20 void SetLocale(const std::string& language, const std::string& countryOrRegion, const std::string& script,
/foundation/arkui/ui_lite/interfaces/kits/font/
H A Dui_font.h30 * @param script shaping script
35 uint16_t GetShapingFontId(char* text, uint8_t& ttfId, uint32_t& script, uint16_t fontId, uint8_t size) const in GetShapingFontId() argument
37 return instance_->GetShapingFontId(text, ttfId, script, fontId, size); in GetShapingFontId()
/foundation/communication/wifi/wifi/application/wifi_direct_demo/
H A Dgradlew.bat19 @rem Gradle startup script for Windows
34 @rem Add default JVM options here. You can also use JAVA_OPTS and GRADLE_OPTS to pass JVM options to this script.
/foundation/ability/ability_runtime/frameworks/simulator/common/include/
H A Doptions.h83 std::string script; member
/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_localization.cpp28 const std::string& script, const std::string& selectLanguage, const std::string& keywordsAndValues) in SetLocaleImpl()
27 SetLocaleImpl(const std::string& language, const std::string& countryOrRegion, const std::string& script, const std::string& selectLanguage, const std::string& keywordsAndValues) SetLocaleImpl() argument
/foundation/arkui/ui_lite/interfaces/innerkits/font/
H A Dui_font_bitmap.h33 GetShapingFontId(char* text, uint8_t& ttfId, uint32_t& script, uint16_t fontId, uint8_t size) const override;
/foundation/multimedia/camera_framework/frameworks/js/camera_napi/demo/
H A Dhvigorw.bat4 @rem Hvigor startup script for Windows

Completed in 15 milliseconds

12