Lines Matching refs:fBI
635 fBI.adoptInstead(fRuleSet->createICUBreakIterator(status)); in setup()
676 if (fBI.isNull()) { in runTest()
704 fBI->setText(fTestData->fString); in testForwards()
706 for (int32_t bk=fBI->first(); bk != BreakIterator::DONE; bk=fBI->next()) { in testForwards()
725 fBI->setText(fTestData->fString); in testFollowing()
728 int32_t bk = fBI->following(i); in testFollowing()
753 fBI->setText(fTestData->fString); in testPrevious()
755 for (int32_t bk=fBI->last(); bk != BreakIterator::DONE; bk=fBI->previous()) { in testPrevious()
775 fBI->setText(fTestData->fString); in testPreceding()
778 int32_t bk = fBI->preceding(i); in testPreceding()
791 if (fBI->preceding(i) != fBI->preceding(fTestData->fString.getChar32Start(i))) { in testPreceding()
813 fBI->setText(fTestData->fString); in testIsBoundary()
815 if (fBI->isBoundary(i)) { in testIsBoundary()
826 fBI->setText(fTestData->fString); in testIsBoundaryRandom()
831 if (fTestData->fExpectedBreaks.charAt(strIdx) != fBI->isBoundary(strIdx)) { in testIsBoundaryRandom()