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.cpp372 out.appendCodeUnit(*pos); // Next unit of a pending linear-match node. in getNextUChars()
393 out.appendCodeUnit(*pos); in getNextUChars()
407 out.appendCodeUnit(*pos++); in getNextBranchUChars()
410 out.appendCodeUnit(*pos); in getNextBranchUChars()
Dunistr.cpp1864 UnicodeStringAppendable::appendCodeUnit(UChar c) { in appendCodeUnit() function in UnicodeStringAppendable
/external/icu/icu4c/source/common/unicode/
Dappendable.h65 virtual UBool appendCodeUnit(UChar c) = 0;
174 virtual UBool appendCodeUnit(UChar c);
/external/icu/icu4c/source/test/intltest/
Duobjtest.cpp322 virtual UBool appendCodeUnit(UChar /*c*/) { return TRUE; } in appendCodeUnit() function in DummyAppendable
Dustrtest.cpp2040 app.appendCodeUnit(0x61); in doTestAppendable()
2072 virtual UBool appendCodeUnit(UChar c) { str.append(c); return TRUE; } in appendCodeUnit() function in SimpleAppendable