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

  /external/icu/icu4c/source/common/
bytestream.cpp 17 char* ByteSink::GetAppendBuffer(int32_t min_capacity,
60 char* CheckedArrayByteSink::GetAppendBuffer(int32_t min_capacity,
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 373 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
375 errln("ByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
378 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
380 errln("ByteSink.GetAppendBuffer(scratch_capacity<min_capacity) did not properly return NULL[0]");
383 dest = sink.GetAppendBuffer(5, 50, scratch, (int32_t)sizeof(scratch), &capacity);
385 errln("ByteSink.GetAppendBuffer() did not properly return the scratch buffer");
404 char *dest = sink.GetAppendBuffer(0, 50, scratch, (int32_t)sizeof(scratch), &capacity);
406 errln("CheckedArrayByteSink.GetAppendBuffer(min_capacity<1) did not properly return NULL[0]");
409 dest = sink.GetAppendBuffer(10, 50, scratch, 9, &capacity);
411 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 5790 milliseconds