Lines Matching refs:pathEnd
564 string::const_iterator pathEnd, in matchWildcards() argument
570 while (pattern != patternEnd && path != pathEnd && *pattern == *path) in matchWildcards()
577 return (path == pathEnd); in matchWildcards()
580 for (; path != pathEnd; ++path) in matchWildcards()
582 if (matchWildcards(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in matchWildcards()
586 if (matchWildcards(pattern + 1, patternEnd, pathEnd, pathEnd, allowPrefix)) in matchWildcards()
589 else if (path == pathEnd && allowPrefix) in matchWildcards()
602 vector<string>::const_iterator pathEnd, in patternMatches() argument
608 while (pattern != patternEnd && path != pathEnd && *pattern != "**" && in patternMatches()
616 if (path == pathEnd && (allowPrefix || pattern == patternEnd)) in patternMatches()
620 for (; path != pathEnd; ++path) in patternMatches()
621 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()
623 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()