Searched refs:pipeIndex (Results 1 – 3 of 3) sorted by relevance
1083 int pipeIndex = fileLine.indexOf('|', start);1084 if (pipeIndex >= 0 && pipeIndex < i) {1085 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));1092 start = pipeIndex + 1;
1080 int pipeIndex = fileLine.indexOf('|', start);1081 if (pipeIndex >= 0 && pipeIndex < i) {1082 String tmpPrefix = Utility.unescape(fileLine.substring(start, pipeIndex));1089 start = pipeIndex + 1;
997 int32_t pipeIndex = fileLine.indexOf((UChar)0x7c, start, i - start); // '|' in parseString() local998 if(pipeIndex >= 0) { in parseString()999 prefix = fileLine.tempSubStringBetween(start, pipeIndex).unescape(); in parseString()1006 start = pipeIndex + 1; in parseString()