/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/ |
D | LocaleFallbackData.java | 22 t.put("ab", "Cyrl"); in buildDefaultScriptTable() 23 t.put("abq", "Cyrl"); in buildDefaultScriptTable() 24 t.put("adp", "Tibt"); in buildDefaultScriptTable() 25 t.put("ady", "Cyrl"); in buildDefaultScriptTable() 26 t.put("ae", "Avst"); in buildDefaultScriptTable() 27 t.put("aeb", "Arab"); in buildDefaultScriptTable() 28 t.put("aho", "Ahom"); in buildDefaultScriptTable() 29 t.put("ajt", "Arab"); in buildDefaultScriptTable() 30 t.put("akk", "Xsux"); in buildDefaultScriptTable() 31 t.put("alt", "Cyrl"); in buildDefaultScriptTable() [all …]
|
/third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
D | TestCharset.java | 80 us.put(lead); in TestUTF16Converter() 81 us.put(trail); in TestUTF16Converter() 82 bs1.put((byte)(lead>>8)); in TestUTF16Converter() 83 bs1.put((byte)(lead&0xFF)); in TestUTF16Converter() 84 bs1.put((byte)(trail>>8)); in TestUTF16Converter() 85 bs1.put((byte)(trail&0xFF)); in TestUTF16Converter() 87 bs2.put((byte)(lead&0xFF)); in TestUTF16Converter() 88 bs2.put((byte)(lead>>8)); in TestUTF16Converter() 89 bs2.put((byte)(trail&0xFF)); in TestUTF16Converter() 90 bs2.put((byte)(trail>>8)); in TestUTF16Converter() [all …]
|
/third_party/libphonenumber/java/libphonenumber/src/com/google/i18n/phonenumbers/ |
D | CountryCodeToRegionCodeMap.java | 67 countryCodeToRegionCodeMap.put(1, listWithRegionCode); in getCountryCodeToRegionCodeMap() 72 countryCodeToRegionCodeMap.put(7, listWithRegionCode); in getCountryCodeToRegionCodeMap() 76 countryCodeToRegionCodeMap.put(20, listWithRegionCode); in getCountryCodeToRegionCodeMap() 80 countryCodeToRegionCodeMap.put(27, listWithRegionCode); in getCountryCodeToRegionCodeMap() 84 countryCodeToRegionCodeMap.put(30, listWithRegionCode); in getCountryCodeToRegionCodeMap() 88 countryCodeToRegionCodeMap.put(31, listWithRegionCode); in getCountryCodeToRegionCodeMap() 92 countryCodeToRegionCodeMap.put(32, listWithRegionCode); in getCountryCodeToRegionCodeMap() 96 countryCodeToRegionCodeMap.put(33, listWithRegionCode); in getCountryCodeToRegionCodeMap() 100 countryCodeToRegionCodeMap.put(34, listWithRegionCode); in getCountryCodeToRegionCodeMap() 104 countryCodeToRegionCodeMap.put(36, listWithRegionCode); in getCountryCodeToRegionCodeMap() [all …]
|
/third_party/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/ |
D | CharsetICU.java | 143 algorithmicCharsets.put("LMBCS-1", "com.ibm.icu.charset.CharsetLMBCS"); 144 algorithmicCharsets.put("LMBCS-2", "com.ibm.icu.charset.CharsetLMBCS"); 145 algorithmicCharsets.put("LMBCS-3", "com.ibm.icu.charset.CharsetLMBCS"); 146 algorithmicCharsets.put("LMBCS-4", "com.ibm.icu.charset.CharsetLMBCS"); 147 algorithmicCharsets.put("LMBCS-5", "com.ibm.icu.charset.CharsetLMBCS"); 148 algorithmicCharsets.put("LMBCS-6", "com.ibm.icu.charset.CharsetLMBCS"); 149 algorithmicCharsets.put("LMBCS-8", "com.ibm.icu.charset.CharsetLMBCS"); 150 algorithmicCharsets.put("LMBCS-11", "com.ibm.icu.charset.CharsetLMBCS"); 151 algorithmicCharsets.put("LMBCS-16", "com.ibm.icu.charset.CharsetLMBCS"); 152 algorithmicCharsets.put("LMBCS-17", "com.ibm.icu.charset.CharsetLMBCS"); [all …]
|
D | CharsetUTF7.java | 245 target.put(b); in decodeLoop() 247 offsets.put(sourceIndex++); in decodeLoop() 354 target.put(c); in decodeLoop() 356 offsets.put(sourceIndex); in decodeLoop() 373 target.put(c); in decodeLoop() 375 offsets.put(sourceIndex); in decodeLoop() 392 target.put(c); in decodeLoop() 394 offsets.put(sourceIndex); in decodeLoop() 410 target.put(useIMAP ? (char)AMPERSAND : (char)PLUS); in decodeLoop() 412 offsets.put(sourceIndex - 1); in decodeLoop() [all …]
|
D | CharsetBOCU1.java | 445 target.put((byte)c); in fastSingle() 447 offsets.put(nextSourceIndex++); in fastSingle() 455 target.put((byte)PACK_SINGLE_DIFF(diff)); in fastSingle() 457 offsets.put(nextSourceIndex++); in fastSingle() 511 target.put((byte)c); in regularLoop() 513 offsets.put(sourceIndex++); in regularLoop() 545 target.put((byte)PACK_SINGLE_DIFF(diff)); in regularLoop() 547 offsets.put(sourceIndex++); in regularLoop() 568 target.put((byte)diff); in regularLoop() 569 target.put((byte)BOCU1_TRAIL_TO_BYTE(m)); in regularLoop() [all …]
|
D | CharsetSCSU.java | 300 target.put((char)b); in fastSingle() 302 offsets.put(sourceIndex); in fastSingle() 308 target.put((char)c); in fastSingle() 310 offsets.put(sourceIndex); in fastSingle() 314 target.put((char)(0xd7c0 + (c>>10))); in fastSingle() 316 target.put((char)(0xdc00 | (c&0x3ff))); in fastSingle() 318 offsets.put(sourceIndex); in fastSingle() 319 offsets.put(sourceIndex); in fastSingle() 324 offsets.put(sourceIndex); in fastSingle() 342 …target.put((char)((b<<8)|(source.get(source.position()+1)&UConverterConstants.UNSIGNED_BYTE_MASK))… in fastSingle() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
D | PluralFormatTest.java | 79 changes.put(new Integer(0), "other"); in TestOneFormLocales() 89 changes.put(new Integer(0), "other"); in TestSingular1Locales() 90 changes.put(new Integer(1), "one"); in TestSingular1Locales() 91 changes.put(new Integer(2), "other"); in TestSingular1Locales() 100 changes.put(new Integer(0), "one"); in TestSingular01Locales() 101 changes.put(new Integer(2), "other"); in TestSingular01Locales() 110 changes.put(new Integer(0), "zero"); in TestZeroSingularLocales() 111 changes.put(new Integer(1), "one"); in TestZeroSingularLocales() 114 changes.put(new Integer(i), "other"); in TestZeroSingularLocales() 116 changes.put(new Integer(i), "zero"); in TestZeroSingularLocales() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
D | PluralFormatTest.java | 82 changes.put(new Integer(0), "other"); in TestOneFormLocales() 92 changes.put(new Integer(0), "other"); in TestSingular1Locales() 93 changes.put(new Integer(1), "one"); in TestSingular1Locales() 94 changes.put(new Integer(2), "other"); in TestSingular1Locales() 103 changes.put(new Integer(0), "one"); in TestSingular01Locales() 104 changes.put(new Integer(2), "other"); in TestSingular01Locales() 113 changes.put(new Integer(0), "zero"); in TestZeroSingularLocales() 114 changes.put(new Integer(1), "one"); in TestZeroSingularLocales() 117 changes.put(new Integer(i), "other"); in TestZeroSingularLocales() 119 changes.put(new Integer(i), "zero"); in TestZeroSingularLocales() [all …]
|
/third_party/libphonenumber/tools/java/data/test/com/google/i18n/phonenumbers/ |
D | CombineGeoDataTest.java | 40 phonePrefixMap.put("122", null); in createSortedPrefixArray() 41 phonePrefixMap.put("42", null); in createSortedPrefixArray() 42 phonePrefixMap.put("4012", null); in createSortedPrefixArray() 43 phonePrefixMap.put("1000", null); in createSortedPrefixArray() 55 phonePrefixMap.put("33130", "Paris"); in findRangeEndFromStart() 56 phonePrefixMap.put("33139", "Paris"); in findRangeEndFromStart() 57 phonePrefixMap.put("334", "Marseille"); in findRangeEndFromStart() 67 phonePrefixMap.put("33130", "Paris"); in findRangeEndFromMiddle() 68 phonePrefixMap.put("33139", "Paris"); in findRangeEndFromMiddle() 69 phonePrefixMap.put("3341", "Marseille"); in findRangeEndFromMiddle() [all …]
|
/third_party/libphonenumber/tools/java/common/test/com/google/i18n/phonenumbers/ |
D | MetadataFilterTest.java | 45 blacklist.put("fixedLine", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 46 blacklist.put("mobile", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 47 blacklist.put("tollFree", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 48 blacklist.put("premiumRate", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 49 blacklist.put("sharedCost", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 50 blacklist.put("personalNumber", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 51 blacklist.put("voip", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 52 blacklist.put("pager", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 53 blacklist.put("uan", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() 54 blacklist.put("emergency", new TreeSet<String>(Arrays.asList("exampleNumber"))); in testForLiteBuild() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/message2/ |
D | Args.java | 27 result.put(argName0, argValue0); in of() 35 result.put(argName0, argValue0); in of() 36 result.put(argName1, argValue1); in of() 45 result.put(argName0, argValue0); in of() 46 result.put(argName1, argValue1); in of() 47 result.put(argName2, argValue2); in of() 57 result.put(argName0, argValue0); in of() 58 result.put(argName1, argValue1); in of() 59 result.put(argName2, argValue2); in of() 60 result.put(argName3, argValue3); in of() [all …]
|
/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/serializable/ |
D | FormatHandler.java | 676 cannedMonthNames.put("en_CA", en_CA_MonthNames); 677 cannedMonthNames.put("fr_CA", fr_CA_MonthNames); 678 cannedMonthNames.put("zh_Hans_CN", zh_Hans_CN_MonthNames); 679 cannedMonthNames.put("zh_CN", zh_CN_MonthNames); 680 cannedMonthNames.put("zh", zh_MonthNames); 681 cannedMonthNames.put("en", en_MonthNames); 682 cannedMonthNames.put("fr_FR", fr_FR_MonthNames); 683 cannedMonthNames.put("fr", fr_MonthNames); 684 cannedMonthNames.put("de", de_MonthNames); 685 cannedMonthNames.put("de_DE", de_DE_MonthNames); [all …]
|
D | SerializableTestUtility.java | 758 map.put("ohos.global.icu.util.TimeZone", new TimeZoneHandler()); 759 map.put("ohos.global.icu.util.SimpleTimeZone", new SimpleTimeZoneHandler()); 760 map.put("ohos.global.icu.util.RuleBasedTimeZone", new RuleBasedTimeZoneHandler()); 761 map.put("ohos.global.icu.util.VTimeZone", new VTimeZoneHandler()); 762 map.put("ohos.global.icu.util.DateTimeRule", new DateTimeRuleHandler()); 763 map.put("ohos.global.icu.util.AnnualTimeZoneRule", new AnnualTimeZoneRuleHandler()); 764 map.put("ohos.global.icu.util.InitialTimeZoneRule", new InitialTimeZoneRuleHandler()); 765 map.put("ohos.global.icu.util.TimeArrayTimeZoneRule", new TimeArrayTimeZoneRuleHandler()); 766 map.put("ohos.global.icu.util.ULocale", new ULocaleHandler()); 767 map.put("ohos.global.icu.util.Currency", new CurrencyHandler()); [all …]
|
/third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
D | CountryCodeToRegionCodeMapForTesting.java | 46 countryCodeToRegionCodeMap.put(1, listWithRegionCode); in getCountryCodeToRegionCodeMap() 50 countryCodeToRegionCodeMap.put(7, listWithRegionCode); in getCountryCodeToRegionCodeMap() 54 countryCodeToRegionCodeMap.put(33, listWithRegionCode); in getCountryCodeToRegionCodeMap() 58 countryCodeToRegionCodeMap.put(39, listWithRegionCode); in getCountryCodeToRegionCodeMap() 63 countryCodeToRegionCodeMap.put(44, listWithRegionCode); in getCountryCodeToRegionCodeMap() 67 countryCodeToRegionCodeMap.put(46, listWithRegionCode); in getCountryCodeToRegionCodeMap() 71 countryCodeToRegionCodeMap.put(48, listWithRegionCode); in getCountryCodeToRegionCodeMap() 75 countryCodeToRegionCodeMap.put(49, listWithRegionCode); in getCountryCodeToRegionCodeMap() 79 countryCodeToRegionCodeMap.put(52, listWithRegionCode); in getCountryCodeToRegionCodeMap() 83 countryCodeToRegionCodeMap.put(54, listWithRegionCode); in getCountryCodeToRegionCodeMap() [all …]
|
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/serializable/ |
D | FormatHandler.java | 674 cannedMonthNames.put("en_CA", en_CA_MonthNames); 675 cannedMonthNames.put("fr_CA", fr_CA_MonthNames); 676 cannedMonthNames.put("zh_Hans_CN", zh_Hans_CN_MonthNames); 677 cannedMonthNames.put("zh_CN", zh_CN_MonthNames); 678 cannedMonthNames.put("zh", zh_MonthNames); 679 cannedMonthNames.put("en", en_MonthNames); 680 cannedMonthNames.put("fr_FR", fr_FR_MonthNames); 681 cannedMonthNames.put("fr", fr_MonthNames); 682 cannedMonthNames.put("de", de_MonthNames); 683 cannedMonthNames.put("de_DE", de_DE_MonthNames); [all …]
|
D | SerializableTestUtility.java | 770 mapWithContent.put("number", Double.valueOf(3.1416)); in getTestObjects() 771 mapWithContent.put("date", new Date(1664582400000L /* 20221001T000000Z */)); in getTestObjects() 772 mapWithContent.put("string", "testing"); in getTestObjects() 791 map.put("com.ibm.icu.util.TimeZone", new TimeZoneHandler()); 792 map.put("com.ibm.icu.util.SimpleTimeZone", new SimpleTimeZoneHandler()); 793 map.put("com.ibm.icu.util.RuleBasedTimeZone", new RuleBasedTimeZoneHandler()); 794 map.put("com.ibm.icu.util.VTimeZone", new VTimeZoneHandler()); 795 map.put("com.ibm.icu.util.DateTimeRule", new DateTimeRuleHandler()); 796 map.put("com.ibm.icu.util.AnnualTimeZoneRule", new AnnualTimeZoneRuleHandler()); 797 map.put("com.ibm.icu.util.InitialTimeZoneRule", new InitialTimeZoneRuleHandler()); [all …]
|
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/table/opentype/testing/ |
D | FontLanguages.java | 610 fontSpecificScript.put("laoo", ScriptTag.lao); 611 fontSpecificScript.put("yiii", ScriptTag.yi); 612 fontSpecificScript.put("jpan", ScriptTag.kana); 613 fontSpecificScript.put("kore", ScriptTag.hang); 614 fontSpecificScript.put("nkoo", ScriptTag.nko); 615 fontSpecificScript.put("vaii", ScriptTag.vai); 616 fontSpecificScript.put("hans", ScriptTag.hani); 617 fontSpecificScript.put("hant", ScriptTag.hani); 636 scriptLangMap.put(ScriptTag.DFLT, new HashSet<String>()); in FontLanguages() 637 scriptLangMap.put(ScriptTag.brai, new HashSet<String>()); in FontLanguages() [all …]
|
/third_party/libphonenumber/java/internal/prefixmapper/test/com/google/i18n/phonenumbers/prefixmapper/ |
D | PhonePrefixMapTest.java | 42 sortedMapForUS.put(1212, "New York"); in PhonePrefixMapTest() 43 sortedMapForUS.put(1480, "Arizona"); in PhonePrefixMapTest() 44 sortedMapForUS.put(1650, "California"); in PhonePrefixMapTest() 45 sortedMapForUS.put(1907, "Alaska"); in PhonePrefixMapTest() 46 sortedMapForUS.put(1201664, "Westwood, NJ"); in PhonePrefixMapTest() 47 sortedMapForUS.put(1480893, "Phoenix, AZ"); in PhonePrefixMapTest() 48 sortedMapForUS.put(1501372, "Little Rock, AR"); in PhonePrefixMapTest() 49 sortedMapForUS.put(1626308, "Alhambra, CA"); in PhonePrefixMapTest() 50 sortedMapForUS.put(1650345, "San Mateo, CA"); in PhonePrefixMapTest() 51 sortedMapForUS.put(1867993, "Dawson, YT"); in PhonePrefixMapTest() [all …]
|
D | PrefixTimeZonesMapTest.java | 53 sortedMapForUS.put(1, NEW_YORK_TZ + "&" + CHICAGO_TZ + "&" + LOS_ANGELES_TZ + "&" + DENVER_TZ); in PrefixTimeZonesMapTest() 54 sortedMapForUS.put(1201, NEW_YORK_TZ); in PrefixTimeZonesMapTest() 55 sortedMapForUS.put(1205, CHICAGO_TZ); in PrefixTimeZonesMapTest() 56 sortedMapForUS.put(1208292, LOS_ANGELES_TZ); in PrefixTimeZonesMapTest() 57 sortedMapForUS.put(1208234, DENVER_TZ); in PrefixTimeZonesMapTest() 58 sortedMapForUS.put(1541367, LOS_ANGELES_TZ); in PrefixTimeZonesMapTest() 59 sortedMapForUS.put(1423843, NEW_YORK_TZ); in PrefixTimeZonesMapTest() 60 sortedMapForUS.put(1402721, CHICAGO_TZ); in PrefixTimeZonesMapTest() 61 sortedMapForUS.put(1208888, DENVER_TZ); in PrefixTimeZonesMapTest() 66 sortedMapForRU.put(7421, VLADIVOSTOK_TZ); in PrefixTimeZonesMapTest() [all …]
|
/third_party/ffmpeg/libavcodec/ |
D | qpeldsp.c | 176 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8); \ 191 put ## RND ## mpeg4_qpel8_h_lowpass(half, src, 8, stride, 8); \ 202 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16); \ 222 put ## RND ## mpeg4_qpel8_v_lowpass(half, full, 8, 16); \ 235 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9); \ 236 put ## RND ## mpeg4_qpel8_v_lowpass(halfV, full, 8, 16); \ 237 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8); \ 250 put ## RND ## mpeg4_qpel8_h_lowpass(halfH, full, 8, 16, 9); \ 251 put ## RND ## pixels8_l2_8(halfH, halfH, full, 8, 8, 16, 9); \ 252 put ## RND ## mpeg4_qpel8_v_lowpass(halfHV, halfH, 8, 8); \ [all …]
|
/third_party/libphonenumber/tools/java/java-build/test/com/google/i18n/phonenumbers/buildtools/ |
D | GeneratePhonePrefixDataTest.java | 98 mappings.put(phonePrefix, location); in parseTextFileHelper() 148 mappings.put(12011, "Location1"); in testSplitMap() 149 mappings.put(12012, "Location2"); in testSplitMap() 150 mappings.put(12021, "Location3"); in testSplitMap() 151 mappings.put(12022, "Location4"); in testSplitMap() 210 map.put(1234, ""); in testHasOverlap() 211 map.put(123, ""); in testHasOverlap() 212 map.put(2345, ""); in testHasOverlap() 220 frenchMappings.put(411, "Genève"); in testCompressAccordingToEnglishDataMakesDescriptionEmpty() 221 frenchMappings.put(4112, "Zurich"); in testCompressAccordingToEnglishDataMakesDescriptionEmpty() [all …]
|
/third_party/ffmpeg/libavcodec/x86/ |
D | vp9dsp_init_16bpp.c | 32 decl_fpel_func(put, 8, , mmx); 34 decl_fpel_func(put, 16, , sse); 35 decl_fpel_func(put, 32, , sse); 36 decl_fpel_func(put, 64, , sse); 37 decl_fpel_func(put, 128, , sse); 42 decl_fpel_func(put, 32, , avx); 43 decl_fpel_func(put, 64, , avx); 44 decl_fpel_func(put, 128, , avx); 78 init_fpel_func(4, 0, 8, put, , mmx); in ff_vp9dsp_init_16bpp_x86() 91 init_fpel_func(3, 0, 16, put, , sse); in ff_vp9dsp_init_16bpp_x86() [all …]
|
/third_party/python/Lib/test/ |
D | test_queue.py | 101 q.put(111) 102 q.put(333) 103 q.put(222) 111 q.put(i) 116 q.put(last) 121 q.put(full, block=0) 126 q.put(full, timeout=0.01) 131 self.do_blocking_test(q.put, (full,), q.get, ()) 132 self.do_blocking_test(q.put, (full, True, 10), q.get, ()) 148 self.do_blocking_test(q.get, (), q.put, ('empty',)) [all …]
|
/third_party/zlib/examples/ |
D | gznorm.c | 118 unsigned char *put; // next input buffer location to process in gzip_normalize() local 132 strm.next_in = put = dat; in gzip_normalize() 183 put = strm.next_in; in gzip_normalize() 238 buf += (unsigned long)*put++ << num; in gzip_normalize() 252 if (put == strm.next_in) in gzip_normalize() 256 buf += (unsigned long)*put++ << num; in gzip_normalize() 286 if (put == strm.next_in) in gzip_normalize() 310 if (put < end) { in gzip_normalize() 315 buf += (unsigned)(*put++) << num; in gzip_normalize() 318 } while (put < end); in gzip_normalize() [all …]
|