Searched refs:bufferCapacity (Results 1 - 13 of 13) sorted by relevance

/external/icu4c/common/unicode/
H A Ducnvsel.h138 * @param bufferCapacity the capacity of this buffer
147 void* buffer, int32_t bufferCapacity, UErrorCode* status);
H A Duloc.h843 * @param bufferCapacity capacity of receiving buffer
851 char* buffer, int32_t bufferCapacity,
868 * @param bufferCapacity capacity of receiving buffer
877 char* buffer, int32_t bufferCapacity,
H A Dlocid.h442 * @param bufferCapacity The capacity of receiving buffer
448 int32_t getKeywordValue(const char* keywordName, char *buffer, int32_t bufferCapacity, UErrorCode &status) const;
H A Duniset.h279 int32_t bufferCapacity; // capacity of buffer member in class:UnicodeSet
/external/webkit/Source/JavaScriptCore/icu/unicode/
H A Duloc.h826 * @param bufferCapacity capacity of receiving buffer
834 char* buffer, int32_t bufferCapacity,
851 * @param bufferCapacity capacity of receiving buffer
860 char* buffer, int32_t bufferCapacity,
/external/webkit/Source/WebCore/icu/unicode/
H A Duloc.h826 * @param bufferCapacity capacity of receiving buffer
834 char* buffer, int32_t bufferCapacity,
851 * @param bufferCapacity capacity of receiving buffer
860 char* buffer, int32_t bufferCapacity,
/external/webkit/Source/WebCore/plugins/
H A DPluginDatabase.cpp484 size_t bufferCapacity = 1024; local
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/
H A Djsc.cpp557 size_t bufferCapacity = 1024; local
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/
H A Duloc.c826 char* buffer, int32_t bufferCapacity,
891 if(startSearchHere && startSearchHere - nextSeparator < bufferCapacity) {
896 result = u_terminateChars(buffer, bufferCapacity, (int32_t)(startSearchHere - nextSeparator), status);
897 } else if(!startSearchHere && (int32_t)uprv_strlen(nextSeparator) < bufferCapacity) { /* last item in string */
903 result = u_terminateChars(buffer, bufferCapacity, i, status);
923 char* buffer, int32_t bufferCapacity,
945 if(bufferCapacity>1) {
951 if(bufferCapacity<bufLen) {
981 if(needLen >= bufferCapacity) {
1053 if((bufLen+delta) >= bufferCapacity) {
824 uloc_getKeywordValue(const char* localeID, const char* keywordName, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
921 uloc_setKeywordValue(const char* keywordName, const char* keywordValue, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
[all...]
H A Duniset.cpp146 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
173 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
199 buffer(0), bufferCapacity(0),
223 buffer(0), bufferCapacity(0),
1591 if (buffer != NULL && newLen <= bufferCapacity)
1600 bufferCapacity = newLen + GROW_EXTRA;
1614 capacity = bufferCapacity;
1615 bufferCapacity = c;
H A Ducnvsel.cpp281 void* buffer, int32_t bufferCapacity, UErrorCode* status) {
288 if (bufferCapacity < 0 ||
289 (bufferCapacity > 0 && (p == NULL || (U_POINTER_MASK_LSB(p, 3) != 0)))
322 if (totalSize > bufferCapacity) {
280 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
H A Dloclikely.cpp1206 int32_t bufferCapacity,
1212 bufferCapacity,
1204 do_canonicalize(const char* localeID, char* buffer, int32_t bufferCapacity, UErrorCode* err) argument
H A Duniset_props.cpp333 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
362 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),
383 bufferCapacity(0), patLen(0), pat(NULL), strings(NULL), stringSpan(NULL),

Completed in 257 milliseconds