Home
last modified time | relevance | path

Searched refs:appendCodeUnit (Results 1 – 6 of 6) sorted by relevance

/external/icu4c/common/
Dappendable.cpp26 return appendCodeUnit((UChar)c); in appendCodePoint()
28 return appendCodeUnit(U16_LEAD(c)) && appendCodeUnit(U16_TRAIL(c)); in appendCodePoint()
37 if(!appendCodeUnit(c)) { in appendString()
44 if(!appendCodeUnit(*s++)) { in appendString()
Ducharstrie.cpp370 out.appendCodeUnit(*pos); // Next unit of a pending linear-match node. in getNextUChars()
391 out.appendCodeUnit(*pos); in getNextUChars()
405 out.appendCodeUnit(*pos++); in getNextBranchUChars()
408 out.appendCodeUnit(*pos); in getNextBranchUChars()
Dunistr.cpp1713 UnicodeStringAppendable::appendCodeUnit(UChar c) { in appendCodeUnit() function in UnicodeStringAppendable
/external/icu4c/common/unicode/
Dappendable.h63 virtual UBool appendCodeUnit(UChar c) = 0;
176 virtual UBool appendCodeUnit(UChar c);
/external/icu4c/test/intltest/
Duobjtest.cpp320 virtual UBool appendCodeUnit(UChar /*c*/) { return TRUE; } in appendCodeUnit() function in DummyAppendable
Dustrtest.cpp2033 app.appendCodeUnit(0x61); in doTestAppendable()
2065 virtual UBool appendCodeUnit(UChar c) { str.append(c); return TRUE; } in appendCodeUnit() function in SimpleAppendable