/external/guava/guava-tests/test/com/google/common/base/ |
D | SplitterTest.java | 53 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit() local 54 assertThat(letters).iteratesAs("a", "b", "c"); in testCharacterSimpleSplit() 67 List<String> letters = COMMA_SPLITTER.splitToList(simple); in testCharacterSimpleSplitToList() local 68 assertThat(letters).iteratesAs("a", "b", "c"); in testCharacterSimpleSplitToList() 79 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter() local 80 assertThat(letters).iteratesAs("a,b,c"); in testCharacterSimpleSplitWithNoDelimiter() 85 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter() local 86 assertThat(letters).iteratesAs("a", "", "b", "c"); in testCharacterSplitWithDoubleDelimiter() 91 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace() local 92 assertThat(letters).iteratesAs("a", "", " b", "c"); in testCharacterSplitWithDoubleDelimiterAndSpace() [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/base/super/com/google/common/base/ |
D | SplitterTest.java | 50 Iterable<String> letters = COMMA_SPLITTER.split(simple); in testCharacterSimpleSplit() local 51 assertThat(letters).iteratesAs("a", "b", "c"); in testCharacterSimpleSplit() 64 List<String> letters = COMMA_SPLITTER.splitToList(simple); in testCharacterSimpleSplitToList() local 65 assertThat(letters).iteratesAs("a", "b", "c"); in testCharacterSimpleSplitToList() 76 Iterable<String> letters = Splitter.on('.').split(simple); in testCharacterSimpleSplitWithNoDelimiter() local 77 assertThat(letters).iteratesAs("a,b,c"); in testCharacterSimpleSplitWithNoDelimiter() 82 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiter() local 83 assertThat(letters).iteratesAs("a", "", "b", "c"); in testCharacterSplitWithDoubleDelimiter() 88 Iterable<String> letters = COMMA_SPLITTER.split(doubled); in testCharacterSplitWithDoubleDelimiterAndSpace() local 89 assertThat(letters).iteratesAs("a", "", " b", "c"); in testCharacterSplitWithDoubleDelimiterAndSpace() [all …]
|
/external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/charsetdet/sbcs/ |
D | NGramParser.java | 73 private char[] letters = new char[N_GRAM_SIZE]; field in NGramParser 117 letters[letterCount++] = letter; in addLetter() 120 String key = new String(letters); in addLetter() 126 letters[i] = letters[i + 1]; in addLetter()
|
/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/chromium-trace/catapult/third_party/webapp2/webapp2_extras/ |
D | security.py | 32 ALPHA = string.letters 33 ALPHANUMERIC = string.letters + string.digits 34 ASCII_PRINTABLE = string.letters + string.digits + string.punctuation
|
/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/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/icu/icu4c/source/data/translit/ |
D | uz_Cyrl_uz_Latn.txt | 11 $letters = [[:sc=Latn:][:sc=Cyrl:] & [:L:]] ; 13 $lower = [$letters & [:Ll:]] ;
|
D | Latin_Katakana.txt | 271 '~' → ; # delete stray tildes between letters 272 [:Katakana:] { '' } [:Latin:] → ; # delete stray quotes between letters
|
/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/gmock/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/toybox/lib/ |
D | args.c | 382 char *letters[]={"s",""}; in get_optflags() local 477 help_exit("Need%s %d argument%s", letters[!!(gof.minargs-1)], in get_optflags() 478 gof.minargs, letters[!(gof.minargs-1)]); in get_optflags() 480 help_exit("Max %d argument%s", gof.maxargs, letters[!(gof.maxargs-1)]); in get_optflags()
|
/external/icu/icu4c/source/samples/ucnv/ |
D | convsamp.cpp | 302 uint32_t letters=0, total=0; in convsample_05() local 359 letters++; in convsample_05() 365 printf("%d letters out of %d total UChars.\n", letters, total); in convsample_05() 398 uint32_t letters=0, total=0; in convsample_06() local 457 letters++; in convsample_06() 481 printf("%d letters out of %d total UChars.\n", letters, total); in convsample_06()
|
/external/ltrace/testsuite/lib/ |
D | ltrace.exp | 290 set letters "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789" 291 set numLetters [string length $letters] 309 append randstr [string index $letters $r]
|
/external/dbus/dbus/ |
D | dbus-sysdeps.c | 576 static const char letters[] = in _dbus_generate_random_ascii() local 589 letters[_dbus_string_get_byte (str, i) % in _dbus_generate_random_ascii() 590 (sizeof (letters) - 1)]); in _dbus_generate_random_ascii()
|
/external/libxml2/result/schematron/ |
D | zvon12_2.err | 2 /AAA/BBB line 2: There is too much letters in the abbreviation
|
D | zvon12_0.err | 2 /AAA/BBB line 2: There is not enough letters in the abbreviation
|
/external/curl/tests/data/ |
D | DISABLED | 4 # Lines starting with '#' letters are treated as comments.
|
D | test191 | 21 FTP URL with ?-letters in username and password
|
D | test58 | 26 HTTP PUT from file with weird letters
|
/external/icu/icu4j/perf-tests/data/conversion/ |
D | english.txt | 8 …letters and other characters by assigning a number for each one. Before Unicode was invented, ther…
|
/external/parameter-framework/upstream/test/functional-tests-legacy/PfwTestCase/Types/ |
D | tSTRING_128.py | 145 value=value+str(random.choice(string.letters)) 173 value=value+str(random.choice(string.letters))
|
/external/markdown/markdown/ |
D | inlinepatterns.py | 363 letters = [codepoint2name(ord(letter)) for letter in email] 364 el.text = markdown.AtomicString(''.join(letters))
|
/external/hyphenation-patterns/Ethi/ |
D | hyph-und-ethi.lic.txt | 20 % the Ethiopic script (which we thus make letters for this purpose).
|
/external/iptables/extensions/ |
D | libxt_LOG.man | 20 Prefix log messages with the specified prefix; up to 29 letters long,
|