Home
last modified time | relevance | path

Searched refs:regex_grep (Results 1 – 16 of 16) sorted by relevance

/third_party/boost/boost/regex/v4/
Dregex_grep.hpp41 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 …]
Dregex_split.hpp119 regex_grep(pred, i, j, e, flags); in regex_split()
/third_party/boost/libs/regex/doc/
Dregex_grep.qbk9 [section:regex_grep regex_grep (Deprecated)]
11 The algorithm `regex_grep` is deprecated in favor of [regex_iterator]
19 `regex_grep` allows you to search through a bidirectional-iterator range and
24 unsigned int regex_grep(Predicate foo,
35 unsigned int regex_grep(Predicate foo,
41 unsigned int regex_grep(Predicate foo,
46 The parameters for the primary version of `regex_grep` have the following meanings:
82 `regex_grep` can even be chained into another `regex_grep` to create recursive parsers.
91 Example: convert the example from [regex_search] to use `regex_grep` instead:
148 regex_grep(IndexClassesPred(m, start), start, end, expression);
[all …]
Dregex.qbk35 [template regex_grep[] [link boost_regex.ref.deprecated.regex_grep `regex_grep`]]
86 [include regex_grep.qbk]
Dexamples.qbk115 [@../../example/snippets/regex_grep_example_1.cpp regex_grep_example_1.cpp]: regex_grep example 1: …
117 [@../../example/snippets/regex_grep_example_2.cpp regex_grep_example_2.cpp]: regex_grep example 2: …
119 [@../../example/snippets/regex_grep_example_3.cpp regex_grep_example_3.cpp]: regex_grep example 2: …
121 [@../../example/snippets/regex_grep_example_4.cpp regex_grep_example_4.cpp]: regex_grep example 2: …
Dpartial_matches.qbk11 [regex_match], [regex_search], and [regex_grep], and used with the
23 by [regex_match], [regex_search] or [regex_grep]):
Dfaq.qbk86 regex_search / regex_grep / regex_format / regex_merge?
/third_party/boost/libs/regex/example/snippets/
Dregex_grep_example_3.cpp88 boost::regex_grep(std::bind1st(std::mem_fun1(&class_index::grep_callback), this), in IndexClasses()
93 boost::regex_grep(std::bind(&class_index::grep_callback, this, std::placeholders::_1), in IndexClasses()
98 boost::regex_grep(std::bind1st(std::mem_fun(&class_index::grep_callback), this), in IndexClasses()
Dpartial_regex_grep.cpp70 boost::regex_grep<bool(*)(const boost::cmatch&), const char*>(grep_callback, in search()
Dregex_grep_example_2.cpp76 boost::regex_grep(grep_callback, start, end, expression); in IndexClasses()
Dregex_grep_example_1.cpp79 boost::regex_grep(IndexClassesPred(m, start), start, end, expression); in IndexClasses()
Dregex_grep_example_4.cpp93 boost::regex_grep(cl, in IndexClasses()
/third_party/boost/libs/regex/src/
Dcregex.cpp257 … unsigned int result = regex_grep(BOOST_REGEX_DETAIL_NS::pred1(cb, this), p, end, pdata->e, flags); in Grep()
286 unsigned int result = regex_grep(BOOST_REGEX_DETAIL_NS::pred2(v, this), p, end, pdata->e, flags); in Grep()
315 …unsigned int result = regex_grep(BOOST_REGEX_DETAIL_NS::pred3(v, p, this), p, end, pdata->e, flags… in Grep()
416 int r = regex_grep(pred, map.begin(), map.end(), pdata->e, flags); in GrepFiles()
/third_party/boost/libs/regex/doc/html/
Dstandalone_HTML.manifest68 boost_regex/ref/deprecated/regex_grep.html
/third_party/boost/libs/regex/test/regress/
Dtest_partial_match.hpp306 boost::regex_grep(pred, search_text.begin(), search_text.end(), r, opts); in test_regex_grep()
Dtest_regex_search.hpp430 boost::regex_grep(pred, search_text.begin(), search_text.end(), r, opts); in test_regex_grep()