D | regex_grep.hpp | 41 inline unsigned int regex_grep(Predicate foo, in regex_grep() function 95 inline unsigned int regex_grep(Predicate foo, const charT* str, in regex_grep() function 99 return regex_grep(foo, str, str + traits::length(str), e, flags); in regex_grep() 103 inline unsigned int regex_grep(Predicate foo, const std::basic_string<charT, ST, SA>& s, in regex_grep() function 107 return regex_grep(foo, s.begin(), s.end(), e, flags); in regex_grep() 110 inline unsigned int regex_grep(bool (*foo)(const cmatch&), const char* str, in regex_grep() function 114 return regex_grep(foo, str, str + regex::traits_type::length(str), e, flags); in regex_grep() 117 inline unsigned int regex_grep(bool (*foo)(const wcmatch&), const wchar_t* str, in regex_grep() function 121 return regex_grep(foo, str, str + wregex::traits_type::length(str), e, flags); in regex_grep() 124 inline unsigned int regex_grep(bool (*foo)(const match_results<std::string::const_iterator>&), cons… in regex_grep() function [all …]
|