Home | History | Annotate | Download | only in intltest

Lines Matching defs:bp

842     int32_t    bp;
855 for (bp = t->bi->first(); bp != BreakIterator::DONE; bp = t->bi->next()) {
856 if (prevBP == bp) {
859 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
865 for (i=prevBP+1; i<bp; i++) {
875 if (t->expectedBreaks->elementAti(bp) == 0) {
876 int expected[] = {0, bp};
879 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
883 int32_t expectedTagVal = t->expectedBreaks->elementAti(bp);
887 int32_t line = t->srcLine->elementAti(bp);
892 bp, line, t->srcCol->elementAti(bp), rs, expectedTagVal);
897 prevBP = bp;
912 for (bp = t->bi->last(); bp != BreakIterator::DONE; bp = t->bi->previous()) {
913 if (prevBP == bp) {
916 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
922 for (i=prevBP-1; i>bp; i--) {
930 if (t->expectedBreaks->elementAti(bp) == 0) {
932 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
936 int32_t expectedTagVal = t->expectedBreaks->elementAti(bp);
940 int line = t->srcLine->elementAti(bp);
945 bp, line, t->srcCol->elementAti(bp), rs, expectedTagVal);
949 prevBP = bp;