Searched refs:fnmatcher (Results 1 – 3 of 3) sorted by relevance
30 fnmatcher(op_basename(comp))); in match()43 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(base)); in match()48 cit = find_if(include.begin(), include.end(), fnmatcher(base)); in match()57 fnmatcher(op_basename(compi))); in match()
21 bool glob_filter::fnmatcher::operator()(string const & s) in operator ()()30 cit = find_if(exclude.begin(), exclude.end(), fnmatcher(str)); in match()34 cit = find_if(include.begin(), include.end(), fnmatcher(str)); in match()
48 struct fnmatcher { struct49 fnmatcher(std::string const & str) : str_(str) {} in fnmatcher() function