Home
last modified time | relevance | path

Searched refs:localizations (Results 1 – 14 of 14) sorted by relevance

/external/icu/icu4c/source/i18n/
Drbnf.cpp695 , localizations(NULL) in RuleBasedNumberFormat()
720 , localizations(NULL) in RuleBasedNumberFormat()
745 , localizations(NULL) in RuleBasedNumberFormat()
769 , localizations(NULL) in RuleBasedNumberFormat()
794 , localizations(NULL) in RuleBasedNumberFormat()
816 , localizations(NULL) in RuleBasedNumberFormat()
883 , localizations(NULL) in RuleBasedNumberFormat()
908 …init(rhs.originalDescription, rhs.localizations ? rhs.localizations->ref() : NULL, perror, status); in operator =()
947 (localizations == NULL in operator ==()
948 ? rhs.localizations == NULL in operator ==()
[all …]
/external/libcups/cups/
Ddest-localization.c80 if (!dinfo->localizations) in cupsLocalizeDestMedia()
84 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, &key)) != NULL) in cupsLocalizeDestMedia()
204 cupsArrayAdd(dinfo->localizations, match); in cupsLocalizeDestMedia()
239 if (!dinfo->localizations) in cupsLocalizeDestOption()
243 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, in cupsLocalizeDestOption()
298 if (!dinfo->localizations) in cupsLocalizeDestValue()
303 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, in cupsLocalizeDestValue()
342 dinfo->localizations = _cupsMessageNew(NULL); in cups_create_localizations()
446 cupsArrayAdd(dinfo->localizations, m); in cups_create_localizations()
462 cupsArrayCount(dinfo->localizations))); in cups_create_localizations()
Dcups-private.h210 cups_array_t *localizations; /* Localization information */ member
Ddest-options.c862 cupsArrayDelete(dinfo->localizations); in cupsFreeDestInfo()
/external/icu/android_icu4j/src/main/java/android/icu/text/
DRuleBasedNumberFormat.java723 public RuleBasedNumberFormat(String description, String[][] localizations) { in RuleBasedNumberFormat() argument
725 init(description, localizations); in RuleBasedNumberFormat()
785 public RuleBasedNumberFormat(String description, String[][] localizations, ULocale locale) { in RuleBasedNumberFormat() argument
787 init(description, localizations); in RuleBasedNumberFormat()
831 String[][] localizations = null; in RuleBasedNumberFormat() local
847 localizations = new String[locNamesBundle.getSize()][]; in RuleBasedNumberFormat()
848 for (int i = 0; i < localizations.length; ++i) { in RuleBasedNumberFormat()
849 localizations[i] = locNamesBundle.get(i).getStringArray(); in RuleBasedNumberFormat()
854 init(description.toString(), localizations); in RuleBasedNumberFormat() local
1662 private void init(String description, String[][] localizations) { in init() argument
[all …]
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DRuleBasedNumberFormat.java728 public RuleBasedNumberFormat(String description, String[][] localizations) { in RuleBasedNumberFormat() argument
730 init(description, localizations); in RuleBasedNumberFormat()
793 public RuleBasedNumberFormat(String description, String[][] localizations, ULocale locale) { in RuleBasedNumberFormat() argument
795 init(description, localizations); in RuleBasedNumberFormat()
841 String[][] localizations = null; in RuleBasedNumberFormat() local
857 localizations = new String[locNamesBundle.getSize()][]; in RuleBasedNumberFormat()
858 for (int i = 0; i < localizations.length; ++i) { in RuleBasedNumberFormat()
859 localizations[i] = locNamesBundle.get(i).getStringArray(); in RuleBasedNumberFormat()
864 init(description.toString(), localizations); in RuleBasedNumberFormat() local
1701 private void init(String description, String[][] localizations) { in init() argument
[all …]
/external/icu/icu4c/source/i18n/unicode/
Drbnf.h602 RuleBasedNumberFormat(const UnicodeString& rules, const UnicodeString& localizations,
649 RuleBasedNumberFormat(const UnicodeString& rules, const UnicodeString& localizations,
1067 RuleBasedNumberFormat(const UnicodeString& description, LocalizationInfo* localizations,
1070 …void init(const UnicodeString& rules, LocalizationInfo* localizations, UParseError& perror, UError…
1109 LocalizationInfo* localizations; variable
/external/vboot_reference/utility/
Dbmpblk_utility.cc49 config_.localizations.clear(); in BmpBlockUtil()
80 config_.localizations.clear(); in load_yaml_config()
346 config_.localizations.push_back(vector<string>()); in parse_localizations()
350 config_.localizations[index].push_back((char*)event.data.scalar.value); in parse_localizations()
500 config_.header.number_of_localizations = config_.localizations.size(); in fill_bmpblock_header()
501 config_.header.number_of_screenlayouts = config_.localizations[0].size(); in fill_bmpblock_header()
503 for (unsigned int i = 1; i < config_.localizations.size(); ++i) { in fill_bmpblock_header()
505 config_.localizations[i].size()); in fill_bmpblock_header()
553 for (unsigned int i = 0; i < config_.localizations.size(); ++i) { in pack_bmpblock()
554 for (unsigned int j = 0; j < config_.localizations[i].size(); ++j) { in pack_bmpblock()
[all …]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DRbnfTest.java1032 String[][] localizations = new String[][] { in TestRuleSetDisplayName() local
1045 = new RuleBasedNumberFormat(ukEnglish, localizations, ULocale.US); in TestRuleSetDisplayName()
1046 RuleBasedNumberFormat f2= new RuleBasedNumberFormat(ukEnglish, localizations); in TestRuleSetDisplayName()
1054 assertEquals("Display name in default locale", localizations[1][i+1], RSName_defLoc); in TestRuleSetDisplayName()
1056 assertEquals("Display name in Chinese", localizations[2][i+1], RSName_loc); in TestRuleSetDisplayName()
1073 …assertEquals("getRuleSetDisplayNames in default locale", localizations[1][i+1], RSNames_defLoc[i]); in TestRuleSetDisplayName()
1078 … assertEquals("getRuleSetDisplayNames in English", localizations[1][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
1083 … assertEquals("getRuleSetDisplayNames in Chinese", localizations[2][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
1088 … assertEquals("getRuleSetDisplayNames in fake locale", localizations[3][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DRbnfTest.java1035 String[][] localizations = new String[][] { in TestRuleSetDisplayName() local
1048 = new RuleBasedNumberFormat(ukEnglish, localizations, ULocale.US); in TestRuleSetDisplayName()
1049 RuleBasedNumberFormat f2= new RuleBasedNumberFormat(ukEnglish, localizations); in TestRuleSetDisplayName()
1057 assertEquals("Display name in default locale", localizations[1][i+1], RSName_defLoc); in TestRuleSetDisplayName()
1059 assertEquals("Display name in Chinese", localizations[2][i+1], RSName_loc); in TestRuleSetDisplayName()
1076 …assertEquals("getRuleSetDisplayNames in default locale", localizations[1][i+1], RSNames_defLoc[i]); in TestRuleSetDisplayName()
1081 … assertEquals("getRuleSetDisplayNames in English", localizations[1][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
1086 … assertEquals("getRuleSetDisplayNames in Chinese", localizations[2][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
1091 … assertEquals("getRuleSetDisplayNames in fake locale", localizations[3][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
/external/cldr/tools/java/org/unicode/cldr/tool/
DGenerateDayPeriods.java39 … Map<DayPeriod, String> localizations = getLocalizations(factory.make(locale, true)); in main() local
47 final String localization = localizations.get(dayPeriod); in main()
/external/vboot_reference/utility/include/
Dbmpblk_utility.h50 vector<vector<string> > localizations; member
/external/libcups/filter/
Dppd-compiler.shtml193 compiler will override it to be <TT>A4</TT> for non-English localizations for
824 <p>While CUPS includes localizations of all standard media sizes and options in
Dspec-ppd.shtml1327 <p>This keyword describes which language localizations are