/third_party/gstreamer/gstplugins_base/gst-libs/gst/tag/ |
D | lang-tables.dat | 26 /* Afro-Asiatic languages */ 36 /* Algonquian languages */ 44 /* Apache languages */ 52 /* Artificial languages */ 58 /* Athapascan languages */ 60 /* Australian languages */ 64 /* Banda languages */ 66 /* Bamileke languages */ 74 /* Baltic languages */ 80 /* Berber languages */ [all …]
|
D | mklangtables.c | 44 static GArray *languages = NULL; variable 53 g_assert (languages != NULL); in dump_languages() 76 for (i = 0, num_escaped = 0; i < languages->len; ++i) { in dump_languages() 77 IsoLang *lang = &g_array_index (languages, IsoLang, i); in dump_languages() 172 g_array_append_val (languages, lang); in xml_start_element() 221 languages = g_array_new (FALSE, TRUE, sizeof (IsoLang)); in main() 225 g_array_sort (languages, (GCompareFunc) languages_sort_func); in main() 229 g_array_free (languages, TRUE); in main()
|
/third_party/gettext/gettext-runtime/intl/ |
D | langprefs.c | 99 char *languages = in _nl_language_preferences_win32_mui() local 101 if (languages != NULL) in _nl_language_preferences_win32_mui() 104 char *q = languages; in _nl_language_preferences_win32_mui() 135 if (q > languages) in _nl_language_preferences_win32_mui() 138 return languages; in _nl_language_preferences_win32_mui() 140 free (languages); in _nl_language_preferences_win32_mui() 220 const char *languages = NULL; in _nl_language_preferences_win32_system() local 224 ret_first_language, (LONG_PTR)&languages); in _nl_language_preferences_win32_system() 225 return languages; in _nl_language_preferences_win32_system() 315 char *languages = (char *) malloc (size); in _nl_language_preferences_default() local [all …]
|
/third_party/gettext/gettext-tools/doc/ |
D | ISO_639-2 | 11 F = Family of languages 28 alg Algonquian languages F 32 apa Apache languages F 39 ath Athapascan languages F 40 aus Australian languages F 42 bad Banda languages F 1100000 Central African Republic, D… 43 bai Bamileke languages F 57 btk Batak languages (Indonesia) F 6230000 Indonesia 76 cmc Chamic languages F 87 day Land Dayak languages F Malaysia, Indonesia [all …]
|
/third_party/grpc/tools/run_tests/ |
D | run_tests_matrix.py | 119 def _generate_jobs(languages, argument 131 for language in languages: 175 test_jobs += _generate_jobs(languages=['sanity'], 184 test_jobs += _generate_jobs(languages=['php7'], 194 languages=['c'], 204 test_jobs += _generate_jobs(languages=['csharp'], 212 test_jobs += _generate_jobs(languages=['csharp'], 222 test_jobs += _generate_jobs(languages=['python'], 233 languages=['c++'], 242 test_jobs += _generate_jobs(languages=['grpc-node', 'ruby', 'php'], [all …]
|
D | run_performance_tests.py | 191 def archive_repo(languages): argument 194 if 'java' in languages: 196 if 'go' in languages: 198 if 'node' in languages or 'node_purejs' in languages: 255 languages=scenario_config.LANGUAGES.keys(), argument 267 languages, 285 languages, 300 def create_qpsworkers(languages, worker_hosts, perf_cmd=None): argument 319 for language in languages 346 def create_scenarios(languages, argument [all …]
|
/third_party/libphonenumber/cpp/src/phonenumbers/geocoding/ |
D | mapping_file_provider.cc | 75 bool HasLanguage(const CountryLanguages* languages, const string& language) { in HasLanguage() argument 76 const char** const start = languages->available_languages; in HasLanguage() 77 const char** const end = start + languages->available_languages_size; in HasLanguage() 127 const CountryLanguages* languages, const string& language, in FindBestMatchingLanguageCode() argument 134 if (HasLanguage(languages, normalized_locale_str)) { in FindBestMatchingLanguageCode() 140 if (HasLanguage(languages, full_locale)) { in FindBestMatchingLanguageCode() 146 if (HasLanguage(languages, language)) { in FindBestMatchingLanguageCode() 154 if (HasLanguage(languages, lang_with_script)) { in FindBestMatchingLanguageCode() 163 if (HasLanguage(languages, lang_with_region)) { in FindBestMatchingLanguageCode() 167 if (HasLanguage(languages, language)) { in FindBestMatchingLanguageCode()
|
/third_party/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/ |
D | LanguageData.java | 59 private Record[] languages = field in LanguageData 142 private int maxLanguage = minLanguage + languages.length - 1; 160 return languages[value - minLanguage].tag(); in getTag() 169 return languages[value - minLanguage].label(); in getTagLabel() 178 return languages[value - minLanguage].makeTag(); in makeTag() 186 return languages[value - minLanguage].name(); in getName()
|
/third_party/glib/glib/ |
D | gcharset.c | 639 gchar *languages; member 647 g_free (cache->languages); in language_names_cache_free() 704 const gchar *languages; in g_get_language_names_with_category() local 716 languages = guess_category_value (category_name); in g_get_language_names_with_category() 717 if (!languages) in g_get_language_names_with_category() 718 languages = "C"; in g_get_language_names_with_category() 721 if (!(name_cache && name_cache->languages && in g_get_language_names_with_category() 722 strcmp (name_cache->languages, languages) == 0)) in g_get_language_names_with_category() 731 alist = g_strsplit (languages, ":", 0); in g_get_language_names_with_category() 739 name_cache->languages = g_strdup (languages); in g_get_language_names_with_category()
|
/third_party/libphonenumber/cpp/test/phonenumbers/geocoding/ |
D | geocoding_data_test.cc | 40 void TestCountryLanguages(const CountryLanguages* languages) { in TestCountryLanguages() argument 41 EXPECT_GT(languages->available_languages_size, 0); in TestCountryLanguages() 42 for (int i = 0; i < languages->available_languages_size; ++i) { in TestCountryLanguages() 43 string language(languages->available_languages[i]); in TestCountryLanguages() 46 EXPECT_LT(string(languages->available_languages[i - 1]), in TestCountryLanguages()
|
/third_party/flatbuffers/.travis/ |
D | build-and-run-docker-test-containers.sh | 28 for f in $(ls tests/docker/languages | sort) 31 REQUIRED_BASE_IMAGE=$(cat tests/docker/languages/${f} | head -n 1 | awk ' { print $2 } ') 43 docker build -t $(echo ${f} | cut -f 3- -d .) -f tests/docker/languages/${f} .
|
/third_party/grpc/examples/ |
D | README.md | 14 For a complete list of supported languages, see [Supported languages and 21 [lang]: https://grpc.io/docs/languages/
|
/third_party/flutter/engine/flutter/third_party/txt/src/minikin/ |
D | FontLanguageListCache.cpp | 122 uint32_t FontLanguageListCache::getId(const std::string& languages) { in getId() argument 125 inst->mLanguageListLookupTable.find(languages); in getId() 133 FontLanguages fontLanguages(parseLanguageList(languages)); in getId() 138 inst->mLanguageListLookupTable.insert(std::make_pair(languages, nextId)); in getId()
|
/third_party/protobuf/ |
D | generate_changelog.py | 13 languages = [ variable 57 for language in languages:
|
/third_party/grpc/doc/ |
D | versioning.md | 11 …hedule, so we can't guarantee there will always be new features in each of the supported languages. 18 - implementation is tested for interoperability with other languages 24 …languages try to stay synchronized in terms of major and minor version (all languages follow the s… 43 - Because other languages do so. This is not a good enough reason because 44 …Having some languages at different major version seems to be unavoidable anyway (due to forced ver…
|
D | grpc_release_schedule.md | 3 …s) and [Core](https://github.com/grpc/grpc/releases) and its dependent languages C++, C#, Objecti… 5 …kip a release altogether and do the next release to catch up with other languages. See the past re… 7 …ease. An RC (release candidate) is published for Core and its dependent languages just after the b…
|
/third_party/selinux/secilc/docs/ |
D | cil_introduction.md | 4 …signed to be a language that sits between one or more high level policy languages (such as the cur… 6 * Enables the creation of multiple high-level languages that can both consume and produce language … 8 * Eases the creation of high-level languages, encouraging the creation of more domain specific poli… 10 …cy analysis, allowing the analysis of the output of multiple high-level languages using a single a… 19 …sing when there is a conflict as humans should be reading and writing high-level languages instead. 36 …re currently difficult or impossible to achieve with the current policy languages and tools. While… 55 …e, like the existing policy languages, is declarative. It removes all of the ordering constraints … 59 … it is important to note that there are currently three separate policy languages in common usage:…
|
/third_party/python/Lib/ |
D | gettext.py | 542 def find(domain, localedir=None, languages=None, all=False): argument 546 if languages is None: 547 languages = [] 551 languages = val.split(':') 553 if 'C' not in languages: 554 languages.append('C') 557 for lang in languages: 583 def translation(domain, localedir=None, languages=None, argument 587 mofiles = find(domain, localedir, languages, all=True)
|
/third_party/grpc/examples/cpp/ |
D | README.md | 10 [gRPC Basics]: https://grpc.io/docs/languages/cpp/basics 12 [Quick Start]: https://grpc.io/docs/languages/cpp/quickstart
|
/third_party/icu/docs/userguide/ |
D | i18n.md | 80 languages. You do not have to tag pieces of data with their encoding to enable 81 the right characters, and you can mix languages within a single piece of text. 86 * It can handle text in any language or combination of languages. 117 languages and user communities. This includes tasks such as alphabetizing lists 124 quite challenging for other languages. 138 following table shows how word lengths can differ among languages. 161 work correctly in 75 languages and more than 200 locales. The key is 179 Numbers and dates are represented in different languages. Do not implement 213 All languages (even those using the same alphabet) do not necessarily have the 220 Not all languages interpret the same characters as equivalent. If a character's [all …]
|
/third_party/gettext/gettext-tools/src/ |
D | msgfmt.c | 1408 add_languages (string_list_ty *languages, string_list_ty *desired_languages, in add_languages() argument 1429 string_list_append_unique (languages, start); in add_languages() 1437 get_languages (string_list_ty *languages, const char *directory) in get_languages() argument 1491 add_languages (languages, desired_languages, line_buf, len); in get_languages() 1548 string_list_ty languages; in msgfmt_operand_list_add_from_directory() local 1553 string_list_init (&languages); in msgfmt_operand_list_add_from_directory() 1554 get_languages (&languages, directory); in msgfmt_operand_list_add_from_directory() 1556 if (languages.nitems == 0) in msgfmt_operand_list_add_from_directory() 1565 for (i = 0; i < languages.nitems; i++) in msgfmt_operand_list_add_from_directory() 1567 const char *language = languages.item[i]; in msgfmt_operand_list_add_from_directory() [all …]
|
/third_party/icu/docs/userguide/collation/ |
D | faq.md | 28 there, and will work with most languages. So the normalization parameter in ICU 43 the languages you expect to find, and see if any of them have the full 69 languages have different word elements. Instead one should use shifted mode for
|
/third_party/gettext/gettext-runtime/m4/ |
D | intlmacosx.m4 | 38 dnl When two or more languages are specified in the 41 dnl the preferred languages!). What we want instead is what 44 dnl first among the preferred languages and CC is the territory.
|
/third_party/python/Doc/library/ |
D | gettext.rst | 20 languages. 33 application needs to switch languages on the fly, you probably want to use the 83 languages have more than two plural forms). If no translation is found, return 91 formulas for a variety of languages. 158 .. function:: find(domain, localedir=None, languages=None, all=False) 162 *localedir* is as in :func:`bindtextdomain`. Optional *languages* is a list of 166 [#]_ If *languages* is not given, then the following environment variables are 169 *languages* variable. The environment variables should contain a colon separated 170 list of languages, which will be split on the colon to produce the expected list 173 :func:`find` then expands and normalizes the languages, and then iterates [all …]
|
/third_party/harfbuzz/src/ |
D | hb-ot-layout.cc | 1096 const hb_tag_t *languages, in script_collect_features() argument 1101 if (!languages) in script_collect_features() 1117 for (; *languages; languages++) in script_collect_features() 1120 if (s.find_lang_sys_index (*languages, &language_index)) in script_collect_features() 1150 const hb_tag_t *languages, in hb_ot_layout_collect_features() argument 1162 languages, in hb_ot_layout_collect_features() 1173 languages, in hb_ot_layout_collect_features() 1201 const hb_tag_t *languages, in hb_ot_layout_collect_lookups() argument 1208 hb_ot_layout_collect_features (face, table_tag, scripts, languages, features, &feature_indexes); in hb_ot_layout_collect_lookups()
|