Lines Matching refs:localLength
453 const UChar *localString, int32_t localLength) {
459 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
466 if(localLength<0) {
467 localLength=u_strlen(localString);
470 minLength= outLength<localLength ? outLength : localLength;
493 return outLength-localLength;
499 const UChar *localString, int32_t localLength) {
505 if(outString==NULL || outLength<-1 || localString==NULL || localLength<-1) {
512 if(localLength<0) {
513 localLength=u_strlen(localString);
516 minLength= outLength<localLength ? outLength : localLength;
541 return outLength-localLength;