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

  /external/icu4c/common/unicode/
ucnvsel.h 135 * @param bufferCapacity the capacity of this buffer
144 void* buffer, int32_t bufferCapacity, UErrorCode* status);
uloc.h     [all...]
locid.h 442 * @param bufferCapacity The capacity of receiving buffer
448 int32_t getKeywordValue(const char* keywordName, char *buffer, int32_t bufferCapacity, UErrorCode &status) const;
uniset.h 279 int32_t bufferCapacity; // capacity of buffer
    [all...]
  /external/webkit/Source/JavaScriptCore/icu/unicode/
uloc.h     [all...]
  /external/webkit/Source/WebCore/icu/unicode/
uloc.h     [all...]
  /external/webkit/Source/WebCore/plugins/
PluginDatabase.cpp 484 size_t bufferCapacity = 1024;
485 buffer.resize(bufferCapacity);
488 bufferSize += readFromFile(file, buffer.data() + bufferSize, bufferCapacity - bufferSize);
489 if (bufferSize == bufferCapacity) {
490 if (bufferCapacity < maximumPersistentPluginMetadataCacheSize) {
491 bufferCapacity *= 2;
492 buffer.resize(bufferCapacity);
  /external/webkit/Source/JavaScriptCore/
jsc.cpp 557 size_t bufferCapacity = 1024;
559 buffer.resize(bufferCapacity);
562 bufferSize += fread(buffer.data() + bufferSize, 1, bufferCapacity - bufferSize, f);
563 if (bufferSize == bufferCapacity) { // guarantees space for trailing '\0'
564 bufferCapacity *= 2;
565 buffer.resize(bufferCapacity);
  /external/icu4c/common/
uloc.c     [all...]
uniset.cpp 145 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
172 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
198 buffer(0), bufferCapacity(0),
222 buffer(0), bufferCapacity(0),
    [all...]
ucnvsel.cpp 279 void* buffer, int32_t bufferCapacity, UErrorCode* status) {
286 if (bufferCapacity < 0 ||
287 (bufferCapacity > 0 && (p == NULL || (U_POINTER_MASK_LSB(p, 3) != 0)))
320 if (totalSize > bufferCapacity) {
loclikely.cpp     [all...]
uniset_props.cpp 332 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
361 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
382 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
    [all...]

Completed in 5495 milliseconds