Lines Matching refs:boundary
61 BreakIterator* boundary; in call() local
67 boundary = BreakIterator::createWordInstance("en", *status); in call()
68 boundary->setText(str); in call()
70 int32_t start = boundary->first(); in call()
71 for (int32_t end = boundary->next(); in call()
73 start = end, end = boundary->next()) in call()
75 printTextRange( *boundary, start, end ); in call()
84 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call()
85 boundary->setText(str); in call()
87 int32_t start = boundary->first(); in call()
88 for (int32_t end = boundary->next(); in call()
90 start = end, end = boundary->next()) in call()
92 printTextRange( *boundary, start, end ); in call()