Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

99                 UChar *dest, int32_t destCapacity,
106 src, srcLength, dest, destCapacity, pErrorCode);
109 src, srcLength, dest, destCapacity, pErrorCode);
118 UChar *dest, int32_t destCapacity,
136 if( destCapacity<0 || (dest==NULL && destCapacity>0) ||
147 return u_terminateUChars(dest, destCapacity, 0, pErrorCode);
176 UnicodeString destString(dest, 0, destCapacity);
178 n2->normalize(buffer, destString, *pErrorCode).extract(dest, destCapacity, *pErrorCode);
185 return buffer.extract(dest, destCapacity, *pErrorCode);
191 UChar *dest, int32_t destCapacity,
196 dest, destCapacity,
204 UChar *dest, int32_t destCapacity,
209 dest, destCapacity,
220 UChar *dest, int32_t destCapacity,
237 if( destCapacity<0 || (dest==NULL && destCapacity>0) ||
247 ((right>=dest && right<(dest+destCapacity)) ||
257 destString.setTo(dest, leftLength, destCapacity);
259 destString.setTo(dest, 0, destCapacity);
263 extract(dest, destCapacity, *pErrorCode);