Searched defs:chPat (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/string/
H A Dsimplepattern.cpp45 char chPat = *pszPattern; local
46 switch (chPat)
49 if (*pszString != chPat)
56 while ((chPat = *++pszPattern) == '*' || chPat == '?')
60 if (!chPat)
63 /* find chPat in the string and try get a match on the remaining pattern. */
67 if ( chStr == chPat
99 char chPat = cchPattern ? *pszPattern : '\0'; local
100 switch (chPat)
[all...]
/vbox/src/VBox/Main/src-server/
H A DPerformance.cpp1472 char chPat = *pszPat; local
1473 switch (chPat)
1476 if (*pszName != chPat)
1482 while ((chPat = *++pszPat) == '*' || chPat == '?')
1486 if (chPat == ':')
1496 if ( ch == chPat
1497 && ( !chPat

Completed in 63 milliseconds