Home | History | Annotate | Download | only in intltest

Lines Matching defs:wb

1535     BreakIterator *wb = BreakIterator::createWordInstance(Locale::getDefault(), status);
1541 wb->setText(testString);
1543 if (wb->first() != 0)
1545 if (wb->next() != 3)
1547 if (wb->current() != 4 && wb->next() != 4)
1549 delete wb;