OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:testString1
(Results
1 - 9
of
9
) sorted by null
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
ContactsDictionaryUtilsTest.java
37
final String
testString1
= "Larry Page";
39
testString1
,
testString1
.length(), 0 /* startIndex */));
42
testString1
,
testString1
.length(), 6 /* startIndex */));
46
testString2,
testString1
.length(), 0 /* startIndex */));
50
testString3,
testString1
.length(), 0 /* startIndex */));
/packages/apps/ContactsCommon/tests/src/com/android/contacts/common/format/
TextHighlighterTest.java
92
final SpannableString
testString1
= new SpannableString("alongtest");
93
mTextHighlighter.applyMaskingHighlight(
testString1
, 2, 4);
94
assertEquals(2, SpannedTestUtils.getNextTransition(
testString1
, 0));
95
assertEquals(4, SpannedTestUtils.getNextTransition(
testString1
, 2));
97
mTextHighlighter.applyMaskingHighlight(
testString1
, 3, 6);
98
assertEquals(2, SpannedTestUtils.getNextTransition(
testString1
, 0));
99
assertEquals(4, SpannedTestUtils.getNextTransition(
testString1
, 3));
101
mTextHighlighter.applyMaskingHighlight(
testString1
, 4, 5);
102
assertEquals(3, SpannedTestUtils.getNextTransition(
testString1
, 2));
104
mTextHighlighter.applyMaskingHighlight(
testString1
, 7, 8)
[
all
...]
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
RBBIAPITest.java
370
String
testString1
= "Write here. \u092d\u0301\u0930\u0924 \u0938\u0941\u0902\u0926\u0930 a\u0301u";
372
charIter1.setText(
testString1
);
374
doBoundaryTest(charIter1,
testString1
, bounds1);
376
wordIter2.setText(
testString1
);
378
doBoundaryTest(wordIter2,
testString1
, bounds2);
/libcore/luni/src/test/java/libcore/java/util/regex/
OldMatcherTest.java
63
String
testString1
= "babbabbcccabbabbabbabbabb";
66
Matcher mat = pat.matcher(
testString1
);
71
assertEquals("Reset should return itself 2", mat, mat.reset(
testString1
));
204
String
testString1
= "babbabbcccabbabbabbabbabb";
207
Matcher mat1 = pat.matcher(
testString1
);
/external/icu/icu4c/source/test/cintltst/
reapits.c
279
UChar
testString1
[30];
302
u_uastrncpy(
testString1
, "abcccd", UPRV_LENGTHOF(pat));
306
uregex_setText(clone1,
testString1
, -1, &status);
[
all
...]
capitst.c
[
all
...]
/external/icu/icu4c/source/test/intltest/
rbbiapts.cpp
597
UnicodeString
testString1
= "abc123..abc";
607
bi->setText(
testString1
);
608
doBoundaryTest(*bi,
testString1
, bounds1);
624
UnicodeString
testString1
= "$@!$@!X$@!!X";
634
bi->setText(
testString1
);
635
doBoundaryTest(*bi,
testString1
, bounds1);
652
UnicodeString
testString1
(str);
668
bi->setText(
testString1
);
670
doBoundaryTest(*bi,
testString1
, bounds1);
698
testString1
= "test line. \n"
[
all
...]
rbbitst.cpp
325
UnicodeString
testString1
= "abc123..abc Help me Help me!";
339
bi->setText(
testString1
);
[
all
...]
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
CollationAPITest.java
281
String
testString1
= "XFILE What subset of all possible test cases has the highest probability of detecting the most errors?";
284
CollationElementIterator iterator1 = ((RuleBasedCollator)col).getCollationElementIterator(
testString1
);
286
CharacterIterator chariter=new StringCharacterIterator(
testString1
);
[
all
...]
Completed in 1138 milliseconds