Lines Matching refs:boundary
62 BreakIterator* boundary; in call() local
68 boundary = BreakIterator::createWordInstance("en", *status); in call()
69 boundary->setText(str); in call()
71 int32_t start = boundary->first(); in call()
72 for (int32_t end = boundary->next(); in call()
74 start = end, end = boundary->next()) in call()
76 printTextRange( *boundary, start, end ); in call()
85 boundary = BreakIterator::createCharacterInstance(Locale::getUS(), *status); in call()
86 boundary->setText(str); in call()
88 int32_t start = boundary->first(); in call()
89 for (int32_t end = boundary->next(); in call()
91 start = end, end = boundary->next()) in call()
93 printTextRange( *boundary, start, end ); in call()