Home
last modified time | relevance | path

Searched refs:match_extra (Results 1 – 12 of 12) sorted by relevance

/third_party/boost/boost/regex/v4/
Dmatch_flags.hpp63match_extra = match_nosubs << 1, /* include full capture information for repeated… enumerator
64 …match_single_line = match_extra << 1, /* treat text as single line and ignor any \n's …
84 | match_extra | match_single_line | match_unused1 | match_unused2
142 using regex_constants::match_extra;
Dperl_matcher_recursive.hpp164 if(r && (m_match_flags & match_extra)) in match_startmark()
251 else if(sub.get().matched && (match_extra & m_match_flags)) in match_startmark()
1020 if(match_extra & m_match_flags) in match_match()
Dperl_matcher_non_recursive.hpp448 if(r && (m_match_flags & match_extra)) in match_startmark()
1113 if(match_extra & m_match_flags) in match_match()
1308 else if(pmp->sub.matched && (match_extra & m_match_flags)) in unwind_paren()
Dperl_matcher_common.hpp360 if(m_has_found_match && (match_extra & m_match_flags)) in match_prefix()
/third_party/boost/libs/regex/test/captures/
Dcaptures_test.cpp55 if(boost::regex_match(text, what, e, boost::match_extra)) in test_captures()
78 if(boost::regex_match(wtext, wwhat, we, boost::match_extra)) in test_captures()
100 if(boost::u32regex_match(text, what, ure, boost::match_extra)) in test_captures()
/third_party/boost/libs/regex/example/snippets/
Dcaptures_example.cpp29 if(boost::regex_match(text, what, e, boost::match_extra)) in print_captures()
/third_party/boost/libs/regex/src/
Dregex.cpp103 if((mf & match_extra) && (mf & match_posix)) in verify_options()
/third_party/boost/libs/regex/doc/
Dcaptures.qbk105 if(boost::regex_match(text, what, e, boost::match_extra))
197 * Pass the match_extra flag to the particular algorithms where you actually need the captures infor…
Dmatch_flag_type.qbk38 static const match_flag_type match_extra;
73 [[match_extra][Instructs the matching engine to retain all available capture information; if a capt…
Dsub_match.qbk394 BOOST_REGEX_MATCH_EXTRA defined, and you must pass the flag `match_extra`
402 …andling some features (independent sub-expressions for example), even when match_extra is not used.
403 * The matching algorithms are much less efficient (i.e. slower), when match_extra is used. Mostly …
Dmatch_result.qbk519 and you must pass the flag match_extra to the regex matching functions
526 …andling some features (independent sub-expressions for example), even when match_extra is not used.
527 * The matching algorithms are much less efficient (i.e. slower), when match_extra is used. Mostly …
/third_party/boost/libs/xpressive/doc/
Dregexpp_diffs.qbk37 `match_not_eob`, `match_perl`, `match_posix`, and `match_extra`.