• Home
  • Raw
  • Download

Lines Matching refs:bi

149           const UBreakIterator *bi,  in ubrk_safeClone()  argument
157 if (bi == NULL) { in ubrk_safeClone()
168 BreakIterator *newBI = ((BreakIterator *)bi)->clone(); in ubrk_safeClone()
180 ubrk_close(UBreakIterator *bi) in ubrk_close() argument
182 delete (BreakIterator *)bi; in ubrk_close()
186 ubrk_setText(UBreakIterator* bi, in ubrk_setText() argument
193 ((BreakIterator*)bi)->setText(&ut, *status); in ubrk_setText()
201 ubrk_setUText(UBreakIterator *bi, in ubrk_setUText() argument
205 ((BreakIterator*)bi)->setText(text, *status); in ubrk_setUText()
213 ubrk_current(const UBreakIterator *bi) in ubrk_current() argument
216 return ((BreakIterator*)bi)->current(); in ubrk_current()
220 ubrk_next(UBreakIterator *bi) in ubrk_next() argument
223 return ((BreakIterator*)bi)->next(); in ubrk_next()
227 ubrk_previous(UBreakIterator *bi) in ubrk_previous() argument
230 return ((BreakIterator*)bi)->previous(); in ubrk_previous()
234 ubrk_first(UBreakIterator *bi) in ubrk_first() argument
237 return ((BreakIterator*)bi)->first(); in ubrk_first()
241 ubrk_last(UBreakIterator *bi) in ubrk_last() argument
244 return ((BreakIterator*)bi)->last(); in ubrk_last()
248 ubrk_preceding(UBreakIterator *bi, in ubrk_preceding() argument
252 return ((BreakIterator*)bi)->preceding(offset); in ubrk_preceding()
256 ubrk_following(UBreakIterator *bi, in ubrk_following() argument
260 return ((BreakIterator*)bi)->following(offset); in ubrk_following()
279 ubrk_isBoundary(UBreakIterator *bi, int32_t offset) in ubrk_isBoundary() argument
281 return ((BreakIterator*)bi)->isBoundary(offset); in ubrk_isBoundary()
286 ubrk_getRuleStatus(UBreakIterator *bi) in ubrk_getRuleStatus() argument
288 return ((BreakIterator*)bi)->getRuleStatus(); in ubrk_getRuleStatus()
292 ubrk_getRuleStatusVec(UBreakIterator *bi, int32_t *fillInVec, int32_t capacity, UErrorCode *status) in ubrk_getRuleStatusVec() argument
294 return ((BreakIterator*)bi)->getRuleStatusVec(fillInVec, capacity, *status); in ubrk_getRuleStatusVec()
299 ubrk_getLocaleByType(const UBreakIterator *bi, in ubrk_getLocaleByType() argument
303 if (bi == NULL) { in ubrk_getLocaleByType()
309 return ((BreakIterator*)bi)->getLocaleID(type, *status); in ubrk_getLocaleByType()
314 ubrk_refreshUText(UBreakIterator *bi, in ubrk_refreshUText() argument
318 BreakIterator *bii = reinterpret_cast<BreakIterator *>(bi); in ubrk_refreshUText()
323 ubrk_getBinaryRules(UBreakIterator *bi, in ubrk_getBinaryRules() argument
335 …if ((rbbi = dynamic_cast<RuleBasedBreakIterator*>(reinterpret_cast<BreakIterator*>(bi))) == NULL) { in ubrk_getBinaryRules()