Home
last modified time | relevance | path

Searched refs:testChars (Results 1 – 10 of 10) sorted by relevance

/external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
DUnicodeSetPerf.java25 UnicodeSet testChars; field in UnicodeSetPerf
41 testChars = new UnicodeSet(pattern); in setup()
42 it = new UnicodeSetIterator(testChars); in setup()
62 return testChars.size(); in testUnicodeSetAdd()
82 return testChars.size();
89 us.set(testChars);
133 UnicodeSetIterator uit = new UnicodeSetIterator(testChars);
140 return testChars.size();
161 return testChars.size();
/external/icu/icu4c/source/extra/scrptrun/
Dsrtest.cpp18 UChar testChars[] = { variable
28 int32_t testLength = UPRV_LENGTHOF(testChars);
32 icu::ScriptRun scriptRun(testChars, 0, testLength); in main()
/external/icu/icu4c/source/samples/citer/
Dciter.cpp55 const char testChars[] = "Now is the time for all good men to come " in TestUChariter() local
58 UnicodeString testString(testChars,""); in TestUChariter()
64 u_fprintf(out, "testText = %s", testChars); in TestUChariter()
122 const char testChars[] = "Now is the time for all good men to come " in TestStringiter() local
125 UnicodeString testString(testChars,""); in TestStringiter()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DBreakIteratorTest.java37 private void doOtherInvariantTest(BreakIterator tb, String testChars) in doOtherInvariantTest() argument
43 for (int i = 0; i < testChars.length(); i++) { in doOtherInvariantTest()
44 work.setCharAt(0, testChars.charAt(i)); in doOtherInvariantTest()
45 for (int j = 0; j < testChars.length(); j++) { in doOtherInvariantTest()
46 work.setCharAt(3, testChars.charAt(j)); in doOtherInvariantTest()
64 for (int i = 0; i < testChars.length(); i++) { in doOtherInvariantTest()
65 char c = testChars.charAt(i); in doOtherInvariantTest()
69 for (int j = 0; j < testChars.length(); j++) { in doOtherInvariantTest()
70 c = testChars.charAt(j); in doOtherInvariantTest()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DBreakIteratorTest.java40 private void doOtherInvariantTest(BreakIterator tb, String testChars) in doOtherInvariantTest() argument
46 for (int i = 0; i < testChars.length(); i++) { in doOtherInvariantTest()
47 work.setCharAt(0, testChars.charAt(i)); in doOtherInvariantTest()
48 for (int j = 0; j < testChars.length(); j++) { in doOtherInvariantTest()
49 work.setCharAt(3, testChars.charAt(j)); in doOtherInvariantTest()
67 for (int i = 0; i < testChars.length(); i++) { in doOtherInvariantTest()
68 char c = testChars.charAt(i); in doOtherInvariantTest()
72 for (int j = 0; j < testChars.length(); j++) { in doOtherInvariantTest()
73 c = testChars.charAt(j); in doOtherInvariantTest()
/external/jackson-core/src/test/java/com/fasterxml/jackson/core/read/
DNumberParsingTest.java157 char[] testChars = "123456789".toCharArray(); in testIntParsing() local
159 assertEquals(3, NumberInput.parseInt(testChars, 2, 1)); in testIntParsing()
160 assertEquals(123, NumberInput.parseInt(testChars, 0, 3)); in testIntParsing()
161 assertEquals(2345, NumberInput.parseInt(testChars, 1, 4)); in testIntParsing()
162 assertEquals(9, NumberInput.parseInt(testChars, 8, 1)); in testIntParsing()
163 assertEquals(456789, NumberInput.parseInt(testChars, 3, 6)); in testIntParsing()
164 assertEquals(23456, NumberInput.parseInt(testChars, 1, 5)); in testIntParsing()
165 assertEquals(123456789, NumberInput.parseInt(testChars, 0, 9)); in testIntParsing()
167 testChars = "32".toCharArray(); in testIntParsing()
168 assertEquals(32, NumberInput.parseInt(testChars, 0, 2)); in testIntParsing()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/util/
DLocaleDataTest.java149 final char[] testChars = { in TestEnglishExemplarCharacters() local
160 if (testChars[type] > 0 && !exSet.contains(testChars[type])) { in TestEnglishExemplarCharacters()
161 … errln("Character '" + testChars[type] + "' is not included in exemplar type " + type); in TestEnglishExemplarCharacters()
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/util/
DLocaleDataTest.java146 final char[] testChars = { in TestEnglishExemplarCharacters() local
157 if (testChars[type] > 0 && !exSet.contains(testChars[type])) { in TestEnglishExemplarCharacters()
158 … errln("Character '" + testChars[type] + "' is not included in exemplar type " + type); in TestEnglishExemplarCharacters()
/external/auto/value/src/test/java/com/google/auto/value/processor/
DPropertyAnnotationsTest.java105 char[] testChars() default {'a', 'b'}; in testChars() method
/external/icu/icu4c/source/test/cintltst/
Dcloctst.c2977 UChar testChars[] = { in TestEnglishExemplarCharacters() local
2996 if (!uset_contains(exSet, (UChar32)testChars[i])) { in TestEnglishExemplarCharacters()
2997 log_err("Character U+%04X is not included in exemplar type %d\n", testChars[i], i); in TestEnglishExemplarCharacters()