Searched refs:characterPos (Results 1 – 1 of 1) sorted by relevance
219 int characterPos = -1; in splitQuotedString() local220 while (++characterPos < length) { in splitQuotedString()221 final char mustBeQuote = inputString.charAt(characterPos); in splitQuotedString()223 while (++characterPos < length) { in splitQuotedString()224 final char currentChar = inputString.charAt(characterPos); in splitQuotedString()226 final char peekAhead = characterPos < length - 1 in splitQuotedString()227 ? inputString.charAt(characterPos + 1) : 0; in splitQuotedString()230 characterPos += 1; // skip the second quote in splitQuotedString()236 characterPos += 1; // skip the divider in splitQuotedString()