Home
last modified time | relevance | path

Searched refs:globIx (Results 1 – 1 of 1) sorted by relevance

/frameworks/av/media/libstagefright/foundation/
DAStringUtils.cpp32 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()
[all …]