17 std::vector<std::wstring> languages =
19 std::vector<LanguageInfo> language_info;
20 language_info.reserve(languages.size());
22 for (
auto language : languages) {
30 ULONG buffer_size = 0;
32 DWORD flags = MUI_LANGUAGE_NAME | MUI_UI_FALLBACK;
35 return std::wstring();
37 std::wstring
buffer(buffer_size,
'\0');
39 flags, &count,
buffer.data(), &buffer_size)) {
40 return std::wstring();
47 std::vector<std::wstring> languages;
61 if (language.empty()) {
64 languages.push_back(language);
66 start += language.size() + 1;
75 std::vector<std::string> components;
77 std::string component;
78 while (getline(stream, component,
'-')) {
79 if (component ==
"x") {
82 components.push_back(component);
87 if (components.size() == 3) {
88 info.
script = components[1];
89 info.
region = components[2];
90 }
else if (components.size() == 2) {
92 if (components[1].
size() == 4) {
93 info.
script = components[1];
95 info.
region = components[1];
104 const int kBufferSize = 100;
105 wchar_t buffer[kBufferSize];
106 if (::GetLocaleInfoEx(LOCALE_NAME_USER_DEFAULT, LOCALE_STIMEFORMAT,
buffer,
108 return std::wstring();
110 return std::wstring(
buffer, kBufferSize);
114 return time_format.find(L
"H") != std::wstring::npos;
virtual LRESULT GetThreadPreferredUILanguages(DWORD flags, PULONG count, PZZWSTR languages, PULONG length) const
std::wstring GetUserTimeFormat()
std::vector< std::wstring > GetPreferredLanguages(const WindowsProcTable &windows_proc_table)
it will be possible to load the file into Perfetto s trace viewer use test Running tests that layout and measure text will not yield consistent results across various platforms Enabling this option will make font resolution default to the Ahem test font on all disable asset Prevents usage of any non test fonts unless they were explicitly Loaded via prefetched default font Indicates whether the embedding started a prefetch of the default font manager before creating the engine run In non interactive keep the shell running after the Dart script has completed enable serial On low power devices with low core running concurrent GC tasks on threads can cause them to contend with the UI thread which could potentially lead to jank This option turns off all concurrent GC activities domain network JSON encoded network policy per domain This overrides the DisallowInsecureConnections switch Embedder can specify whether to allow or disallow insecure connections at a domain level old gen heap size
std::wstring GetPreferredLanguagesFromMUI(const WindowsProcTable &windows_proc_table)
std::vector< LanguageInfo > GetPreferredLanguageInfo()
LanguageInfo ParseLanguageName(std::wstring language_name)
bool Prefer24HourTime(std::wstring time_format)
DEF_SWITCHES_START aot vmservice shared library Name of the *so containing AOT compiled Dart assets for launching the service isolate vm snapshot The VM snapshot data that will be memory mapped as read only SnapshotAssetPath must be present isolate snapshot The isolate snapshot data that will be memory mapped as read only SnapshotAssetPath must be present cache dir Path to the cache directory This is different from the persistent_cache_path in embedder which is used for Skia shader cache icu native lib Path to the library file that exports the ICU data vm service The hostname IP address on which the Dart VM Service should be served If not defaults to or::depending on whether ipv6 is specified disable vm Disable the Dart VM Service The Dart VM Service is never available in release mode Bind to the IPv6 localhost address for the Dart VM Service Ignored if vm service host is set profile Make the profiler discard new samples once the profiler sample buffer is full When this flag is not the profiler sample buffer is used as a ring buffer
std::string WideStringToUtf8(const std::wstring_view str)