Home | History | Annotate | Download | only in utils

Lines Matching refs:nextIndex

136                 final int nextIndex = index + 1;
137 if (nextIndex < length && text.charAt(nextIndex) == QUOTE) {
139 index = nextIndex;
143 final int endIndex = text.indexOf(COMMA, nextIndex);
166 final int nextIndex = end + 1;
167 if (nextIndex == length && isQuoted) {
171 if (nextIndex < length && text.charAt(nextIndex) == QUOTE) {
179 sb.append(text.substring(start, nextIndex));
180 start = nextIndex + 1;