Home | History | Annotate | Download | only in i18n

Lines Matching defs:BreakIterator

12 // The BreakIterator class iterates through the words, word breaks, and
43 // To extract the words from a string, move a BREAK_WORD BreakIterator
45 // BreakIterator iter(&str, BreakIterator::BREAK_WORD);
56 class BreakIterator {
68 // Requires |str| to live as long as the BreakIterator does.
69 BreakIterator(const string16* str, BreakType break_type);
70 ~BreakIterator();
77 // or BreakIterator::npos when done.
116 DISALLOW_COPY_AND_ASSIGN(BreakIterator);