Lines Matching refs:pathEnd
547 string::const_iterator pathEnd, in matchWildcards() argument
553 while (pattern != patternEnd && path != pathEnd && *pattern == *path) in matchWildcards()
560 return (path == pathEnd); in matchWildcards()
563 for (; path != pathEnd; ++path) in matchWildcards()
565 if (matchWildcards(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in matchWildcards()
569 if (matchWildcards(pattern + 1, patternEnd, pathEnd, pathEnd, allowPrefix)) in matchWildcards()
572 else if (path == pathEnd && allowPrefix) in matchWildcards()
585 vector<string>::const_iterator pathEnd, in patternMatches() argument
591 while (pattern != patternEnd && path != pathEnd && *pattern != "**" && in patternMatches()
599 if (path == pathEnd && (allowPrefix || pattern == patternEnd)) in patternMatches()
603 for (; path != pathEnd; ++path) in patternMatches()
604 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()
606 if (patternMatches(pattern + 1, patternEnd, path, pathEnd, allowPrefix)) in patternMatches()