Home | History | Annotate | Download | only in text

Lines Matching defs:endPos

615     int endPos;
616 while ((endPos = find(separator, startPos)) != -1) {
617 if (allowEmptyEntries || startPos != endPos)
618 result.append(substring(startPos, endPos - startPos));
619 startPos = endPos + separator.length();
635 int endPos;
636 while ((endPos = find(separator, startPos)) != -1) {
637 if (allowEmptyEntries || startPos != endPos)
638 result.append(substring(startPos, endPos - startPos));
639 startPos = endPos + 1;