Lines Matching defs:boundary
66 BreakIterator* boundary;
72 boundary = BreakIterator::createWordInstance("en", *status);
73 boundary->setText(str);
75 int32_t start = boundary->first();
76 for (int32_t end = boundary->next();
78 start = end, end = boundary->next())
80 printTextRange( *boundary, start, end );
89 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status);
90 boundary->setText(str);
92 int32_t start = boundary->first();
93 for (int32_t end = boundary->next();
95 start = end, end = boundary->next())
97 printTextRange( *boundary, start, end );