Home | History | Annotate | Download | only in intltest

Lines Matching refs:startPos

716     int32_t startPos = 0;
718 startPos != -1 && startPos < test1.length();
719 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
724 for ( occurrences = 0, startPos = 10;
725 startPos != -1 && startPos < test1.length();
726 (startPos = test1.indexOf(test2, startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
732 for ( occurrences = 0, startPos = 5;
733 startPos != -1 && startPos < test1.length();
734 (startPos = test1.indexOf(test2, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 4) : 0)
740 for ( startPos=0, occurrences=0;
741 startPos != -1 && startPos < test3.length();
742 (startPos = test3.indexOf(test4, startPos)) != -1 ? (++occurrences, startPos += 2) : 0)
747 for ( startPos=10, occurrences=0;
748 startPos != -1 && startPos < test3.length();
749 (startPos = test3.indexOf(test4, startPos)) != -1 ? (++occurrences, startPos += 2) : 0)
755 for ( occurrences = 0, startPos = 0;
756 startPos != -1 && startPos < test1.length();
757 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
762 for ( occurrences = 0, startPos = 10;
763 startPos != -1 && startPos < test1.length();
764 (startPos = test1.indexOf(testChar, startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
769 for ( occurrences = 0, startPos = 5, endPos = 28;
770 startPos != -1 && startPos < test1.length();
771 (startPos = test1.indexOf(testChar, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
778 for( occurrences =0, startPos=0; startPos < test3.length(); startPos +=1){
779 subString.append(test3, startPos, test3.length());
788 for ( occurrences = 0, startPos = 0;
789 startPos != -1 && startPos < test3.length();
790 (startPos = test3.indexOf(testChar32, startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
796 for ( occurrences = 0, startPos = 5;
797 startPos != -1 && startPos < test3.length();
798 (startPos = test3.indexOf(testChar32, startPos, endPos - startPos)) != -1 ? (++occurrences, startPos += 1) : 0)
812 for ( occurrences = 0, startPos = 32;
813 startPos != -1;
814 (startPos = test1.lastIndexOf(test2, 5, startPos - 5)) != -1 ? ++occurrences : 0)
819 for ( occurrences = 0, startPos = 32;
820 startPos != -1;
821 (startPos = test1.lastIndexOf(testChar, 5, startPos - 5)) != -1 ? ++occurrences : 0)
827 startPos=test3.length();
829 startPos != -1;
830 (startPos = test3.lastIndexOf(testChar32, 5, startPos - 5)) != -1 ? ++occurrences : 0)