Lines Matching refs:pathEnd
579 string::const_iterator pathEnd, in matchWildcards() argument
585 while (pattern != patternEnd && path != pathEnd && *pattern == *path) in matchWildcards()
592 return (path == pathEnd); in matchWildcards()
595 for (; path != pathEnd; ++path) in matchWildcards()
597 if (matchWildcards(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in matchWildcards()
601 if (matchWildcards(pattern + 1, patternEnd, pathEnd, pathEnd, allowPrefix)) in matchWildcards()
604 else if (path == pathEnd && allowPrefix) in matchWildcards()
617 vector<string>::const_iterator pathEnd, in patternMatches() argument
623 while (pattern != patternEnd && path != pathEnd && *pattern != "**" && in patternMatches()
631 if (path == pathEnd && (allowPrefix || pattern == patternEnd)) in patternMatches()
635 for (; path != pathEnd; ++path) in patternMatches()
636 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()
638 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()