Home | History | Annotate | Download | only in io

Lines Matching refs:wcsIdx

1154         int wcsIdx = 0;
1161 wcsIdx = array[0];
1167 while (wcsIdx < wcs.length) {
1169 if (wcs[wcsIdx].equals("?")) {
1174 } else if (wcs[wcsIdx].equals("*")) {
1177 if (wcsIdx == wcs.length - 1) {
1185 textIdx = filename.indexOf(wcs[wcsIdx], textIdx);
1190 int repeat = filename.indexOf(wcs[wcsIdx], textIdx + 1);
1192 backtrack.push(new int[] {wcsIdx, repeat});
1196 if (!filename.startsWith(wcs[wcsIdx], textIdx)) {
1203 textIdx += wcs[wcsIdx].length();
1207 wcsIdx++;
1211 if (wcsIdx == wcs.length && textIdx == filename.length()) {