/external/libcups/cups/ |
D | dest-localization.c | 77 if (!dinfo->localizations) in cupsLocalizeDestMedia() 81 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, &key)) != NULL) in cupsLocalizeDestMedia() 190 cupsArrayAdd(dinfo->localizations, match); in cupsLocalizeDestMedia() 220 if (!dinfo->localizations) in cupsLocalizeDestOption() 223 if (cupsArrayCount(dinfo->localizations) == 0) in cupsLocalizeDestOption() 227 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, in cupsLocalizeDestOption() 261 if (!dinfo->localizations) in cupsLocalizeDestValue() 264 if (cupsArrayCount(dinfo->localizations) == 0) in cupsLocalizeDestValue() 269 if ((match = (_cups_message_t *)cupsArrayFind(dinfo->localizations, in cupsLocalizeDestValue() 306 dinfo->localizations = _cupsMessageNew(NULL); in cups_create_localizations() [all …]
|
D | cups-private.h | 210 cups_array_t *localizations; /* Localization information */ member
|
D | dest-options.c | 815 cupsArrayDelete(dinfo->localizations); in cupsFreeDestInfo()
|
/external/icu/icu4c/source/i18n/ |
D | rbnf.cpp | 670 , localizations(NULL) in RuleBasedNumberFormat() 694 , localizations(NULL) in RuleBasedNumberFormat() 718 , localizations(NULL) in RuleBasedNumberFormat() 741 , localizations(NULL) in RuleBasedNumberFormat() 765 , localizations(NULL) in RuleBasedNumberFormat() 786 , localizations(NULL) in RuleBasedNumberFormat() 852 , localizations(NULL) in RuleBasedNumberFormat() 877 …init(rhs.originalDescription, rhs.localizations ? rhs.localizations->ref() : NULL, perror, status); in operator =() 915 (localizations == NULL in operator ==() 916 ? rhs.localizations == NULL in operator ==() [all …]
|
/external/icu/android_icu4j/src/main/java/android/icu/text/ |
D | RuleBasedNumberFormat.java | 723 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 1666 private void init(String description, String[][] localizations) { in init() argument [all …]
|
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
D | RuleBasedNumberFormat.java | 728 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 1704 private void init(String description, String[][] localizations) { in init() argument [all …]
|
/external/icu/icu4c/source/i18n/unicode/ |
D | rbnf.h | 603 RuleBasedNumberFormat(const UnicodeString& rules, const UnicodeString& localizations, 650 RuleBasedNumberFormat(const UnicodeString& rules, const UnicodeString& localizations, 1008 RuleBasedNumberFormat(const UnicodeString& description, LocalizationInfo* localizations, 1011 …void init(const UnicodeString& rules, LocalizationInfo* localizations, UParseError& perror, UError… 1048 LocalizationInfo* localizations; variable
|
/external/vboot_reference/utility/ |
D | bmpblk_utility.cc | 49 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/android_icu4j/src/main/tests/android/icu/dev/test/format/ |
D | RbnfTest.java | 1030 String[][] localizations = new String[][] { in TestRuleSetDisplayName() local 1043 = new RuleBasedNumberFormat(ukEnglish, localizations, ULocale.US); in TestRuleSetDisplayName() 1044 RuleBasedNumberFormat f2= new RuleBasedNumberFormat(ukEnglish, localizations); in TestRuleSetDisplayName() 1052 assertEquals("Display name in default locale", localizations[1][i+1], RSName_defLoc); in TestRuleSetDisplayName() 1054 assertEquals("Display name in Chinese", localizations[2][i+1], RSName_loc); in TestRuleSetDisplayName() 1071 …assertEquals("getRuleSetDisplayNames in default locale", localizations[1][i+1], RSNames_defLoc[i]); in TestRuleSetDisplayName() 1076 … assertEquals("getRuleSetDisplayNames in English", localizations[1][i+1], RSNames_loc[i]); in TestRuleSetDisplayName() 1081 … assertEquals("getRuleSetDisplayNames in Chinese", localizations[2][i+1], RSNames_loc[i]); in TestRuleSetDisplayName() 1086 … assertEquals("getRuleSetDisplayNames in fake locale", localizations[3][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | RbnfTest.java | 1029 String[][] localizations = new String[][] { in TestRuleSetDisplayName() local 1042 = new RuleBasedNumberFormat(ukEnglish, localizations, ULocale.US); in TestRuleSetDisplayName() 1043 RuleBasedNumberFormat f2= new RuleBasedNumberFormat(ukEnglish, localizations); in TestRuleSetDisplayName() 1051 assertEquals("Display name in default locale", localizations[1][i+1], RSName_defLoc); in TestRuleSetDisplayName() 1053 assertEquals("Display name in Chinese", localizations[2][i+1], RSName_loc); in TestRuleSetDisplayName() 1070 …assertEquals("getRuleSetDisplayNames in default locale", localizations[1][i+1], RSNames_defLoc[i]); in TestRuleSetDisplayName() 1075 … assertEquals("getRuleSetDisplayNames in English", localizations[1][i+1], RSNames_loc[i]); in TestRuleSetDisplayName() 1080 … assertEquals("getRuleSetDisplayNames in Chinese", localizations[2][i+1], RSNames_loc[i]); in TestRuleSetDisplayName() 1085 … assertEquals("getRuleSetDisplayNames in fake locale", localizations[3][i+1], RSNames_loc[i]); in TestRuleSetDisplayName()
|
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
D | org.eclipse.equinox.p2.metadata.generator_1.0.200.v20100503a.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.equinox.p2.updatesite_1.0.201.R36x_v20100823.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | org.eclipse.equinox.p2.publisher_1.1.2.v20100824-2220.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
D | com.ibm.icu_4.2.1.v20100412.jar | META-INF/MANIFEST.MF
META-INF/ECLIPSEF.SF
META-INF/ECLIPSEF ... |
/external/vboot_reference/utility/include/ |
D | bmpblk_utility.h | 50 vector<vector<string> > localizations; member
|
/external/libcups/filter/ |
D | ppd-compiler.shtml | 193 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
|
D | spec-ppd.shtml | 1314 <p>This keyword describes which language localizations are
|