Home | History | Annotate | Download | only in os

Lines Matching refs:im

124         int ip = 0, im = 0;
126 while ((ip<NP) && (im<NM)) {
152 if (match.charAt(im) == nextChar) {
155 im++;
156 } while (im < NM);
157 if (im == NM) {
164 im++;
168 if (match.charAt(im) != c) {
171 im++;
172 } while (im < NM);
177 if (c != '.' && match.charAt(im) != c) return false;
178 im++;
182 if (ip >= NP && im >= NM) {