Home | History | Annotate | Download | only in intltest

Lines Matching defs:wb

741     BreakIterator *wb = BreakIterator::createWordInstance(Locale::getDefault(), status);
747 wb->setText(testString);
749 if (wb->first() != 0)
751 if (wb->next() != 3)
753 if (wb->current() != 4 && wb->next() != 4)
755 delete wb;