HomeSort by relevance Sort by last modified time
    Searched refs:ByteSink (Results 1 - 25 of 28) sorted by null

1 2

  /external/chromium_org/third_party/icu/source/common/unicode/
bytestream.h 7 // Abstract interface that consumes a sequence of bytes (ByteSink).
13 // ByteSink:
45 * A ByteSink can be filled with bytes.
48 class U_COMMON_API ByteSink : public UMemory {
54 ByteSink() { }
59 virtual ~ByteSink() { }
75 * on this ByteSink.
89 * If the ByteSink allocates or reallocates an internal buffer, it should use
120 * The ByteSink should be ready for further Append() calls after Flush().
127 ByteSink(const ByteSink &); // copy constructor not implemente
    [all...]
idna.h 195 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
213 labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
231 nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
249 nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
unistr.h     [all...]
urename.h     [all...]
  /external/icu/icu4c/source/common/unicode/
bytestream.h 7 // Abstract interface that consumes a sequence of bytes (ByteSink).
13 // ByteSink:
45 * A ByteSink can be filled with bytes.
48 class U_COMMON_API ByteSink : public UMemory {
54 ByteSink() { }
59 virtual ~ByteSink();
75 * on this ByteSink.
89 * If the ByteSink allocates or reallocates an internal buffer, it should use
120 * The ByteSink should be ready for further Append() calls after Flush().
127 ByteSink(const ByteSink &); // copy constructor not implemente
    [all...]
idna.h 201 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
219 labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
237 nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
255 nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
bytestrie.h 30 class ByteSink;
236 int32_t getNextBytes(ByteSink &out) const;
422 static void getNextBranchBytes(const uint8_t *pos, int32_t length, ByteSink &out);
423 static void append(ByteSink &out, int c);
unistr.h     [all...]
  /external/chromium_org/third_party/cld/encodings/compact_lang_det/
string_byte_sink.h 14 class StringByteSink : public icu::ByteSink {
16 // Constructs a ByteSink that will append bytes to the dest string.
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/
string_byte_sink.h 27 class StringByteSink : public icu::ByteSink {
29 // Constructs a ByteSink that will append bytes to the dest string.
  /external/icu/icu4c/source/common/
bytestream.cpp 13 ByteSink::~ByteSink() {}
15 char* ByteSink::GetAppendBuffer(int32_t min_capacity,
27 void ByteSink::Flush() {}
bytestrie.cpp 386 BytesTrie::getNextBytes(ByteSink &out) const {
419 BytesTrie::getNextBranchBytes(const uint8_t *pos, int32_t length, ByteSink &out) {
434 BytesTrie::append(ByteSink &out, int c) {
uts46.cpp 73 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
83 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
93 IDNA::nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
103 IDNA::nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
136 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
140 labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
144 nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
148 nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
161 ByteSink &dest,
256 UTS46::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest
    [all...]
unistr.cpp 879 UnicodeString::toUTF8(ByteSink &sink) const {
    [all...]
  /external/icu/icu4c/source/i18n/
bocsu.h 26 class ByteSink;
155 u_writeIdenticalLevelRun(UChar32 prev, const UChar *s, int32_t length, icu::ByteSink &sink);
bocsu.cpp 99 u_writeIdenticalLevelRun(UChar32 prev, const UChar *s, int32_t length, icu::ByteSink &sink) {
collationkeys.h 30 class SortKeyByteSink : public ByteSink {
94 * @param level The next level about to be written to the ByteSink.
collationkeys.cpp 109 void appendTo(ByteSink &sink) const {
  /external/chromium_org/third_party/icu/source/common/
bytestream.cpp 13 char* ByteSink::GetAppendBuffer(int32_t min_capacity,
25 void ByteSink::Flush() {}
uts46.cpp 68 IDNA::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
78 IDNA::labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
88 IDNA::nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
98 IDNA::nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
133 labelToASCII_UTF8(const StringPiece &label, ByteSink &dest,
137 labelToUnicodeUTF8(const StringPiece &label, ByteSink &dest,
141 nameToASCII_UTF8(const StringPiece &name, ByteSink &dest,
145 nameToUnicodeUTF8(const StringPiece &name, ByteSink &dest,
158 ByteSink &dest,
250 UTS46::labelToASCII_UTF8(const StringPiece &label, ByteSink &dest
    [all...]
unistr.cpp 837 UnicodeString::toUTF8(ByteSink &sink) const {
    [all...]
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 336 // Verify that ByteSink is subclassable and Flush() overridable.
337 class SimpleByteSink : public ByteSink {
354 // Test the ByteSink base class.
363 errln("ByteSink (SimpleByteSink) did not Append() or Flush() as expected");
370 errln("ByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
375 errln("ByteSink.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
380 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
  /external/chromium_org/third_party/icu/source/test/intltest/
strtest.cpp 368 // Verify that ByteSink is subclassable and Flush() overridable.
369 class SimpleByteSink : public ByteSink {
386 // Test the ByteSink base class.
395 errln("ByteSink (SimpleByteSink) did not Append() or Flush() as expected");
402 errln("ByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
407 errln("ByteSink.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
412 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
  /frameworks/testing/espresso/libs/
guava-14.0.1.jar 
  /prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar 

Completed in 524 milliseconds

1 2