OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GetAppendBuffer
(Results
1 - 5
of
5
) sorted by null
/external/icu4c/common/
bytestream.cpp
13
char* ByteSink::
GetAppendBuffer
(int32_t min_capacity,
54
char* CheckedArrayByteSink::
GetAppendBuffer
(int32_t min_capacity,
unistr.cpp
843
char *utf8 = sink.
GetAppendBuffer
(length16 < capacity ? length16 : capacity,
[
all
...]
uts46.cpp
432
char *destArray=dest.
GetAppendBuffer
(srcLength, srcLength+20,
[
all
...]
/external/icu4c/common/unicode/
bytestream.h
84
* char* buffer = sink->
GetAppendBuffer
(..., &capacity);
111
virtual char*
GetAppendBuffer
(int32_t min_capacity,
182
virtual char*
GetAppendBuffer
(int32_t min_capacity,
/external/icu4c/test/intltest/
strtest.cpp
400
char *dest = sink.
GetAppendBuffer
(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
402
errln("ByteSink.
GetAppendBuffer
(min_capacity<1) did not properly return NULL[0]");
405
dest = sink.
GetAppendBuffer
(10, 50, scratch, 9, &capacity);
407
errln("ByteSink.
GetAppendBuffer
(scratch_capacity<min_capacity) did not properly return NULL[0]");
410
dest = sink.
GetAppendBuffer
(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
412
errln("ByteSink.
GetAppendBuffer
() did not properly return the scratch buffer");
431
char *dest = sink.
GetAppendBuffer
(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
433
errln("CheckedArrayByteSink.
GetAppendBuffer
(min_capacity<1) did not properly return NULL[0]");
436
dest = sink.
GetAppendBuffer
(10, 50, scratch, 9, &capacity);
438
errln("CheckedArrayByteSink.
GetAppendBuffer
(scratch_capacity<min_capacity) did not properly return NULL[0]")
[
all
...]
Completed in 65 milliseconds