OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ByteSink
(Results
1 - 12
of
12
) sorted by null
/external/chromium/third_party/icu/public/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
126
ByteSink
(const
ByteSink
&); // copy constructor not implemente
[
all
...]
unistr.h
[
all
...]
urename.h
[
all
...]
/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
126
ByteSink
(const
ByteSink
&); // copy constructor not implemente
[
all
...]
unistr.h
[
all
...]
urename.h
[
all
...]
/external/chromium/third_party/icu/source/common/
bytestream.cpp
13
char*
ByteSink
::GetAppendBuffer(int32_t min_capacity,
25
void
ByteSink
::Flush() {}
unistr.cpp
825
UnicodeString::toUTF8(
ByteSink
&sink) const {
[
all
...]
/external/icu4c/common/
bytestream.cpp
13
char*
ByteSink
::GetAppendBuffer(int32_t min_capacity,
25
void
ByteSink
::Flush() {}
unistr.cpp
837
UnicodeString::toUTF8(
ByteSink
&sink) const {
[
all
...]
/external/chromium/third_party/icu/source/test/intltest/
strtest.cpp
391
// Verify that
ByteSink
is subclassable and Flush() overridable.
392
class SimpleByteSink : public
ByteSink
{
409
// Test the
ByteSink
base class.
418
errln("
ByteSink
(SimpleByteSink) did not Append() or Flush() as expected");
425
errln("
ByteSink
.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
430
errln("
ByteSink
.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
435
errln("
ByteSink
.GetAppendBuffer() did not properly return the scratch buffer");
/external/icu4c/test/intltest/
strtest.cpp
391
// Verify that
ByteSink
is subclassable and Flush() overridable.
392
class SimpleByteSink : public
ByteSink
{
409
// Test the
ByteSink
base class.
418
errln("
ByteSink
(SimpleByteSink) did not Append() or Flush() as expected");
425
errln("
ByteSink
.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
430
errln("
ByteSink
.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
435
errln("
ByteSink
.GetAppendBuffer() did not properly return the scratch buffer");
Completed in 265 milliseconds