Lines Matching refs:CodePointBreakIterator

36 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CodePointBreakIterator)  in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()  argument
38 CodePointBreakIterator::CodePointBreakIterator() in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
45 CodePointBreakIterator::CodePointBreakIterator(const PHP::CodePointBreakIterator &other) in CodePointBreakIterator() function in CodePointBreakIterator
51 CodePointBreakIterator& CodePointBreakIterator::operator=(const CodePointBreakIterator& that) in operator =()
68 CodePointBreakIterator::~CodePointBreakIterator() in ~CodePointBreakIterator()
77 bool CodePointBreakIterator::operator==(const BreakIterator& that) const in operator ==()
79 UBool CodePointBreakIterator::operator==(const BreakIterator& that) const in operator ==()
86 const CodePointBreakIterator& that2 = in operator ==()
87 static_cast<const CodePointBreakIterator&>(that); in operator ==()
96 CodePointBreakIterator* CodePointBreakIterator::clone(void) const in clone()
98 return new CodePointBreakIterator(*this); in clone()
101 CharacterIterator& CodePointBreakIterator::getText(void) const in getText()
112 UText *CodePointBreakIterator::getUText(UText *fillIn, UErrorCode &status) const in getUText()
117 void CodePointBreakIterator::setText(const UnicodeString &text) in setText()
127 void CodePointBreakIterator::setText(UText *text, UErrorCode &status) in setText()
138 void CodePointBreakIterator::adoptText(CharacterIterator* it) in adoptText()
147 int32_t CodePointBreakIterator::first(void) in first()
155 int32_t CodePointBreakIterator::last(void) in last()
164 int32_t CodePointBreakIterator::previous(void) in previous()
174 int32_t CodePointBreakIterator::next(void) in next()
184 int32_t CodePointBreakIterator::current(void) const in current()
189 int32_t CodePointBreakIterator::following(int32_t offset) in following()
199 int32_t CodePointBreakIterator::preceding(int32_t offset) in preceding()
209 UBool CodePointBreakIterator::isBoundary(int32_t offset) in isBoundary()
216 int32_t CodePointBreakIterator::next(int32_t n) in next()
233 CodePointBreakIterator *CodePointBreakIterator::createBufferClone( in createBufferClone()
242 bufferSize = sizeof(CodePointBreakIterator) + U_ALIGNMENT_OFFSET_UP(0); in createBufferClone()
259 if (s < sizeof(CodePointBreakIterator)) { in createBufferClone()
260 CodePointBreakIterator *clonedBI = new CodePointBreakIterator(*this); in createBufferClone()
270 return new(buf) CodePointBreakIterator(*this); in createBufferClone()
273 CodePointBreakIterator &CodePointBreakIterator::refreshInputText(UText *input, UErrorCode &status) in refreshInputText()