Home
last modified time | relevance | path

Searched refs:regex_search (Results 1 – 25 of 94) sorted by relevance

1234

/third_party/boost/boost/regex/v4/
Dregex_search.hpp37 bool regex_search(BidiIterator first, BidiIterator last, in regex_search() function
42 return regex_search(first, last, m, e, flags, first); in regex_search()
46 bool regex_search(BidiIterator first, BidiIterator last, in regex_search() function
67 inline bool regex_search(const charT* str, in regex_search() function
72 return regex_search(str, str + traits::length(str), m, e, flags); in regex_search()
76 inline bool regex_search(const std::basic_string<charT, ST, SA>& s, in regex_search() function
81 return regex_search(s.begin(), s.end(), m, e, flags); in regex_search()
84 inline bool regex_search(const char* str, in regex_search() function
89 return regex_search(str, str + regex::traits_type::length(str), m, e, flags); in regex_search()
91 inline bool regex_search(const char* first, const char* last, in regex_search() function
[all …]
Dregex_iterator.hpp58 return regex_search(first, end, what, re, flags); in init()
77 bool result = regex_search(next_start, end, what, re, f, base); in next()
/third_party/boost/libs/regex/test/regress/
Dtest_overloads.cpp44 BOOST_REGEX_TEST(boost::regex_search(cs.begin(), cs.end(), sm, e)) in test_overloads()
45 …BOOST_REGEX_TEST(boost::regex_search(cs.begin(), cs.end(), sm, e, boost::regex_constants::match_de… in test_overloads()
46 BOOST_REGEX_TEST(boost::regex_search(cs.begin(), cs.end(), e)) in test_overloads()
47 …BOOST_REGEX_TEST(boost::regex_search(cs.begin(), cs.end(), e, boost::regex_constants::match_defaul… in test_overloads()
48 BOOST_REGEX_TEST(boost::regex_search(s.c_str(), cm, e)) in test_overloads()
49 BOOST_REGEX_TEST(boost::regex_search(s.c_str(), cm, e, boost::regex_constants::match_default)) in test_overloads()
50 BOOST_REGEX_TEST(boost::regex_search(s.c_str(), e)) in test_overloads()
51 BOOST_REGEX_TEST(boost::regex_search(s.c_str(), e, boost::regex_constants::match_default)) in test_overloads()
52 BOOST_REGEX_TEST(boost::regex_search(s, sm, e)) in test_overloads()
53 BOOST_REGEX_TEST(boost::regex_search(s, sm, e, boost::regex_constants::match_default)) in test_overloads()
[all …]
Dtest_regex_search.hpp106 if(boost::regex_search( in test_simple_search()
115 if(!boost::regex_search( in test_simple_search()
132 else if(boost::regex_search( in test_simple_search()
157 if(boost::regex_search( in test_simple_search()
/third_party/boost/libs/regex/test/pathology/
Drecursion_test.cpp43 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
44 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
45 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
46 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
47 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
48 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
49 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
50 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e), std::runtime_error); in cpp_main()
51 BOOST_CHECK(boost::regex_search(good_text, what, e)); in cpp_main()
Dbad_expression_test.cpp38 BOOST_CHECK(boost::regex_search(good_text, what, e1)); in cpp_main()
39 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e1), std::runtime_error); in cpp_main()
40 BOOST_CHECK(boost::regex_search(good_text, what, e1)); in cpp_main()
48 BOOST_CHECK(boost::regex_search(good_text, what, e2)); in cpp_main()
49 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e2), std::runtime_error); in cpp_main()
50 BOOST_CHECK(boost::regex_search(good_text, what, e2)); in cpp_main()
54 BOOST_CHECK_THROW(boost::regex_search(bad_text, what, e2), std::runtime_error); in cpp_main()
56 BOOST_CHECK(0 == boost::regex_search(good_text, what, e2)); in cpp_main()
/third_party/boost/libs/regex/doc/
Dregex_search.qbk9 [section:regex_search regex_search]
13 The algorithm [regex_search] will search a range denoted by a pair of
21 bool regex_search(BidirectionalIterator first, BidirectionalIterator last,
28 bool regex_search(const basic_string<charT, ST, SA>& s,
36 bool regex_search(const charT* str,
42 bool regex_search(BidirectionalIterator first, BidirectionalIterator last,
47 bool regex_search(const charT* str,
52 bool regex_search(const basic_string<charT, ST, SA>& s,
59 bool regex_search(BidirectionalIterator first, BidirectionalIterator last,
105 bool regex_search(const charT* str, match_results<const charT*, Allocator>& m,
[all …]
Dmfc_strings.qbk73 expression, if this isn't what you want then use [regex_search] instead.
126 [h4 regex_search]
128 There are two additional overloads for [regex_search], the first reports what
132 bool regex_search(const ATL::CSimpleStringT<charT>& s,
137 [*Effects]: returns ::boost::regex_search(s.GetString(), s.GetString() + s.GetLength(), what, e, f);
147 if(boost::regex_search(address, what, r))
158 [h4 regex_search (second overload)]
161 inline bool regex_search(const ATL::CSimpleStringT<charT>& s,
165 [*Effects]: returns `::boost::regex_search(s.GetString(), s.GetString() + s.GetLength(), e, f);`
Dregex.qbk32 [template regex_search[] [link boost_regex.ref.regex_search `regex_search`]]
70 [include regex_search.qbk]
/third_party/boost/libs/regex/example/timer/
Dregex_timer.cpp216 regex_search(s2, sm, ex); in main()
224 result = regex_search(s2, sm, ex); in main()
252 regex_search(ws2, wsm, wex); in main()
258 result = regex_search(ws2, wsm, wex); in main()
290 regex_search(ds.begin(), ds.end(), dm, ex); in main()
296 result = regex_search(ds.begin(), ds.end(), dm, ex); in main()
/third_party/boost/boost/regex/
Dmfc.hpp78 inline bool regex_search(const ATL::CSimpleStringT<B, b>& s, in regex_search() function
83 return ::boost::regex_search(s.GetString(), in regex_search()
91 inline bool regex_search(const ATL::CSimpleStringT<B, b>& s, in regex_search() function
95 return ::boost::regex_search(s.GetString(), in regex_search()
Dconcepts.hpp509 b = global_regex_namespace::regex_search(m_in, m_in, m_results, e); in constraints()
511 b = global_regex_namespace::regex_search(m_in, m_in, m_results, e, m_mft); in constraints()
513 b = global_regex_namespace::regex_search(m_in, m_in, e); in constraints()
515 b = global_regex_namespace::regex_search(m_in, m_in, e, m_mft); in constraints()
517 b = global_regex_namespace::regex_search(m_pointer, m_pmatch, e); in constraints()
519 b = global_regex_namespace::regex_search(m_pointer, m_pmatch, e, m_mft); in constraints()
521 b = global_regex_namespace::regex_search(m_pointer, e); in constraints()
523 b = global_regex_namespace::regex_search(m_pointer, e, m_mft); in constraints()
763 b = global_regex_namespace::regex_search(m_string, m_smatch, e); in constraints()
765 b = global_regex_namespace::regex_search(m_string, m_smatch, e, m_mft); in constraints()
[all …]
/third_party/boost/libs/xpressive/test/
Dtest_non_char.cpp22 if(!regex_search(data, data + (sizeof(data)/sizeof(*data)), what, rex)) in test_static()
74 if(!regex_search(str, what, urx)) in test_dynamic()
Dtest_dynamic_grammar.cpp40 if(regex_search(str, what, expr)) in test_dynamic_grammar()
78 if(regex_search(str, what, expr)) in test_dynamic_grammar2()
Dmisc1.cpp95 BOOST_REQUIRE(regex_search(buffer, tmpwhat, re_)); in test3()
179 BOOST_REQUIRE(regex_search(str, what, parentheses)); in test4()
233 BOOST_REQUIRE(regex_search(str, what, expression)); in test6()
/third_party/boost/boost/xpressive/
Dregex_algorithms.hpp421 inline bool regex_search in regex_search() function
448 inline bool regex_search in regex_search() function
475 inline bool regex_search in regex_search() function
504 inline bool regex_search in regex_search() function
534 inline bool regex_search in regex_search() function
564 inline bool regex_search in regex_search() function
593 inline bool regex_search in regex_search() function
623 inline bool regex_search in regex_search() function
/third_party/skia/third_party/externals/tint/fuzzers/tint_regex_fuzzer/
Dwgsl_mutator.cc59 while (regex_search(search_start, wgsl_code.cend(), match, in GetIdentifiers()
81 while (regex_search(search_start, s.cend(), match, int_literal_regex) || in GetIntLiterals()
82 regex_search(search_start, s.cend(), match, uint_literal_regex)) { in GetIntLiterals()
116 while (std::regex_search(search_start, wgsl_code.cend(), match, in GetFunctionBodyPositions()
/third_party/json/benchmarks/thirdparty/benchmark/cmake/
Dstd_regex.cpp8 return std::regex_search(str, re) ? 0 : -1; in main()
/third_party/benchmark/cmake/
Dstd_regex.cpp8 return std::regex_search(str, re) ? 0 : -1; in main()
/third_party/boost/tools/inspect/
Dlicense_check.cpp39 if ( !boost::regex_search( contents, license_regex ) ) in inspect()
/third_party/boost/libs/spirit/example/x3/rexpr/rexpr_full/test/
Dtesting.hpp100 if (boost::regex_search( in is_regex()
135 if (!boost::regex_search( in compare()
/third_party/boost/libs/regex/test/de_fuzz/
Dnarrow.cpp15 regex_search(text, what, e, boost::match_default|boost::match_partial); in LLVMFuzzerTestOneInput()
Dwide.cpp16 regex_search(text, what, e, boost::match_default|boost::match_partial); in LLVMFuzzerTestOneInput()
/third_party/boost/libs/math/reporting/accuracy/
Dhandle_test_result.hpp178 if(regex_search(content, table_location, table_e)) in add_cell()
307 if(regex_search(content, what, e)) in set_result()
348 if(regex_search(content, what, content_e)) in set_error_content()
404 if(regex_search(content, what, content_e)) in remove_error_content()
/third_party/boost/libs/graph/src/
Dread_graphviz_new.cpp235 boost::regex_search(begin, end, results, stuff_to_skip); in skip()
259 found = boost::regex_search(begin, end, results, basic_id_token); in get_token_raw()
294 found = boost::regex_search(begin, end, results, punctuation_token); in get_token_raw()
343 found = boost::regex_search(begin, end, results, number_token); in get_token_raw()
351 = boost::regex_search(begin, end, results, quoted_string_token); in get_token_raw()
391 found = boost::regex_search( in get_token_raw()
409 found = boost::regex_search(begin, end, results, cdata); in get_token_raw()

1234