Home | History | Annotate | Download | only in intltest

Lines Matching refs:wb

1498     BreakIterator *wb = BreakIterator::createWordInstance(Locale::getDefault(), status);
1504 wb->setText(testString);
1506 if (wb->first() != 0)
1508 if (wb->next() != 3)
1510 if (wb->current() != 4 && wb->next() != 4)
1512 delete wb;