Searched defs:bufferCapacity (Results 1 - 9 of 9) sorted by relevance

/external/chromium/third_party/icu/public/common/unicode/
H A Duniset.h279 int32_t bufferCapacity; // capacity of buffer member in class:UnicodeSet
/external/icu4c/common/unicode/
H A Duniset.h279 int32_t bufferCapacity; // capacity of buffer member in class:UnicodeSet
/external/icu4c/common/
H A Dloclikely.cpp1192 int32_t bufferCapacity,
1198 bufferCapacity,
1190 do_canonicalize(const char* localeID, char* buffer, int32_t bufferCapacity, UErrorCode* err) argument
H A Ducnvsel.cpp279 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) {
278 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
H A Duloc.c787 char* buffer, int32_t bufferCapacity,
843 if(startSearchHere && startSearchHere - nextSeparator < bufferCapacity) {
848 result = u_terminateChars(buffer, bufferCapacity, (int32_t)(startSearchHere - nextSeparator), status);
849 } else if(!startSearchHere && (int32_t)uprv_strlen(nextSeparator) < bufferCapacity) { /* last item in string */
855 result = u_terminateChars(buffer, bufferCapacity, i, status);
875 char* buffer, int32_t bufferCapacity,
897 if(bufferCapacity>1) {
903 if(bufferCapacity<bufLen) {
933 if(needLen >= bufferCapacity) {
1005 if((bufLen+delta) >= bufferCapacity) {
785 uloc_getKeywordValue(const char* localeID, const char* keywordName, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
873 uloc_setKeywordValue(const char* keywordName, const char* keywordValue, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
[all...]
/external/webkit/JavaScriptCore/
H A Djsc.cpp545 size_t bufferCapacity = 1024; local
547 buffer.resize(bufferCapacity);
550 bufferSize += fread(buffer.data() + bufferSize, 1, bufferCapacity - bufferSize, f);
551 if (bufferSize == bufferCapacity) { // guarantees space for trailing '\0'
552 bufferCapacity *= 2;
553 buffer.resize(bufferCapacity);
/external/chromium/third_party/icu/source/common/
H A Ducnvsel.cpp282 void* buffer, int32_t bufferCapacity, UErrorCode* status) {
289 if (bufferCapacity < 0 ||
290 (bufferCapacity > 0 && (p == NULL || (U_POINTER_MASK_LSB(p, 3) != 0)))
323 if (totalSize > bufferCapacity) {
281 ucnvsel_serialize(const UConverterSelector* sel, void* buffer, int32_t bufferCapacity, UErrorCode* status) argument
H A Dunorm.cpp2208 _composePart(UChar *stackBuffer, UChar *&buffer, int32_t &bufferCapacity, int32_t &length, argument
2220 length=_decompose(buffer, bufferCapacity,
2224 if(length>bufferCapacity) {
2225 if(!u_growBufferFromStatic(stackBuffer, &buffer, &bufferCapacity, 2*length, 0)) {
2229 length=_decompose(buffer, bufferCapacity,
2253 int32_t bufferCapacity; local
2271 bufferCapacity=_STACK_BUFFER_CAPACITY;
2468 p=_composePart(stackBuffer, buffer, bufferCapacity,
3028 int32_t bufferCapacity; local
3086 bufferCapacity
3468 _findPreviousIterationBoundary(UCharIterator &src, IsPrevBoundaryFn *isPrevBoundary, uint32_t minC, uint32_t mask, UChar *&buffer, int32_t &bufferCapacity, int32_t &startIndex, UErrorCode *pErrorCode) argument
3525 int32_t startIndex=0, bufferLength=0, bufferCapacity=0, destLength=0; local
3712 _findNextIterationBoundary(UCharIterator &src, IsNextBoundaryFn *isNextBoundary, uint32_t minC, uint32_t mask, UChar *&buffer, int32_t &bufferCapacity, UErrorCode *pErrorCode) argument
3778 int32_t bufferLength, bufferCapacity, destLength; local
3907 int32_t bufferLength, bufferCapacity; local
[all...]
H A Duloc.c807 char* buffer, int32_t bufferCapacity,
863 if(startSearchHere && startSearchHere - nextSeparator < bufferCapacity) {
868 result = u_terminateChars(buffer, bufferCapacity, (int32_t)(startSearchHere - nextSeparator), status);
869 } else if(!startSearchHere && (int32_t)uprv_strlen(nextSeparator) < bufferCapacity) { /* last item in string */
875 result = u_terminateChars(buffer, bufferCapacity, i, status);
895 char* buffer, int32_t bufferCapacity,
917 if(bufferCapacity>1) {
923 if(bufferCapacity<bufLen) {
953 if(needLen >= bufferCapacity) {
1025 if((bufLen+delta) >= bufferCapacity) {
805 uloc_getKeywordValue(const char* localeID, const char* keywordName, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
893 uloc_setKeywordValue(const char* keywordName, const char* keywordValue, char* buffer, int32_t bufferCapacity, UErrorCode* status) argument
4303 do_canonicalize(const char* localeID, char* buffer, int32_t bufferCapacity, UErrorCode* err) argument
[all...]

Completed in 112 milliseconds