Home
last modified time | relevance | path

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

/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
Dorg.eclipse.equinox.p2.reconciler.dropins_1.1.2.R36x_v20101111-1430.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
/external/icu/icu4j/main/tests/collate/src/com/ibm/icu/dev/test/collator/
DCollationTest.java1093 int pipeIndex = fileLine.indexOf('|', start);
1094 if (pipeIndex >= 0 && pipeIndex < i) {
1095 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1102 start = pipeIndex + 1;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/collator/
DCollationTest.java1097 int pipeIndex = fileLine.indexOf('|', start);
1098 if (pipeIndex >= 0 && pipeIndex < i) {
1099 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));
1106 start = pipeIndex + 1;
/external/icu/icu4c/source/test/intltest/
Dcollationtest.cpp999 int32_t pipeIndex = fileLine.indexOf((UChar)0x7c, start, i - start); // '|' in parseString() local
1000 if(pipeIndex >= 0) { in parseString()
1001 prefix = fileLine.tempSubStringBetween(start, pipeIndex).unescape(); in parseString()
1008 start = pipeIndex + 1; in parseString()