Lines Matching refs:globIx
32 size_t ix = 0, globIx = 0; in MatchesGlob() local
35 while (globIx < globLen && glob[globIx] != '*') { in MatchesGlob()
36 ++globIx; in MatchesGlob()
38 if (strLen < globIx || Compare(str, glob, globIx /* len */, ignoreCase)) { in MatchesGlob()
41 ix = globIx; in MatchesGlob()
44 while (globIx < globLen) { in MatchesGlob()
45 ++globIx; in MatchesGlob()
46 size_t start = globIx; in MatchesGlob()
47 while (globIx < globLen && glob[globIx] != '*') { in MatchesGlob()
48 ++globIx; in MatchesGlob()
50 size_t len = globIx - start; in MatchesGlob()
53 if (globIx == globLen) { in MatchesGlob()