OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteSink
(Results
1 - 8
of
8
) sorted by null
/external/icu4c/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/icu4c/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/icu4c/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");
Completed in 158 milliseconds