Home | History | Annotate | Download | only in text

Lines Matching defs:startPos

614     int startPos = 0;
616 while ((endPos = find(separator, startPos)) != -1) {
617 if (allowEmptyEntries || startPos != endPos)
618 result.append(substring(startPos, endPos - startPos));
619 startPos = endPos + separator.length();
621 if (allowEmptyEntries || startPos != static_cast<int>(length()))
622 result.append(substring(startPos));
634 int startPos = 0;
636 while ((endPos = find(separator, startPos)) != -1) {
637 if (allowEmptyEntries || startPos != endPos)
638 result.append(substring(startPos, endPos - startPos));
639 startPos = endPos + 1;
641 if (allowEmptyEntries || startPos != static_cast<int>(length()))
642 result.append(substring(startPos));