Home | History | Annotate | Download | only in intltest

Lines Matching refs:startPos

721     int32_t startPos = 0;
723 startPos != -1 && startPos < test1.length();
724 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
729 for ( occurrences = 0, startPos = 10;
730 startPos != -1 && startPos < test1.length();
731 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
737 for ( occurrences = 0, startPos = 5;
738 startPos != -1 && startPos < test1.length();
739 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
745 for ( startPos=0, occurrences=0;
746 startPos != -1 && startPos < test3.length();
747 (startPos = test3.indexOf(test4, startPos)) != -1 ? (++occurrences, startPos += 2) : 0)
752 for ( startPos=10, occurrences=0;
753 startPos != -1 && startPos < test3.length();
754 (startPos = test3.indexOf(test4, startPos)) != -1 ? (++occurrences, startPos += 2) : 0)
760 for ( occurrences = 0, startPos = 0;
761 startPos != -1 && startPos < test1.length();
762 (startPosstartPos)) != -1 ? (++occurrences, startPos += 1) : 0)
767 for ( occurrences = 0, startPos = 10;
768 startPos != -1 && startPos < test1.length();
769 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
774 for ( occurrences = 0, startPos = 5, endPos = 28;
775 startPos != -1 && startPos < test1.length();
776 (startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
783 for( occurrences =0, startPos=0; startPos < test3.length(); startPos +=1){
784 subString.append(test3, startPos, test3.length());
793 for ( occurrences = 0, startPos = 0;
794 startPos != -1 && startPos < test3.length();
795 (startPos = test3.indexOf(testChar32, startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
801 for ( occurrences = 0, startPos = 5;
802 startPos != -1 && startPos < test3.length();
803 (startPos = test3.indexOf(testChar32, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
817 for ( occurrences = 0, startPos = 32;
818 startPos != -1;
819 (startPos = test1.lastIndexOf(test2, 5, startPos - 5)) != -1 ? ++occurrences : 0)
824 for ( occurrences = 0, startPos = 32;
825 startPos != -1;
826 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0)
832 startPos=test3.length();
834 startPos != -1;
835 (startPos = test3.lastIndexOf(testChar32, 5, startPos - 5)) != -1 ? ++occurrences : 0)