Lines Matching refs:CodePointBreakIterator

38 UOBJECT_DEFINE_RTTI_IMPLEMENTATION(CodePointBreakIterator)  in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()  argument
40 CodePointBreakIterator::CodePointBreakIterator() in UOBJECT_DEFINE_RTTI_IMPLEMENTATION()
47 CodePointBreakIterator::CodePointBreakIterator(const PHP::CodePointBreakIterator &other) in CodePointBreakIterator() function in CodePointBreakIterator
53 CodePointBreakIterator& CodePointBreakIterator::operator=(const CodePointBreakIterator& that) in operator =()
70 CodePointBreakIterator::~CodePointBreakIterator() in ~CodePointBreakIterator()
79 bool CodePointBreakIterator::operator==(const BreakIterator& that) const in operator ==()
81 UBool CodePointBreakIterator::operator==(const BreakIterator& that) const in operator ==()
88 const CodePointBreakIterator& that2 = in operator ==()
89 static_cast<const CodePointBreakIterator&>(that); in operator ==()
98 CodePointBreakIterator* CodePointBreakIterator::clone(void) const in clone()
100 return new CodePointBreakIterator(*this); in clone()
103 CharacterIterator& CodePointBreakIterator::getText(void) const in getText()
114 UText *CodePointBreakIterator::getUText(UText *fillIn, UErrorCode &status) const in getUText()
119 void CodePointBreakIterator::setText(const UnicodeString &text) in setText()
129 void CodePointBreakIterator::setText(UText *text, UErrorCode &status) in setText()
140 void CodePointBreakIterator::adoptText(CharacterIterator* it) in adoptText()
149 int32_t CodePointBreakIterator::first(void) in first()
157 int32_t CodePointBreakIterator::last(void) in last()
166 int32_t CodePointBreakIterator::previous(void) in previous()
176 int32_t CodePointBreakIterator::next(void) in next()
186 int32_t CodePointBreakIterator::current(void) const in current()
191 int32_t CodePointBreakIterator::following(int32_t offset) in following()
201 int32_t CodePointBreakIterator::preceding(int32_t offset) in preceding()
211 UBool CodePointBreakIterator::isBoundary(int32_t offset) in isBoundary()
218 int32_t CodePointBreakIterator::next(int32_t n) in next()
235 CodePointBreakIterator *CodePointBreakIterator::createBufferClone( in createBufferClone()
244 bufferSize = sizeof(CodePointBreakIterator) + U_ALIGNMENT_OFFSET_UP(0); in createBufferClone()
261 if (s < sizeof(CodePointBreakIterator)) { in createBufferClone()
262 CodePointBreakIterator *clonedBI = new CodePointBreakIterator(*this); in createBufferClone()
272 return new(buf) CodePointBreakIterator(*this); in createBufferClone()
275 CodePointBreakIterator &CodePointBreakIterator::refreshInputText(UText *input, UErrorCode &status) in refreshInputText()