Home
last modified time | relevance | path

Searched refs:fBI (Results 1 – 7 of 7) sorted by relevance

/external/icu/icu4c/source/common/
Drbbi_cache.cpp29 fBI(bi), fBreaks(status), fPositionInCache(-1), in DictionaryCache()
137 UText *text = &fBI->fText; in populateDictionary()
145 category = ucptrie_get(fBI->fData->fTrie, c); in populateDictionary()
146 uint32_t dictStart = fBI->fData->fForwardTable->fDictCategoriesStart; in populateDictionary()
153 category = ucptrie_get(fBI->fData->fTrie, c); in populateDictionary()
161 const LanguageBreakEngine *lbe = fBI->getLanguageBreakEngine(c); in populateDictionary()
171 category = ucptrie_get(fBI->fData->fTrie, c); in populateDictionary()
208 fBI(bi), fSideBuffer(status) { in BreakCache()
228 fBI->fPosition = fTextIdx; in current()
229 fBI->fRuleStatusIndex = fStatuses[fBufIdx]; in current()
[all …]
Drbbi_cache.h57 RuleBasedBreakIterator *fBI; variable
95 fTextIdx = fBI->fPosition = fBoundaries[fBufIdx]; in next()
96 fBI->fRuleStatusIndex = fStatuses[fBufIdx]; in next()
186 RuleBasedBreakIterator *fBI; variable
/external/icu/libicu/cts_headers/
Drbbi_cache.h57 RuleBasedBreakIterator *fBI; variable
95 fTextIdx = fBI->fPosition = fBoundaries[fBufIdx]; in next()
96 fBI->fRuleStatusIndex = fStatuses[fBufIdx]; in next()
186 RuleBasedBreakIterator *fBI; variable
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/rbbi/
DRBBIMonkeyTest.java745 fBI = fRuleSet.createICUBreakIterator(); in setup()
800 if (fBI == null) { in run()
839 fBI.setText(fTestData.fString); in testForwards()
841 for (int bk=fBI.first(); bk != BreakIterator.DONE; bk=fBI.next()) { in testForwards()
856 fBI.setText(fTestData.fString); in testFollowing()
859 int bk = fBI.following(i); in testFollowing()
880 fBI.setText(fTestData.fString); in testPrevious()
882 for (int bk=fBI.last(); bk != BreakIterator.DONE; bk=fBI.previous()) { in testPrevious()
913 fBI.setText(fTestData.fString); in testPreceding()
916 int bk = fBI.preceding(i); in testPreceding()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/rbbi/
DRBBIMonkeyTest.java748 fBI = fRuleSet.createICUBreakIterator(); in setup()
803 if (fBI == null) { in run()
842 fBI.setText(fTestData.fString); in testForwards()
844 for (int bk=fBI.first(); bk != BreakIterator.DONE; bk=fBI.next()) { in testForwards()
859 fBI.setText(fTestData.fString); in testFollowing()
862 int bk = fBI.following(i); in testFollowing()
883 fBI.setText(fTestData.fString); in testPrevious()
885 for (int bk=fBI.last(); bk != BreakIterator.DONE; bk=fBI.previous()) { in testPrevious()
916 fBI.setText(fTestData.fString); in testPreceding()
919 int bk = fBI.preceding(i); in testPreceding()
[all …]
/external/icu/icu4c/source/test/intltest/
Drbbimonkeytest.cpp635 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()
[all …]
Drbbimonkeytest.h193 LocalPointer<RuleBasedBreakIterator> fBI; variable