Lines Matching refs:destCapacity
66 int32_t destCapacity, in _strToWCS() argument
204 if(0 < count && count <= destCapacity){ in _strToWCS()
223 u_terminateWChars(dest,destCapacity,count,pErrorCode); in _strToWCS()
233 int32_t destCapacity, in u_strToWCS() argument
245 (destCapacity<0) || (dest == NULL && destCapacity > 0) in u_strToWCS()
256 if(0 < srcLength && srcLength <= destCapacity){ in u_strToWCS()
263 u_terminateUChars((UChar *)dest,destCapacity,srcLength,pErrorCode); in u_strToWCS()
269 return (wchar_t*)u_strToUTF32((UChar32*)dest, destCapacity, pDestLength, in u_strToWCS()
274 return _strToWCS(dest,destCapacity,pDestLength,src,srcLength, pErrorCode); in u_strToWCS()
284 int32_t destCapacity, in _strFromWCS() argument
435 pTargetLimit = dest + destCapacity; in _strFromWCS()
467 u_terminateUChars(dest,destCapacity,count,pErrorCode); in _strFromWCS()
487 int32_t destCapacity, in u_strFromWCS() argument
500 (destCapacity<0) || (dest == NULL && destCapacity > 0) in u_strFromWCS()
511 if(0 < srcLength && srcLength <= destCapacity){ in u_strFromWCS()
518 u_terminateUChars(dest,destCapacity,srcLength,pErrorCode); in u_strFromWCS()
524 return u_strFromUTF32(dest, destCapacity, pDestLength, in u_strFromWCS()
529 return _strFromWCS(dest,destCapacity,pDestLength,src,srcLength,pErrorCode); in u_strFromWCS()