Home | History | Annotate | Download | only in common

Lines Matching refs:destCapacity

195                   UChar* dest, int32_t destCapacity,
318 if(b1Len <= destCapacity){
360 if(reqLength > destCapacity){
390 return u_terminateUChars(dest, destCapacity, reqLength, status);
395 UChar* dest, int32_t destCapacity,
544 if(b2Len <= destCapacity) {
573 if(srcLength <= destCapacity){
598 if(dest && srcLength <= destCapacity){
607 return u_terminateUChars(dest, destCapacity, reqLength, status);
612 UChar* dest, int32_t destCapacity,
620 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
631 int32_t retLen = _internal_toASCII(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
641 UChar* dest, int32_t destCapacity,
649 if( (src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
660 int32_t retLen = _internal_toUnicode(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
670 UChar* dest, int32_t destCapacity,
678 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
696 int32_t remainingDestCapacity = destCapacity;
758 return u_terminateUChars(dest, destCapacity, reqLength, status);
763 UChar* dest, int32_t destCapacity,
771 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
789 int32_t remainingDestCapacity = destCapacity;
857 return u_terminateUChars(dest, destCapacity, reqLength, status);