Home | History | Annotate | Download | only in text

Lines Matching refs:endPos

607     size_t endPos;
608 while ((endPos = find(separator, startPos)) != notFound) {
609 if (allowEmptyEntries || startPos != endPos)
610 result.append(substring(startPos, endPos - startPos));
611 startPos = endPos + separator.length();
627 size_t endPos;
628 while ((endPos = find(separator, startPos)) != notFound) {
629 if (allowEmptyEntries || startPos != endPos)
630 result.append(substring(startPos, endPos - startPos));
631 startPos = endPos + 1;