Home
last modified time | relevance | path

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

/external/icu/icu4c/source/common/
Dappendable.cpp28 return appendCodeUnit((UChar)c); in appendCodePoint()
30 return appendCodeUnit(U16_LEAD(c)) && appendCodeUnit(U16_TRAIL(c)); in appendCodePoint()
39 if(!appendCodeUnit(c)) { in appendString()
46 if(!appendCodeUnit(*s++)) { in appendString()
Ducharstrie.cpp373 out.appendCodeUnit(*pos); // Next unit of a pending linear-match node. in getNextUChars()
394 out.appendCodeUnit(*pos); in getNextUChars()
408 out.appendCodeUnit(*pos++); in getNextBranchUChars()
411 out.appendCodeUnit(*pos); in getNextBranchUChars()
Dunistr.cpp1900 UnicodeStringAppendable::appendCodeUnit(UChar c) { in appendCodeUnit() function in UnicodeStringAppendable
/external/icu/icu4c/source/common/unicode/
Dappendable.h65 virtual UBool appendCodeUnit(char16_t c) = 0;
174 virtual UBool appendCodeUnit(char16_t c);
/external/icu/icu4c/source/test/intltest/
Duobjtest.cpp324 virtual UBool appendCodeUnit(UChar /*c*/) { return TRUE; } in appendCodeUnit() function in DummyAppendable
Dustrtest.cpp2044 app.appendCodeUnit(0x61); in doTestAppendable()
2076 virtual UBool appendCodeUnit(UChar c) { str.append(c); return TRUE; } in appendCodeUnit() function in SimpleAppendable