Home | History | Annotate | Download | only in utils

Lines Matching defs:currPos

1136      int currPos = start;
1141 for (; currPos < limit
1142 && XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1143 currPos++) { }
1147 if (currPos == limit) {
1153 while (currPos < limit) {
1154 int startNonWhitespace = currPos;
1157 for (; currPos < limit
1158 && !XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1159 currPos++) { }
1163 if (startNonWhitespace != currPos) {
1169 currPos - startNonWhitespace);
1172 int startWhitespace = currPos;
1175 for (; currPos < limit
1176 && XMLCharacterRecognizer.isWhiteSpace(ch[currPos]);
1177 currPos++) { }
1179 if (startWhitespace != currPos) {