Searched defs:SortKeyByteSink (Results 1 - 3 of 3) sorted by relevance

/external/icu/icu4c/source/i18n/
H A Dcollationkeys.h30 class SortKeyByteSink : public ByteSink { class in inherits:ByteSink
32 SortKeyByteSink(char *dest, int32_t destCapacity) function in class:SortKeyByteSink
35 virtual ~SortKeyByteSink();
84 SortKeyByteSink(const SortKeyByteSink &); // copy constructor not implemented
85 SortKeyByteSink &operator=(const SortKeyByteSink &); // assignment operator not implemented
111 SortKeyByteSink &sink,
H A Dcollationkeys.cpp25 SortKeyByteSink::~SortKeyByteSink() {}
28 SortKeyByteSink::Append(const char *bytes, int32_t n) {
57 SortKeyByteSink::GetAppendBuffer(int32_t min_capacity,
227 SortKeyByteSink &sink,
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationKeys.java18 // Java porting note: C++ SortKeyByteSink class extends a common class ByteSink,
21 public static abstract class SortKeyByteSink { class in class:CollationKeys
27 public SortKeyByteSink(byte[] dest) { method in class:CollationKeys.SortKeyByteSink
33 * In C++, the SortKeyByteSink is a subclass of ByteSink and lower-level code can write to that.
34 * TODO: Can we make Java SortKeyByteSink have-a ByteArrayWrapper and write through to it?
35 * Or maybe create interface ByteSink, have SortKeyByteSink implement it, and have BOCSU write to that??
230 void appendTo(SortKeyByteSink sink) {
329 CollationSettings settings, SortKeyByteSink sink, int minLevel, LevelCallback callback,

Completed in 98 milliseconds