Home
last modified time | relevance | path

Searched refs:buffCapacity (Results 1 – 8 of 8) sorted by relevance

/external/icu/libicu/cts_headers/unicode/
Ducurr.h84 int32_t buffCapacity,
429 int32_t buffCapacity,
Dunistr.h2066 int32_t buffCapacity);
3117 UnicodeString(char16_t *buffer, int32_t buffLength, int32_t buffCapacity);
3128 UnicodeString(uint16_t *buffer, int32_t buffLength, int32_t buffCapacity) : in UnicodeString() argument
3129 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} in UnicodeString()
3142 UnicodeString(wchar_t *buffer, int32_t buffLength, int32_t buffCapacity) : in UnicodeString() argument
3143 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} in UnicodeString()
3154 inline UnicodeString(std::nullptr_t buffer, int32_t buffLength, int32_t buffCapacity);
/external/icu/icu4c/source/common/unicode/
Ducurr.h84 int32_t buffCapacity,
429 int32_t buffCapacity,
Dunistr.h2066 int32_t buffCapacity);
3117 UnicodeString(char16_t *buffer, int32_t buffLength, int32_t buffCapacity);
3128 UnicodeString(uint16_t *buffer, int32_t buffLength, int32_t buffCapacity) : in UnicodeString() argument
3129 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} in UnicodeString()
3142 UnicodeString(wchar_t *buffer, int32_t buffLength, int32_t buffCapacity) : in UnicodeString() argument
3143 UnicodeString(Char16Ptr(buffer), buffLength, buffCapacity) {} in UnicodeString()
3154 inline UnicodeString(std::nullptr_t buffer, int32_t buffLength, int32_t buffCapacity);
/external/icu/libandroidicu/include/unicode/
Ducurr.h84 int32_t buffCapacity,
429 int32_t buffCapacity,
/external/icu/icu4c/source/common/
Dunistr.cpp245 int32_t buffCapacity) { in UnicodeString() argument
250 } else if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) { in UnicodeString()
255 const UChar *p = buff, *limit = buff + buffCapacity; in UnicodeString()
261 setArray(buff, buffLength, buffCapacity); in UnicodeString()
1297 int32_t buffCapacity) { in setTo() argument
1310 if(buffLength < -1 || buffCapacity < 0 || buffLength > buffCapacity) { in setTo()
1315 const UChar *p = buffer, *limit = buffer + buffCapacity; in setTo()
1325 setArray(buffer, buffLength, buffCapacity); in setTo()
Ducurr.cpp515 int32_t buffCapacity, in ucurr_forLocale() argument
518 if (buffCapacity < 0 || (buff == nullptr && buffCapacity > 0)) { in ucurr_forLocale()
528 if (resLen < buffCapacity) { in ucurr_forLocale()
532 return u_terminateUChars(buff, buffCapacity, resLen, ec); in ucurr_forLocale()
545 if(buffCapacity > u_strlen(result)) { in ucurr_forLocale()
549 return u_terminateUChars(buff, buffCapacity, resLen, ec); in ucurr_forLocale()
581 return ucurr_forLocale(id, buff, buffCapacity, ec); in ucurr_forLocale()
588 if(buffCapacity > resLen) { in ucurr_forLocale()
592 return u_terminateUChars(buff, buffCapacity, resLen, ec); in ucurr_forLocale()
2377 int32_t buffCapacity, in ucurr_forLocaleAndDate() argument
[all …]
Dputil.cpp2076 getCodepageFromPOSIXID(const char *localeName, char * buffer, int32_t buffCapacity) argument
2086 name = uprv_strncpy(buffer, name+1, buffCapacity);
2087 buffer[buffCapacity-1] = 0; /* ensure NULL termination */