HomeSort by relevance Sort by last modified time
    Searched refs:GetAppendBuffer (Results 1 - 9 of 9) sorted by null

  /external/icu/icu4c/source/common/
bytestream.cpp 17 char* ByteSink::GetAppendBuffer(int32_t min_capacity,
66 char* CheckedArrayByteSink::GetAppendBuffer(int32_t min_capacity,
bytesinkutil.cpp 35 char *buffer = sink.GetAppendBuffer(U8_MAX_LENGTH, desiredCapacity,
unistr.cpp 976 char *utf8 = sink.GetAppendBuffer(length16 < capacity ? length16 : capacity,
    [all...]
uts46.cpp 432 char *destArray=dest.GetAppendBuffer(srcLength, srcLength+20,
    [all...]
  /external/icu/icu4c/source/common/unicode/
bytestream.h 86 * char* buffer = sink->GetAppendBuffer(..., &capacity);
113 virtual char* GetAppendBuffer(int32_t min_capacity,
189 virtual char* GetAppendBuffer(int32_t min_capacity,
  /external/icu/icu4c/source/test/intltest/
strtest.cpp 381 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
383 errln("ByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
386 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
388 errln("ByteSink.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
391 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
393 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
412 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
414 errln("CheckedArrayByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
417 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
419 errln("CheckedArrayByteSink.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]")
    [all...]
  /external/icu/icu4c/source/i18n/
bocsu.cpp 107 char *buffer=sink.GetAppendBuffer(1, length*2, scratch, (int32_t)sizeof(scratch), &capacity);
110 // but we do not want to force the sink.GetAppendBuffer() to allocate
collationkeys.h 52 virtual char *GetAppendBuffer(int32_t min_capacity,
collationkeys.cpp 48 return; // the caller used GetAppendBuffer() and wrote the bytes already
59 SortKeyByteSink::GetAppendBuffer(int32_t min_capacity,

Completed in 255 milliseconds