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

  /external/icu/icu4c/source/common/unicode/
appendable.h 113 * char16_t* buffer = app.getAppendBuffer(..., &capacity);
141 virtual char16_t *getAppendBuffer(int32_t minCapacity,
210 * For details see Appendable::getAppendBuffer().
223 virtual char16_t *getAppendBuffer(int32_t minCapacity,
  /external/icu/icu4c/source/common/
appendable.cpp 60 Appendable::getAppendBuffer(int32_t minCapacity,
cstr.cpp 26 char *buf = s.getAppendBuffer(length, length, resultCapacity, status);
charstr.h 104 * (This function is similar to ByteSink.GetAppendBuffer().)
120 char *getAppendBuffer(int32_t minCapacity,
bytesinkutil.cpp 36 char *buffer = sink.GetAppendBuffer(U8_MAX_LENGTH, desiredCapacity,
137 CharStringByteSink::GetAppendBuffer(int32_t min_capacity,
148 char* result = dest_.getAppendBuffer(
charstr.cpp 86 // The caller wrote into the getAppendBuffer().
107 char *CharString::getAppendBuffer(int32_t minCapacity,
locid.cpp 748 buffer = maximizedLocaleID.getAppendBuffer(
807 buffer = minimizedLocaleID.getAppendBuffer(
881 buffer = localeID.getAppendBuffer(
966 buffer = sink.GetAppendBuffer(
    [all...]
uloc_tag.cpp     [all...]
unistr.cpp 976 char *utf8 = sink.GetAppendBuffer(length16 < capacity ? length16 : capacity,
    [all...]
  /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...]
ustrtest.cpp     [all...]
rbbitst.cpp 407 char *buffer = dest.getAppendBuffer(utf8Length, utf8Length, capacity, status);
    [all...]

Completed in 860 milliseconds