Home | History | Annotate | Download | only in intltest

Lines Matching defs:bp

1332     int32_t    bp;
1345 for (bp = t->bi->first(); bp != BreakIterator::DONE; bp = t->bi->next()) {
1346 if (prevBP == bp) {
1349 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
1355 for (i=prevBP+1; i<bp; i++) {
1365 if (t->expectedBreaks->elementAti(bp) == 0) {
1366 int expected[] = {0, bp};
1369 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
1373 int32_t expectedTagVal = t->expectedBreaks->elementAti(bp);
1377 int32_t line = t->srcLine->elementAti(bp);
1382 bp, line, t->srcCol->elementAti(bp), rs, expectedTagVal);
1387 prevBP = bp;
1402 for (bp = t->bi->last(); bp != BreakIterator::DONE; bp = t->bi->previous()) {
1403 if (prevBP == bp) {
1406 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
1412 for (i=prevBP-1; i>bp; i--) {
1420 if (t->expectedBreaks->elementAti(bp) == 0) {
1422 bp, t->srcLine->elementAti(bp), t->srcCol->elementAti(bp));
1426 int32_t expectedTagVal = t->expectedBreaks->elementAti(bp);
1430 int line = t->srcLine->elementAti(bp);
1435 bp, line, t->srcCol->elementAti(bp), rs, expectedTagVal);
1439 prevBP = bp;