Home | History | Annotate | Download | only in ubrkperf

Lines Matching refs:brkit

162 BreakIterator *brkit = NULL;
190 // brkit = BreakIterator::createSentenceInstance(opt_locale, status);
204 brkit = BreakIterator::createCharacterInstance(opt_locale, status);
206 brkit = BreakIterator::createWordInstance(opt_locale, status);
208 brkit = BreakIterator::createLineInstance(opt_locale, status);
210 brkit = BreakIterator::createSentenceInstance(opt_locale, status);
213 brkit = BreakIterator::createCharacterInstance(opt_locale, status);
289 brkit->setText(UnicodeString(text, textSize));
290 brkit->first();
295 while((j = brkit->next()) != BreakIterator::DONE) {
305 brkit->first();
306 while(brkit->next() != BreakIterator::DONE) {
374 brkit->setText(UnicodeString(text, textSize));
375 brkit->first();
377 if(brkit->isBoundary(j)) {
383 while(brkit->next() != BreakIterator::DONE) {
391 if(brkit->isBoundary(j)) {
766 if(brkit != NULL) {
767 delete brkit;