Searched refs:pipeIndex (Results 1 – 4 of 4) sorted by relevance
META-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF ...
1093 int pipeIndex = fileLine.indexOf('|', start);1094 if (pipeIndex >= 0 && pipeIndex < i) {1095 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));1102 start = pipeIndex + 1;
1097 int pipeIndex = fileLine.indexOf('|', start);1098 if (pipeIndex >= 0 && pipeIndex < i) {1099 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));1106 start = pipeIndex + 1;
999 int32_t pipeIndex = fileLine.indexOf((UChar)0x7c, start, i - start); // '|' in parseString() local1000 if(pipeIndex >= 0) { in parseString()1001 prefix = fileLine.tempSubStringBetween(start, pipeIndex).unescape(); in parseString()1008 start = pipeIndex + 1; in parseString()