Searched refs:destCap (Results 1 – 5 of 5) sorted by relevance
/external/icu4c/tools/genbrk/ |
D | genbrk.cpp | 252 uint32_t destCap = ucnv_toUChars(conv, in main() local 264 UChar *ruleSourceU = new UChar[destCap+1]; in main() 267 destCap+1, in main() 281 UnicodeString ruleSourceS(FALSE, ruleSourceU, destCap); in main()
|
/external/icu4c/samples/ugrep/ |
D | ugrep.cpp | 328 uint32_t destCap = ucnv_toUChars(conv, in readFile() local 340 ucharBuf = (UChar *)realloc(ucharBuf, (destCap+1) * sizeof(UChar)); in readFile() 343 destCap+1, in readFile() 357 fileLen = destCap; in readFile()
|
/external/icu4c/tools/genctd/ |
D | genctd.cpp | 250 uint32_t destCap = ucnv_toUChars(conv, in main() local 262 UChar *wordSourceU = new UChar[destCap+1]; in main() 265 destCap+1, in main() 282 UChar *current = wordSourceU + (destCap/2); in main()
|
/external/icu4c/tools/genrb/ |
D | wrtxml.cpp | 221 static char* convertAndEscape(char** pDest, int32_t destCap, int32_t* destLength, in convertAndEscape() argument 233 if(dest==NULL || destCap <=0){ in convertAndEscape() 234 destCap = srcLen * 8; in convertAndEscape() 235 dest = (char*) uprv_malloc(sizeof(char) * destCap); in convertAndEscape() 254 if((destLen+UTF8_CHAR_LENGTH(c)) < destCap){ in convertAndEscape() 322 U8_APPEND((unsigned char*)dest,destLen,destCap,c,isError); in convertAndEscape() 331 destCap += destLen; in convertAndEscape() 333 temp = (char*) uprv_malloc(sizeof(char)*destCap); in convertAndEscape()
|
/external/icu4c/i18n/ |
D | uregex.cpp | 1613 int32_t destCap = *destCapacity; in appendTail() local 1637 if (destIdx < destCap) { in appendTail() 1667 destIdx = utext_extract(m->fInputText, srcIdx, m->fInputLength, dest, destCap, status); in appendTail() 1674 if (destIdx < destCap) { in appendTail() 1676 } else if (destIdx == destCap) { in appendTail() 1686 if (destIdx < destCap) { in appendTail() 1690 *destBuf += destCap; in appendTail()
|