Home | History | Annotate | Download | only in i18n

Lines Matching refs:BreakIterator

21 class BreakIterator;
23 // SharedBreakIterator encapsulates a shared BreakIterator. Because
24 // BreakIterator has mutable semantics, clients must ensure that all uses
25 // of a particular shared BreakIterator is protected by the same mutex
27 // BreakIterator. Clients can accomplish this by creating a mutex for all
33 SharedBreakIterator(BreakIterator *biToAdopt);
36 BreakIterator *get() const { return ptr; }
37 BreakIterator *operator->() const { return ptr; }
38 BreakIterator &operator*() const { return *ptr; }
40 BreakIterator *ptr;