Searched refs:RTStrSimplePatternNMatch (Results 1 - 5 of 5) sorted by relevance
/vbox/src/VBox/Runtime/testcase/ |
H A D | tstStrSimplePattern.cpp | 67 CHECK_EXPR(RTStrSimplePatternNMatch("*", 1, "", 0)); 68 CHECK_EXPR(RTStrSimplePatternNMatch("*", ~(size_t)0, "", 0)); 69 CHECK_EXPR(RTStrSimplePatternNMatch("*", ~(size_t)0, "", ~(size_t)0)); 70 CHECK_EXPR(RTStrSimplePatternNMatch("*", 1, "asdfasdflkjasdlfkj", ~(size_t)0)); 71 CHECK_EXPR(RTStrSimplePatternNMatch("*", ~(size_t)0, "asdfasdflkjasdlfkj", ~(size_t)0)); 72 CHECK_EXPR(RTStrSimplePatternNMatch("*", 1, "asdfasdflkjasdlfkj", 3)); 73 CHECK_EXPR(RTStrSimplePatternNMatch("*", 2, "asdfasdflkjasdlfkj", 10)); 74 CHECK_EXPR(RTStrSimplePatternNMatch("*", 15, "asdfasdflkjasdlfkj", 10)); 75 CHECK_EXPR(RTStrSimplePatternNMatch("*?*?*?*?*", 1, "asdfasdflkjasdlfkj", 128)); 76 CHECK_EXPR(RTStrSimplePatternNMatch("* [all...] |
/vbox/src/VBox/Runtime/common/string/ |
H A D | simplepattern.cpp | 40 return RTStrSimplePatternNMatch(pszPattern, RTSTR_MAX, pszString, RTSTR_MAX); 93 RTDECL(bool) RTStrSimplePatternNMatch(const char *pszPattern, size_t cchPattern, function 129 && RTStrSimplePatternNMatch(pszPattern + 1, cchPattern - 1, pszString, cchString)) 154 RT_EXPORT_SYMBOL(RTStrSimplePatternNMatch); variable 175 if (RTStrSimplePatternNMatch(pszCur, pszEnd - pszCur, pszString, cchString))
|
/vbox/src/VBox/Runtime/common/dbg/ |
H A D | dbgas.cpp | 1555 * RTStrSimplePatternNMatch is used for the matching. 1596 || RTStrSimplePatternNMatch(pachModPat, cchModPat, RTDbgModName(pahModules[i]), RTSTR_MAX)) 1671 || RTStrSimplePatternNMatch(pachModPat, cchModPat, RTDbgModName(pahModules[i]), RTSTR_MAX))
|
/vbox/include/iprt/ |
H A D | string.h | 2558 RTDECL(bool) RTStrSimplePatternNMatch(const char *pszPattern, size_t cchPattern,
|
H A D | mangling.h | 1516 # define RTStrSimplePatternNMatch RT_MANGLER(RTStrSimplePatternNMatch) macro
|
Completed in 180 milliseconds