| /third_party/pcre2/pcre2/maint/ |
| D | ucptest.c | 127 #define US (unsigned char *) macro 135 US"Cc", US"Control", 136 US"Cf", US"Format", 137 US"Cn", US"Unassigned", 138 US"Co", US"Private use", 139 US"Cs", US"Surrogate", 140 US"Ll", US"Lower case letter", 141 US"Lm", US"Modifier letter", 142 US"Lo", US"Other letter", 143 US"Lt", US"Title case letter", [all …]
|
| /third_party/grpc/tools/bazelify_tests/ |
| D | dockerimage_current_versions.bzl | 22 …"third_party/rake-compiler-dock/rake_aarch64-linux.current_version": "docker://us-docker.pkg.dev/g… 23 …"third_party/rake-compiler-dock/rake_arm64-darwin.current_version": "docker://us-docker.pkg.dev/gr… 24 …"third_party/rake-compiler-dock/rake_x64-mingw-ucrt.current_version": "docker://us-docker.pkg.dev/… 25 …"third_party/rake-compiler-dock/rake_x64-mingw32.current_version": "docker://us-docker.pkg.dev/grp… 26 …"third_party/rake-compiler-dock/rake_x86-linux.current_version": "docker://us-docker.pkg.dev/grpc-… 27 …"third_party/rake-compiler-dock/rake_x86-mingw32.current_version": "docker://us-docker.pkg.dev/grp… 28 …"third_party/rake-compiler-dock/rake_x86_64-darwin.current_version": "docker://us-docker.pkg.dev/g… 29 …"third_party/rake-compiler-dock/rake_x86_64-linux.current_version": "docker://us-docker.pkg.dev/gr… 30 …"tools/dockerfile/distribtest/cpp_debian11_aarch64_cross_x64.current_version": "docker://us-docker… 31 …"tools/dockerfile/distribtest/cpp_debian11_x64.current_version": "docker://us-docker.pkg.dev/grpc-… [all …]
|
| /third_party/icu/icu4j/main/tests/charset/src/com/ibm/icu/dev/test/charset/ |
| D | TestCharset.java | 59 CharBuffer us = CharBuffer.allocate(0xFF*2); in TestUTF16Converter() local 80 us.put(lead); in TestUTF16Converter() 81 us.put(trail); in TestUTF16Converter() 105 us.put((char)c); in TestUTF16Converter() 110 us.limit(us.position()); in TestUTF16Converter() 111 us.position(0); in TestUTF16Converter() 112 if(us.length()==0){ in TestUTF16Converter() 124 smBufDecode(d1, "UTF-16", bs1, us); in TestUTF16Converter() 125 smBufEncode(e1, "UTF-16", us, newBS); in TestUTF16Converter() 134 smBufDecode(d2, "UTF16-LE", bs2, us); in TestUTF16Converter() [all …]
|
| /third_party/skia/m133/third_party/externals/icu/source/data/unit/ |
| D | en_001.txt | 75 dnam{"miles per US gallon"} 76 one{"{0} mile per US gallon"} 77 other{"{0} miles per US gallon"} 242 dnam{"US dessertspoon"} 243 one{"{0} US dessertspoon"} 244 other{"{0} US dessertspoons"} 252 dnam{"US fluid ounces"} 253 one{"{0} US fluid ounce"} 254 other{"{0} US fluid ounces"} 262 dnam{"US gallons"} [all …]
|
| D | en_CA.txt | 70 dnam{"miles per US gallon"} 71 one{"{0} mile per US gallon"} 72 other{"{0} miles per US gallon"} 252 dnam{"US dessertspoon"} 253 one{"{0} US dessertspoon"} 254 other{"{0} US dessertspoons"} 267 dnam{"US fluid ounces"} 268 one{"{0} US fluid ounce"} 269 other{"{0} US fluid ounces"} 277 dnam{"US gallons"} [all …]
|
| /third_party/icu/icu4c/source/data/unit/ |
| D | en_001.txt | 75 dnam{"miles per US gallon"} 76 one{"{0} mile per US gallon"} 77 other{"{0} miles per US gallon"} 247 dnam{"US dessertspoon"} 248 one{"{0} US dessertspoon"} 249 other{"{0} US dessertspoons"} 257 dnam{"US fluid ounces"} 258 one{"{0} US fluid ounce"} 259 other{"{0} US fluid ounces"} 267 dnam{"US gallons"} [all …]
|
| D | en_CA.txt | 70 dnam{"miles per US gallon"} 71 one{"{0} mile per US gallon"} 72 other{"{0} miles per US gallon"} 252 dnam{"US dessertspoon"} 253 one{"{0} US dessertspoon"} 254 other{"{0} US dessertspoons"} 267 dnam{"US fluid ounces"} 268 one{"{0} US fluid ounce"} 269 other{"{0} US fluid ounces"} 277 dnam{"US gallons"} [all …]
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/rbbi/ |
| D | BreakIteratorRegTest.java | 33 BreakIterator uwbi = BreakIterator.getWordInstance(Locale.US); in TestRegUnreg() 34 BreakIterator usbi = BreakIterator.getSentenceInstance(Locale.US); in TestRegUnreg() 46 Object key1 = BreakIterator.registerInstance(sbi, Locale.US, BreakIterator.KIND_WORD); in TestRegUnreg() 47 …Object key2 = BreakIterator.registerInstance((BreakIterator)twbi.clone(), Locale.US, BreakIterator… in TestRegUnreg() 51 BreakIterator test1 = BreakIterator.getWordInstance(Locale.US); in TestRegUnreg() 52 BreakIterator test2 = BreakIterator.getSentenceInstance(Locale.US); in TestRegUnreg() 57 assertEqual(test1, twbi, "us word == thai word"); in TestRegUnreg() 58 assertEqual(test2, usbi, "us sentence == us sentence"); in TestRegUnreg() 65 assertTrue(BreakIterator.unregister(key2), "unregister us word (thai word)"); in TestRegUnreg() 78 CharacterIterator sci = BreakIterator.getWordInstance(Locale.US).getText(); in TestRegUnreg() [all …]
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/ |
| D | BreakIteratorRegTest.java | 30 BreakIterator uwbi = BreakIterator.getWordInstance(Locale.US); in TestRegUnreg() 31 BreakIterator usbi = BreakIterator.getSentenceInstance(Locale.US); in TestRegUnreg() 43 Object key1 = BreakIterator.registerInstance(sbi, Locale.US, BreakIterator.KIND_WORD); in TestRegUnreg() 44 …Object key2 = BreakIterator.registerInstance((BreakIterator)twbi.clone(), Locale.US, BreakIterator… in TestRegUnreg() 48 BreakIterator test1 = BreakIterator.getWordInstance(Locale.US); in TestRegUnreg() 49 BreakIterator test2 = BreakIterator.getSentenceInstance(Locale.US); in TestRegUnreg() 54 assertEqual(test1, twbi, "us word == thai word"); in TestRegUnreg() 55 assertEqual(test2, usbi, "us sentence == us sentence"); in TestRegUnreg() 62 assertTrue(BreakIterator.unregister(key2), "unregister us word (thai word)"); in TestRegUnreg() 75 CharacterIterator sci = BreakIterator.getWordInstance(Locale.US).getText(); in TestRegUnreg() [all …]
|
| /third_party/libphonenumber/java/libphonenumber/test/com/google/i18n/phonenumbers/ |
| D | ShortNumberInfoTest.java | 65 shortInfo.isCarrierSpecificForRegion(parse("33669", RegionCode.US), RegionCode.US)); in testIsCarrierSpecific() 71 shortInfo.isCarrierSpecificForRegion(parse("911", RegionCode.US), RegionCode.US)); in testIsCarrierSpecific() 77 shortInfo.isCarrierSpecificForRegion(carrierSpecificNumberForSomeRegion, RegionCode.US)); in testIsCarrierSpecific() 85 assertTrue(shortInfo.isSmsServiceForRegion(smsServiceNumberForSomeRegion, RegionCode.US)); in testIsSmsService() 137 shortInfo.getExpectedCostForRegion(parse("911", RegionCode.US), RegionCode.ZZ)); in testGetExpectedCost() 205 assertTrue(shortInfo.connectsToEmergencyNumber("911", RegionCode.US)); in testConnectsToEmergencyNumber_US() 206 assertTrue(shortInfo.connectsToEmergencyNumber("112", RegionCode.US)); in testConnectsToEmergencyNumber_US() 207 assertFalse(shortInfo.connectsToEmergencyNumber("999", RegionCode.US)); in testConnectsToEmergencyNumber_US() 211 assertTrue(shortInfo.connectsToEmergencyNumber("9116666666", RegionCode.US)); in testConnectsToEmergencyNumberLongNumber_US() 212 assertTrue(shortInfo.connectsToEmergencyNumber("1126666666", RegionCode.US)); in testConnectsToEmergencyNumberLongNumber_US() [all …]
|
| D | PhoneNumberMatcherTest.java | 92 // Try again, but this time we have an international number with Region Code US. It should in testFindNationalNumber() 94 doTestFindInContext("01164 3 331 6005", RegionCode.US); in testFindNationalNumber() 95 doTestFindInContext("+64 3 331 6005", RegionCode.US); in testFindNationalNumber() 101 doTestFindInContext("123-456-7890", RegionCode.US); in testFindNationalNumber() 107 doTestFindInContext("1-650-333-6000", RegionCode.US); in testFindWithInternationalPrefixes() 108 // Calling the US number from Singapore by using different service providers in testFindWithInternationalPrefixes() 115 // Calling the US number from Poland in testFindWithInternationalPrefixes() 164 doTestFindInContext("011xx5481429712", RegionCode.US); in testFindWithXInNumber() 196 doTestFindInContext("(1800) 7493.524", RegionCode.US); in testFindExtensions() 209 doTestFindInContext("(800) 901-3355 x 7246433", RegionCode.US); in testFindExtensions() [all …]
|
| /third_party/zlib/contrib/minizip/ |
| D | unzip.c | 33 (Prior to January 2000, re-export from the US was a violation of US law.) 502 unz64_s us; in unzOpenInternal() local 520 us.z_filefunc.zseek32_file = NULL; in unzOpenInternal() 521 us.z_filefunc.ztell32_file = NULL; in unzOpenInternal() 523 fill_fopen64_filefunc(&us.z_filefunc.zfile_func64); in unzOpenInternal() 525 us.z_filefunc = *pzlib_filefunc64_32_def; in unzOpenInternal() 526 us.is64bitOpenFunction = is64bitOpenFunction; in unzOpenInternal() 530 us.filestream = ZOPEN64(us.z_filefunc, in unzOpenInternal() 534 if (us.filestream==NULL) in unzOpenInternal() 537 central_pos = unz64local_SearchCentralDir64(&us.z_filefunc,us.filestream); in unzOpenInternal() [all …]
|
| /third_party/typescript/tests/baselines/reference/ |
| D | collisionArgumentsClassConstructor.errors.txt | 2 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 3 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 4 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 6 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 7 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 8 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 9 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 10 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 12 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 13 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… [all …]
|
| D | es2020IntlAPIs.js | 2 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl#Locale_ide… 12 log("en-US"); 18 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/RelativeTi… 32 // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/DisplayNam… 36 console.log(regionNamesInEnglish.of('US')); 39 console.log(regionNamesInTraditionalChinese.of('US')); 47 new Intl.Locale(new Intl.Locale('en-US')); 54 const localesArg = ["es-ES", new Intl.Locale("en-US")]; 56 console.log(Intl.DisplayNames.supportedLocalesOf(localesArg)); // ["es-ES", "en-US"] 58 console.log(Intl.DisplayNames.supportedLocalesOf(localesArg, {})); // ["es-ES", "en-US"] [all …]
|
| D | collisionArgumentsClassMethod.errors.txt | 2 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 3 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 4 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 6 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 7 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 8 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 9 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 10 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 12 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… 13 …of 'arguments'. For more information, see https://developer.mozilla.org/en-US/docs/Web/JavaScript/… [all …]
|
| /third_party/libphonenumber/javascript/i18n/phonenumbers/ |
| D | shortnumberinfo_test.js | 95 phoneUtil.parse('33669', RegionCode.US), RegionCode.US)); 102 phoneUtil.parse('911', RegionCode.US), RegionCode.US)); 109 carrierSpecificNumberForSomeRegion, RegionCode.US)); 119 smsServiceNumberForSomeRegion, RegionCode.US)); 198 phoneUtil.parse('911', RegionCode.US), RegionCode.ZZ)); 293 assertTrue(shortInfo.connectsToEmergencyNumber('911', RegionCode.US)); 294 assertTrue(shortInfo.connectsToEmergencyNumber('112', RegionCode.US)); 295 assertFalse(shortInfo.connectsToEmergencyNumber('999', RegionCode.US)); 299 assertTrue(shortInfo.connectsToEmergencyNumber('9116666666', RegionCode.US)); 300 assertTrue(shortInfo.connectsToEmergencyNumber('1126666666', RegionCode.US)); [all …]
|
| /third_party/skia/third_party/externals/icu/source/data/unit/ |
| D | en_001.txt | 75 dnam{"miles per US gallon"} 76 one{"{0} mile per US gallon"} 77 other{"{0} miles per US gallon"} 246 dnam{"US dessertspoon"} 247 one{"{0} US dessertspoon"} 248 other{"{0} US dessertspoons"} 262 dnam{"US fluid ounces"} 263 one{"{0} US fluid ounce"} 264 other{"{0} US fluid ounces"} 267 dnam{"US gallons"} [all …]
|
| /third_party/libphonenumber/cpp/test/phonenumbers/ |
| D | shortnumberinfo_test.cc | 108 ParseNumberForTesting("33669", RegionCode::US()), RegionCode::US())); in TEST_F() 115 ParseNumberForTesting("911", RegionCode::US()), RegionCode::US())); in TEST_F() 123 carrier_specific_number_for_some_region, RegionCode::US())); in TEST_F() 133 sms_service_number_for_some_region, RegionCode::US())); in TEST_F() 211 ParseNumberForTesting("911", RegionCode::US()), RegionCode::ZZ())); in TEST_F() 312 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("911", RegionCode::US())); in TEST_F() 313 EXPECT_TRUE(short_info_.ConnectsToEmergencyNumber("112", RegionCode::US())); in TEST_F() 314 EXPECT_FALSE(short_info_.ConnectsToEmergencyNumber("999", RegionCode::US())); in TEST_F() 319 RegionCode::US())); in TEST_F() 321 RegionCode::US())); in TEST_F() [all …]
|
| /third_party/grpc/test/core/security/ |
| D | aws_request_signer_test.cc | 73 "us-east-1", "", in TEST() 80 "Credential=AKIDEXAMPLE/20150830/us-east-1/iam/aws4_request, " in TEST() 91 "ec2.us-east-2.amazonaws.com?Action=DescribeRegions&Version=2013-10-15", in TEST() 92 "us-east-2", "", {{"x-amz-date", kAmzTestDate}}, &error); in TEST() 97 "Credential=ASIARD4OQDT6A77FR3CL/20200811/us-east-2/ec2/aws4_request, " in TEST() 108 "sts.us-east-2.amazonaws.com?Action=GetCallerIdentity&Version=2011-06-15", in TEST() 109 "us-east-2", "", {{"x-amz-date", kAmzTestDate}}, &error); in TEST() 114 "Credential=ASIARD4OQDT6A77FR3CL/20200811/us-east-2/sts/aws4_request, " in TEST() 125 "sts.us-east-2.amazonaws.com?Action=GetCallerIdentity&Version=2011-06-15", in TEST() 126 "us-east-2", "", {{"x-amz-date", kAmzTestDate}}, &error); in TEST() [all …]
|
| /third_party/libphonenumber/metadata/src/test/java/com/google/i18n/phonenumbers/metadata/model/ |
| D | CommentsSchemaTest.java | 44 private static final PhoneRegion REGION_US = PhoneRegion.of("US"); 60 "US ; XML_FIXED_LINE ; \"Hello World\"") in testSimple_export() 69 "US ; XML_FIXED_LINE ; \"Hello World\"")) in testSimple_import() 81 "US ; XML_FIXED_LINE ; \"\\tHello\\nWorld\\\\\"") in testEscapedText_export() 90 "US ; XML_FIXED_LINE ; \"\\tHello\\nWorld\\\\\"")) in testEscapedText_import() 109 "US ; SC ; \"Shortcode Comment\"", in testOrdering_export() 110 "US ; XML ; \"Top Level Comment\"", in testOrdering_export() 111 "US ; XML_FIXED_LINE ; \"First\"", in testOrdering_export() 112 "US ; XML_FIXED_LINE ; \"Second\"", in testOrdering_export() 113 "US ; XML_FIXED_LINE ; \"Third\"", in testOrdering_export() [all …]
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/util/ |
| D | StringTokenizerTest.java | 559 UnicodeSet us = new UnicodeSet(); in Test_GeneratePattern() local 562 us._generatePattern(sb, true); in Test_GeneratePattern() 563 us._generatePattern(sb, false); in Test_GeneratePattern() 564 us._generatePattern(sb.append(1), true); in Test_GeneratePattern() 565 us._generatePattern(sb.append(1.0), true); in Test_GeneratePattern() 566 us._generatePattern(sb.reverse(), true); in Test_GeneratePattern() 572 us._generatePattern(null, true); in Test_GeneratePattern() 584 UnicodeSet us = new UnicodeSet(0,100000); // Create a large Unicode set in TestMatches() local 585 us.add("dummy"); in TestMatches() 590 if(us.matches(null, offset, limit, true) != UnicodeSet.U_PARTIAL_MATCH){ in TestMatches() [all …]
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/ |
| D | StringTokenizerTest.java | 556 UnicodeSet us = new UnicodeSet(); in Test_GeneratePattern() local 559 us._generatePattern(sb, true); in Test_GeneratePattern() 560 us._generatePattern(sb, false); in Test_GeneratePattern() 561 us._generatePattern(sb.append(1), true); in Test_GeneratePattern() 562 us._generatePattern(sb.append(1.0), true); in Test_GeneratePattern() 563 us._generatePattern(sb.reverse(), true); in Test_GeneratePattern() 569 us._generatePattern(null, true); in Test_GeneratePattern() 581 UnicodeSet us = new UnicodeSet(0,100000); // Create a large Unicode set in TestMatches() local 582 us.add("dummy"); in TestMatches() 587 if(us.matches(null, offset, limit, true) != UnicodeSet.U_PARTIAL_MATCH){ in TestMatches() [all …]
|
| /third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/format/ |
| D | BigNumberFormatTest.java | 38 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestExponent() local 39 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() 40 DecimalFormat fmt2 = new DecimalFormat("0.###E+0", US); in TestExponent() 54 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestSecondaryGrouping() local 55 DecimalFormat f = new DecimalFormat("#,##,###", US); in TestSecondaryGrouping() 103 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestPatterns() local 104 DecimalFormat fmt = new DecimalFormat("#", US); in TestPatterns() 170 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestAlphaBigDecimal() local 172 expect(NumberFormat.getScientificInstance(Locale.US), in TestAlphaBigDecimal() 176 expect(new DecimalFormat("##0.####E0", US), in TestAlphaBigDecimal() [all …]
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/ |
| D | BigNumberFormatTest.java | 35 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestExponent() local 36 DecimalFormat fmt1 = new DecimalFormat("0.###E0", US); in TestExponent() 37 DecimalFormat fmt2 = new DecimalFormat("0.###E+0", US); in TestExponent() 51 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestSecondaryGrouping() local 52 DecimalFormat f = new DecimalFormat("#,##,###", US); in TestSecondaryGrouping() 100 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestPatterns() local 101 DecimalFormat fmt = new DecimalFormat("#", US); in TestPatterns() 167 DecimalFormatSymbols US = new DecimalFormatSymbols(Locale.US); in TestAlphaBigDecimal() local 169 expect(NumberFormat.getScientificInstance(Locale.US), in TestAlphaBigDecimal() 173 expect(new DecimalFormat("##0.####E0", US), in TestAlphaBigDecimal() [all …]
|
| /third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/data/ |
| D | numberformattestspecification.txt | 1076 US Dollars 53.45 53.45 USD 1077 53.45 US Dollars 53.45 USD 1078 US Dollar 53.45 53.45 USD 1079 53.45 US Dollar 53.45 USD 1080 US Dollars53.45 53.45 USD 1081 53.45US Dollars 53.45 USD 1082 US Dollar53.45 53.45 USD 1083 US Dollat53.45 fail USD 1084 53.45US Dollar 53.45 USD 1085 US Dollars (53.45) -53.45 USD [all …]
|