Home | History | Annotate | Download | only in common

Lines Matching full:srclength

179 u_strToPunycode(const UChar *src, int32_t srcLength,
193 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
203 if(srcLength==-1) {
240 for(j=0; j<srcLength; ++j) {
260 } else if(UTF_IS_LEAD(c) && (j+1)<srcLength && UTF_IS_TRAIL(c2=src[j+1])) {
372 u_strFromPunycode(const UChar *src, int32_t srcLength,
385 if(src==NULL || srcLength<-1 || (dest==NULL && destCapacity!=0)) {
390 if(srcLength==-1) {
391 srcLength=u_strlen(src);
402 for(j=srcLength; j>0;) {
436 for(in=basicLength>0 ? basicLength+1 : 0; in<srcLength; /* no op */) {
447 if(in>=srcLength) {