Lines Matching refs:i

454    int i,j=0;  in remove_all()  local
455 for (i = 0; i < len; i++) in remove_all()
456 if (sz[i] != c) in remove_all()
457 result[j++] = sz[i]; in remove_all()
573 int i = 0; in pos_first() local
574 for (i = 0; i < len ? sz[i] != c : false; i++) ; in pos_first()
575 if (i >= len) in pos_first()
578 return i; in pos_first()
585 int i = 0; in pos_first_after() local
586 if (startSearchPos >= i) in pos_first_after()
587 i = startSearchPos+1; in pos_first_after()
588 for (; i < len ? sz[i] != c : false; i++) ; in pos_first_after()
589 if (i >= len) in pos_first_after()
592 return i; in pos_first_after()
599 int i = 0; in pos_last() local
600 for (i = len-1; i >= 0 ? sz[i] != c : false; i--) ; in pos_last()
601 if (i < 0) in pos_last()
604 return i; in pos_last()
621 int i; in pos_last() local
622 for (i = len-S.len; i >= 0 ; i--) in pos_last()
624 vgl = get(i,S.len); in pos_last()
628 if (i >= 0) in pos_last()
629 return i; in pos_last()
638 for (int i =0; i < len; i++) in count() local
639 if (sz[i] == c) in count()
650 int i; in is_no_text() local
651 for (i = 0; sz[i] <= 32 && i < len; i++) ; in is_no_text()
652 if (i < len) in is_no_text()
690 for (int i=0; i < len; i++) in replace_all() local
691 if (sz[i] == oldCh) in replace_all()
692 sz[i] = newCh; in replace_all()
699 int i = 0; in replace_all() local
700 while (i <= len-oldS.len) in replace_all()
702 vgl = get(i,oldS.len); in replace_all()
705 replace(i,oldS.len,newS); in replace_all()
706 i += newS.len; in replace_all()
709 i++; in replace_all()
716 for (int i = 0; i < len; i++) in to_lower() local
717 sz[i] = (char) tolower(sz[i]); in to_lower()