Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

68            int32_t destCapacity,
202 if(0 < count && count <= destCapacity){
221 u_terminateWChars(dest,destCapacity,count,pErrorCode);
231 int32_t destCapacity,
243 (destCapacity<0) || (dest == NULL && destCapacity > 0)
254 if(0 < srcLength && srcLength <= destCapacity){
261 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode);
267 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacity, pDestLength,
272 return _strToWCS(dest,destCapacity,pDestLength,src,srcLength, pErrorCode);
282 int32_t destCapacity,
433 pTargetLimit = dest + destCapacity;
465 u_terminateUChars(dest,destCapacity,count,pErrorCode);
485 int32_t destCapacity,
498 (destCapacity<0) || (dest == NULL && destCapacity > 0)
509 if(0 < srcLength && srcLength <= destCapacity){
516 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode);
522 return u_strFromUTF32(dest, destCapacity, pDestLength,
527 return _strFromWCS(dest,destCapacity,pDestLength,src,srcLength,pErrorCode);