Searched refs:destCap (Results 1 - 4 of 4) sorted by relevance

/external/icu/icu4c/source/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/icu/icu4c/source/tools/genbrk/
H A Dgenbrk.cpp254 uint32_t destCap = ucnv_toUChars(conv,
266 UChar *ruleSourceU = new UChar[destCap+1];
269 destCap+1,
283 UnicodeString ruleSourceS(FALSE, ruleSourceU, destCap);
/external/icu/icu4c/source/tools/genrb/
H A Dwrtxml.cpp233 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 Duregex.cpp1642 int32_t destCap = *destCapacity; local
1669 if (destIdx < destCap) {
1699 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status);
1706 if (destIdx < destCap) {
1708 } else if (destIdx == destCap) {
1718 if (destIdx < destCap) {
1722 *destBuf += destCap;

Completed in 178 milliseconds