Lines Matching refs:pathEnd
591 string::const_iterator pathEnd, in matchWildcards() argument
597 while (pattern != patternEnd && path != pathEnd && *pattern == *path) in matchWildcards()
604 return (path == pathEnd); in matchWildcards()
607 for (; path != pathEnd; ++path) in matchWildcards()
609 if (matchWildcards(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in matchWildcards()
613 if (matchWildcards(pattern + 1, patternEnd, pathEnd, pathEnd, allowPrefix)) in matchWildcards()
616 else if (path == pathEnd && allowPrefix) in matchWildcards()
629 vector<string>::const_iterator pathEnd, in patternMatches() argument
635 while (pattern != patternEnd && path != pathEnd && *pattern != "**" && in patternMatches()
643 if (path == pathEnd && (allowPrefix || pattern == patternEnd)) in patternMatches()
647 for (; path != pathEnd; ++path) in patternMatches()
648 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()
650 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()