/external/guava/android/guava-tests/test/com/google/common/base/ |
D | SplitterTest.java | 48 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit() local 49 assertThat(letters).containsExactly("a", "b", "c").inOrder(); in testCharacterSimpleSplit() 61 List<String> letters = COMMA_SPLITTER.splitToList(simple); in testCharacterSimpleSplitToList() local 62 assertThat(letters).containsExactly("a", "b", "c").inOrder(); in testCharacterSimpleSplitToList() 73 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter() local 74 assertThat(letters).containsExactly("a,b,c").inOrder(); in testCharacterSimpleSplitWithNoDelimiter() 79 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter() local 80 assertThat(letters).containsExactly("a", "", "b", "c").inOrder(); in testCharacterSplitWithDoubleDelimiter() 85 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace() local 86 assertThat(letters).containsExactly("a", "", " b", "c").inOrder(); in testCharacterSplitWithDoubleDelimiterAndSpace() [all …]
|
/external/guava/guava-tests/test/com/google/common/base/ |
D | SplitterTest.java | 48 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit() local 49 assertThat(letters).containsExactly("a", "b", "c").inOrder(); in testCharacterSimpleSplit() 61 List<String> letters = COMMA_SPLITTER.splitToList(simple); in testCharacterSimpleSplitToList() local 62 assertThat(letters).containsExactly("a", "b", "c").inOrder(); in testCharacterSimpleSplitToList() 73 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter() local 74 assertThat(letters).containsExactly("a,b,c").inOrder(); in testCharacterSimpleSplitWithNoDelimiter() 79 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter() local 80 assertThat(letters).containsExactly("a", "", "b", "c").inOrder(); in testCharacterSplitWithDoubleDelimiter() 85 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace() local 86 assertThat(letters).containsExactly("a", "", " b", "c").inOrder(); in testCharacterSplitWithDoubleDelimiterAndSpace() [all …]
|
/external/catch2/projects/SelfTest/IntrospectiveTests/ |
D | String.tests.cpp | 174 std::string letters = "abcdefcg"; variable 176 CHECK( Catch::replaceInPlace( letters, "b", "z" ) ); 177 CHECK( letters == "azcdefcg" ); 180 CHECK( Catch::replaceInPlace( letters, "c", "z" ) ); 181 CHECK( letters == "abzdefzg" ); 184 CHECK( Catch::replaceInPlace( letters, "a", "z" ) ); 185 CHECK( letters == "zbcdefcg" ); 188 CHECK( Catch::replaceInPlace( letters, "g", "z" ) ); 189 CHECK( letters == "abcdefcz" ); 192 CHECK( Catch::replaceInPlace( letters, letters, "replaced" ) ); [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | NGramParser.java | 75 private char[] letters = new char[N_GRAM_SIZE]; field in NGramParser 119 letters[letterCount++] = letter; in addLetter() 122 String key = new String(letters); in addLetter() 128 letters[i] = letters[i + 1]; in addLetter()
|
/external/icu/icu4c/source/test/cintltst/ |
D | cbiditransformtst.c | 71 uint32_t letters); 234 const UChar *destTxt, const char *expectedChars, uint32_t digits, uint32_t letters) in verifyResultsForAllOpt() argument 248 switch (letters) { in verifyResultsForAllOpt() 258 …pTest->pMessage, digits, letters, pseudoScript(srcTxt), pseudoScript(destTxt), pseudoScript(expect… in verifyResultsForAllOpt() 387 static const uint32_t letters[] = { in testAllTransformOptions() local 394 uint32_t k, nLetters = sizeof(letters) / sizeof(letters[0]); in testAllTransformOptions() 419 UBIDI_MIRRORING_OFF, digits[j] | letters[k], in testAllTransformOptions() 422 letters[k]); in testAllTransformOptions()
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/bidi/ |
D | TestBidiTransform.java | 217 final int[] letters = { in allTransformOptionsTest() local 234 for (int letter : letters) { in allTransformOptionsTest() 253 …Opts(Object[] test, String inText, String outText, char[] expectedChars, int digits, int letters) { in verifyResultsForAllOpts() argument 264 switch (letters) { in verifyResultsForAllOpts() 275 assertEquals("\nTest " + test[7] + "\ndigits: " + digits + ", letters: " + letters in verifyResultsForAllOpts() 332 private static final String letters = "\u0630\ufeab\u0631\ufead\u0632\ufeaf"; field in TestBidiTransform 336 int index = letters.indexOf(chars[i]); in shapeLetters() 338 chars[i] = letters.charAt(index ^ 1); in shapeLetters()
|
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/ |
D | TestBidiTransform.java | 214 final int[] letters = { in allTransformOptionsTest() local 231 for (int letter : letters) { in allTransformOptionsTest() 250 …Opts(Object[] test, String inText, String outText, char[] expectedChars, int digits, int letters) { in verifyResultsForAllOpts() argument 261 switch (letters) { in verifyResultsForAllOpts() 272 assertEquals("\nTest " + test[7] + "\ndigits: " + digits + ", letters: " + letters in verifyResultsForAllOpts() 329 private static final String letters = "\u0630\ufeab\u0631\ufead\u0632\ufeaf"; field in TestBidiTransform 333 int index = letters.indexOf(chars[i]); in shapeLetters() 335 chars[i] = letters.charAt(index ^ 1); in shapeLetters()
|
/external/python/cpython3/Lib/test/ |
D | test_pprint.py | 759 letters = b'abcdefghijklmnopqrstuvwxyz' 760 self.assertEqual(pprint.pformat(letters, width=29), repr(letters)) 761 self.assertEqual(pprint.pformat(letters, width=19), """\ 764 self.assertEqual(pprint.pformat(letters, width=18), """\ 768 self.assertEqual(pprint.pformat(letters, width=16), """\ 786 self.assertEqual(pprint.pformat({'a': 1, 'b': letters, 'c': 2}, 793 self.assertEqual(pprint.pformat({'a': 1, 'b': letters, 'c': 2}, 800 self.assertEqual(pprint.pformat([[[[[[letters]]]]]], width=25), """\ 815 letters = bytearray(b'abcdefghijklmnopqrstuvwxyz') 816 self.assertEqual(pprint.pformat(letters, width=40), repr(letters)) [all …]
|
D | test_weakset.py | 29 self.letters = [ustr(c) for c in string.ascii_letters] 53 for c in self.letters: 63 for c in self.letters: 84 s = WeakSet(self.letters) 86 for c in self.letters: 87 self.assertEqual(c in i, c in self.items2 and c in self.letters) 88 self.assertEqual(s, WeakSet(self.letters)) 100 self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters))) 109 for c in self.letters: 122 for c in self.letters:
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/Generic/ |
D | 2008-01-30-LoadCrash.ll | 3 @letters.3100 = external constant [63 x i8] ; <[63 x i8]*> [#uses=2] 11 %tmp83 = getelementptr [63 x i8], [63 x i8]* @letters.3100, i32 0, i32 %tmp8182 ; <i8*> [#uses=1] 16 %tmp92 = getelementptr [63 x i8], [63 x i8]* @letters.3100, i32 0, i32 %tmp9091 ; <i8*> [#uses=1]
|
/external/llvm/test/CodeGen/Generic/ |
D | 2008-01-30-LoadCrash.ll | 3 @letters.3100 = external constant [63 x i8] ; <[63 x i8]*> [#uses=2] 11 %tmp83 = getelementptr [63 x i8], [63 x i8]* @letters.3100, i32 0, i32 %tmp8182 ; <i8*> [#uses=1] 16 %tmp92 = getelementptr [63 x i8], [63 x i8]* @letters.3100, i32 0, i32 %tmp9091 ; <i8*> [#uses=1]
|
/external/icu/icu4c/source/data/translit/ |
D | uz_Cyrl_uz_Latn.txt | 10 $letters = [[:sc=Latn:][:sc=Cyrl:] & [:L:]] ; 12 $lower = [$letters & [:Ll:]] ; 24 # нг ↔ ng ; as separate letters works 25 # Нг ↔ Ng ; as separate letters works
|
D | Han_Spacedhan.txt | 17 # add space between any Han or terminal punctuation and letters, and 18 # between letters and Han or initial punct 21 # remove spacing between ideographs and other letters
|
D | blt_blt_FONIPA.txt | 22 # Currently, these rules only support tone marks, but not tone letters. 66 # TODO: Also support tone letters, not just tone marks. 73 # TODO: Also support tone letters, not just tone marks. 109 {[ꪪ ꪫ]} $IPA_TONE → w; # at the end of a syllable (before tone letters)
|
/external/libxml2/test/schematron/ |
D | zvon12.sct | 4 … <report test="string-length(@bbb) < 2">There is not enough letters in the abbreviation</report> 5 … <report test="string-length(@bbb) > 3">There is too much letters in the abbreviation</report>
|
/external/curl/docs/cmdline-opts/ |
D | globoff.d | 6 you can specify URLs that contain the letters {}[] without having them being 7 interpreted by curl itself. Note that these letters are not normal legal URL
|
/external/wpa_supplicant_8/src/p2p/ |
D | p2p_utils.c | 30 u8 letters = 'Z' - 'A' + 1; in p2p_random() local 38 val %= 2 * letters + numbers; in p2p_random() 39 if (val < letters) in p2p_random() 41 else if (val < 2 * letters) in p2p_random() 42 buf[i] = 'a' + (val - letters); in p2p_random() 44 buf[i] = '0' + (val - 2 * letters); in p2p_random()
|
/external/python/cpython2/Lib/test/ |
D | test_weakset.py | 43 self.letters = [SomeClass(c) for c in string.ascii_letters] 73 for c in self.letters: 83 for c in self.letters: 104 s = WeakSet(self.letters) 106 for c in self.letters: 107 self.assertEqual(c in i, c in self.items2 and c in self.letters) 108 self.assertEqual(s, WeakSet(self.letters)) 120 self.assertTrue(not self.s.isdisjoint(WeakSet(self.letters))) 129 for c in self.letters: 142 for c in self.letters:
|
D | test_pkgimport.py | 10 self.package_name += random.choose(string.letters) 62 var += random.choose(string.letters)
|
/external/icu/icu4c/source/common/ |
D | ubiditransform.cpp | 89 uint32_t letters; /* letter option for ArabicShaping */ member 276 if ((pTransform->letters | pTransform->digits) == 0) { in action_shapeArabic() 280 …doShape(pTransform, pTransform->letters | pTransform->digits | pTransform->pActiveScheme->lettersD… in action_shapeArabic() 287 doShape(pTransform, pTransform->letters | pTransform->pActiveScheme->lettersDir, in action_shapeArabic() 483 pBiDiTransform->letters = shapingOptions & ~U_SHAPE_DIGITS_MASK; in ubiditransform_transform()
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/RISCV/ |
D | rv32i-invalid.s | 5 fence iorw, iore # CHECK: :[[@LINE]]:13: error: operand must be formed of letters selected in-order… 6 fence wr, wr # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-order from… 7 fence rw, rr # CHECK: :[[@LINE]]:11: error: operand must be formed of letters selected in-order fro… 8 fence 1, rw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-order from … 53 fence %hi(iorw), iorw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-o… 54 fence %lo(iorw), iorw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selected in-o… 55 fence %pcrel_hi(iorw), iorw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selecte… 56 fence %pcrel_lo(iorw), iorw # CHECK: :[[@LINE]]:7: error: operand must be formed of letters selecte…
|
/external/google-breakpad/src/testing/test/ |
D | gmock-more-actions_test.cc | 638 std::string letters = "abc"; in TEST() local 639 a = SetArrayArgument<2>(letters.begin(), letters.end()); in TEST() 687 std::string letters = "abc"; in TEST() local 688 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end()); in TEST() 692 EXPECT_EQ(letters, s); in TEST()
|
/external/googletest/googlemock/test/ |
D | gmock-more-actions_test.cc | 631 std::string letters = "abc"; in TEST() local 632 a = SetArrayArgument<2>(letters.begin(), letters.end()); in TEST() 680 std::string letters = "abc"; in TEST() local 681 Action<MyFunction> a = SetArrayArgument<1>(letters.begin(), letters.end()); in TEST() 685 EXPECT_EQ(letters, s); in TEST()
|
/external/cldr/tools/java/org/unicode/cldr/tool/ |
D | GenerateScriptMetadata.txt | 35 # Derived from whether the script contains RTL letters according to the Bidi_Class property 36 # 7 - LB letters: 37 # YES if the major languages using the script allow linebreaks between letters (excluding hyphenat…
|
/external/icu/icu4c/source/samples/ucnv/ |
D | convsamp.cpp | 311 uint32_t letters=0, total=0; in convsample_05() local 368 letters++; in convsample_05() 374 printf("%d letters out of %d total UChars.\n", letters, total); in convsample_05() 407 uint32_t letters=0, total=0; in convsample_06() local 466 letters++; in convsample_06() 490 printf("%d letters out of %d total UChars.\n", letters, total); in convsample_06()
|