Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

424              UChar *dest, int32_t destCapacity,
426 return ut->pFuncs->extract(ut, start, limit, dest, destCapacity, status);
1403 int32_t destCapacity,
1412 UChar *pDestLimit = (dest!=NULL)?(dest+destCapacity):NULL;
1456 u_terminateUChars(dest,destCapacity,reqLength,pErrorCode);
1466 UChar *dest, int32_t destCapacity,
1471 if(destCapacity<0 || (dest==NULL && destCapacity>0)) {
1510 utext_strFromUTF8(dest, destCapacity, &destLength,
1843 UChar *dest, int32_t destCapacity,
1851 if(destCapacity<0 || (dest==NULL && destCapacity>0)) {
1873 if(length>destCapacity) {
1874 limit32 = start32 + destCapacity;
1876 UnicodeString buffer(dest, 0, destCapacity); // writable alias
1880 return u_terminateUChars(dest, destCapacity, length, status);
2125 UChar *dest, int32_t destCapacity,
2133 if(destCapacity<0 || (dest==NULL && destCapacity>0)) {
2145 if (destCapacity>0 && dest!=NULL) {
2147 if(trimmedLength>destCapacity) {
2148 trimmedLength=destCapacity;
2155 u_terminateUChars(dest, destCapacity, length, pErrorCode);
2491 UChar *dest, int32_t destCapacity,
2497 if(destCapacity<0 || (dest==NULL && destCapacity>0) || start>limit) {
2533 if (di<destCapacity) {
2553 if (di<destCapacity) {
2560 ut->chunkOffset = uprv_min(strLength, start32 + destCapacity);
2564 u_terminateUChars(dest, destCapacity, di, pErrorCode);
2754 UChar *dest, int32_t destCapacity,
2760 if(destCapacity<0 || (dest==NULL && destCapacity>0) || start>limit) {
2779 if (desti+len <= destCapacity) {
2791 u_terminateUChars(dest, destCapacity, desti, status);