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

  /external/icu/icu4c/source/common/unicode/
appendable.h 113 * UChar* buffer = app.getAppendBuffer(..., &capacity);
141 virtual UChar *getAppendBuffer(int32_t minCapacity,
210 * For details see Appendable::getAppendBuffer().
223 virtual UChar *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 92 * (This function is similar to ByteSink.GetAppendBuffer().)
108 char *getAppendBuffer(int32_t minCapacity,
charstr.cpp 73 // The caller wrote into the getAppendBuffer().
94 char *CharString::getAppendBuffer(int32_t minCapacity,
unistr.cpp 976 char *utf8 = sink.GetAppendBuffer(length16 < capacity ? length16 : capacity,
    [all...]
  /external/icu/icu4c/source/i18n/
digitlst.cpp 640 char *buffer = str.clear().getAppendBuffer(maxLength, 0, capacity, status);
    [all...]
  /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...]
ustrtest.cpp     [all...]
rbbitst.cpp 848 char *buffer = dest.getAppendBuffer(utf8Length, utf8Length, capacity, status);
    [all...]

Completed in 433 milliseconds