Searched defs:destCap (Results 1 - 5 of 5) sorted by relevance
/external/icu/icu4c/source/samples/ugrep/ |
H A D | ugrep.cpp | 328 uint32_t destCap = ucnv_toUChars(conv, local 340 ucharBuf = (UChar *)realloc(ucharBuf, (destCap+1) * sizeof(UChar)); 343 destCap+1, 357 fileLen = destCap;
|
/external/chromium_org/third_party/icu/source/i18n/ |
H A D | uregex.cpp | 1595 int32_t destCap = *destCapacity; local 1619 if (destIdx < destCap) { 1649 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); 1656 if (destIdx < destCap) { 1658 } else if (destIdx == destCap) { 1668 if (destIdx < destCap) { 1672 *destBuf += destCap;
|
/external/chromium_org/third_party/icu/source/tools/genrb/ |
H A D | wrtxml.cpp | 221 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, argument 233 if(dest==NULL || destCap <=0){ 234 destCap = srcLen * 8; 235 dest = (char*) uprv_malloc(sizeof(char) * destCap); 254 if((destLen+UTF8_CHAR_LENGTH(c)) < destCap){ 322 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError); 331 destCap += destLen; 333 temp = (char*) uprv_malloc(sizeof(char)*destCap);
|
/external/icu/icu4c/source/tools/genrb/ |
H A D | wrtxml.cpp | 233 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, argument 245 if(dest==NULL || destCap <=0){ 246 destCap = srcLen * 8; 247 dest = (char*) uprv_malloc(sizeof(char) * destCap); 266 if((destLen+U8_LENGTH(c)) < destCap){ 334 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError); 343 destCap += destLen; 345 temp = (char*) uprv_malloc(sizeof(char)*destCap);
|
/external/icu/icu4c/source/i18n/ |
H A D | uregex.cpp | 1618 int32_t destCap = *destCapacity; local 1645 if (destIdx < destCap) { 1675 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); 1682 if (destIdx < destCap) { 1684 } else if (destIdx == destCap) { 1694 if (destIdx < destCap) { 1698 *destBuf += destCap;
|
Completed in 410 milliseconds