/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v4/ |
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 …]
|
D | regex_split.hpp | 119 regex_grep(pred, i, j, e, flags); in regex_split()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/doc/ |
D | regex_grep.qbk | 9 [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 …]
|
D | regex.qbk | 35 [template regex_grep[] [link boost_regex.ref.deprecated.regex_grep `regex_grep`]] 86 [include regex_grep.qbk]
|
D | examples.qbk | 115 [@../../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: …
|
D | partial_matches.qbk | 11 [regex_match], [regex_search], and [regex_grep], and used with the 23 by [regex_match], [regex_search] or [regex_grep]):
|
D | faq.qbk | 86 regex_search / regex_grep / regex_format / regex_merge?
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/include/boost/regex/v5/ |
D | regex_grep.hpp | 30 inline unsigned int regex_grep(Predicate foo, in regex_grep() function 80 inline unsigned int regex_grep(Predicate foo, const charT* str, in regex_grep() function 84 return regex_grep(foo, str, str + traits::length(str), e, flags); in regex_grep() 88 inline unsigned int regex_grep(Predicate foo, const std::basic_string<charT, ST, SA>& s, in regex_grep() function 92 return regex_grep(foo, s.begin(), s.end(), e, flags); in regex_grep()
|
D | regex_split.hpp | 108 regex_grep(pred, i, j, e, flags); in regex_split()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/example/snippets/ |
D | regex_grep_example_3.cpp | 88 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()
|
D | partial_regex_grep.cpp | 70 boost::regex_grep<bool(*)(const boost::cmatch&), const char*>(grep_callback, in search()
|
D | regex_grep_example_2.cpp | 76 boost::regex_grep(grep_callback, start, end, expression); in IndexClasses()
|
D | regex_grep_example_1.cpp | 79 boost::regex_grep(IndexClassesPred(m, start), start, end, expression); in IndexClasses()
|
D | regex_grep_example_4.cpp | 93 boost::regex_grep(cl, in IndexClasses()
|
/aosp_15_r20/external/libcxx/fuzzing/ |
H A D | RoutineNames.txt | 18 regex_grep
|
H A D | fuzzing.h | 44 int regex_grep (const uint8_t *data, size_t size);
|
H A D | fuzz_test.cpp | 126 {"regex_grep", fuzzing::regex_grep},
|
H A D | fuzzing.cpp | 491 int regex_grep (const uint8_t *data, size_t size) in regex_grep() function
|
/aosp_15_r20/external/libcxx/test/libcxx/fuzzing/ |
H A D | regex_grep.cpp | 34 assert(0 == fuzzing::regex_grep(data, size)); in main()
|
/aosp_15_r20/external/sdv/vsomeip/third_party/boost/regex/test/regress/ |
D | test_partial_match.hpp | 306 boost::regex_grep(pred, search_text.begin(), search_text.end(), r, opts); in test_regex_grep()
|
D | test_regex_search.hpp | 430 boost::regex_grep(pred, search_text.begin(), search_text.end(), r, opts); in test_regex_grep()
|