MCPcopy Create free account
hub / github.com/apache/impala / EatWildcard

Function EatWildcard

be/src/gutil/strings/util.cc:820–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

818
819template <typename CHAR, typename NEXT>
820static void EatWildcard(const CHAR** pattern, const CHAR* end, NEXT next) {
821 while (*pattern != end) {
822 if (!IsWildcard(**pattern))
823 return;
824 next(pattern, end);
825 }
826}
827
828template <typename CHAR, typename NEXT>
829static bool MatchPatternT(const CHAR* eval, const CHAR* eval_end,

Callers 1

MatchPatternTFunction · 0.85

Calls 2

IsWildcardFunction · 0.85
nextFunction · 0.50

Tested by

no test coverage detected