Searched defs:destCap (Results 1 - 3 of 3) sorted by relevance

/external/icu4c/samples/ugrep/
H A Dugrep.cpp328 uint32_t destCap = ucnv_toUChars(conv, local
340 ucharBuf = (UChar *)realloc(ucharBuf, (destCap+1) * sizeof(UChar));
343 destCap+1,
357 fileLen = destCap;
/external/icu4c/tools/genrb/
H A Dwrtxml.cpp223 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, argument
235 if(dest==NULL || destCap <=0){
236 destCap = srcLen * 8;
237 dest = (char*) uprv_malloc(sizeof(char) * destCap);
256 if((destLen+U8_LENGTH(c)) < destCap){
324 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError);
333 destCap += destLen;
335 temp = (char*) uprv_malloc(sizeof(char)*destCap);
/external/icu4c/i18n/
H A Duregex.cpp1615 int32_t destCap = *destCapacity; local
1642 if (destIdx < destCap) {
1672 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status);
1679 if (destIdx < destCap) {
1681 } else if (destIdx == destCap) {
1691 if (destIdx < destCap) {
1695 *destBuf += destCap;

Completed in 152 milliseconds