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,
543 if(b2Len <= destCapacity) {
572 if(srcLength <= destCapacity){
597 if(dest && srcLength <= destCapacity){
606 return u_terminateUChars(dest, destCapacity, reqLength, status);
611 UChar* dest, int32_t destCapacity,
619 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
630 int32_t retLen = _internal_toASCII(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
640 UChar* dest, int32_t destCapacity,
648 if( (src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
659 int32_t retLen = _internal_toUnicode(src, srcLength, dest, destCapacity, options, nameprep, parseError, status);
669 UChar* dest, int32_t destCapacity,
677 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
695 int32_t remainingDestCapacity = destCapacity;
757 return u_terminateUChars(dest, destCapacity, reqLength, status);
762 UChar* dest, int32_t destCapacity,
770 if((src==NULL) || (srcLength < -1) || (destCapacity<0) || (!dest && destCapacity > 0)){
788 int32_t remainingDestCapacity = destCapacity;
856 return u_terminateUChars(dest, destCapacity, reqLength, status);