Lines Matching refs:destCapacity
207 UnicodeString::extract(char *dest, int32_t destCapacity, in extract() argument
215 if(isBogus() || destCapacity<0 || (destCapacity>0 && dest==0)) { in extract()
222 return u_terminateChars(dest, destCapacity, 0, &errorCode); in extract()
239 int32_t len=doExtract(0, length(), dest, destCapacity, cnv, errorCode); in extract()
251 char *dest, int32_t destCapacity, in doExtract() argument
256 if(destCapacity!=0) { in doExtract()
266 if(destCapacity==0) { in doExtract()
268 } else if(destCapacity==-1) { in doExtract()
272 destCapacity=0x7fffffff; in doExtract()
274 destLimit=dest+destCapacity; in doExtract()
294 return u_terminateChars(originalDest, destCapacity, length, &errorCode); in doExtract()