Home
last modified time | relevance | path

Searched refs:pipeIndex (Results 1 – 3 of 3) sorted by relevance

/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCollationTest.java1083 int pipeIndex = fileLine.indexOf('|', start);
1084 if (pipeIndex >= 0 && pipeIndex < i) {
1085 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1092 start = pipeIndex + 1;
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationTest.java1080 int pipeIndex = fileLine.indexOf('|', start);
1081 if (pipeIndex >= 0 && pipeIndex < i) {
1082 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1089 start = pipeIndex + 1;
/external/icu/icu4c/source/test/intltest/
Dcollationtest.cpp997 int32_t pipeIndex = fileLine.indexOf((UChar)0x7c, start, i - start); // '|' in parseString() local
998 if(pipeIndex >= 0) { in parseString()
999 prefix = fileLine.tempSubStringBetween(start, pipeIndex).unescape(); in parseString()
1006 start = pipeIndex + 1; in parseString()