Searched refs:match_extra (Results 1 – 12 of 12) sorted by relevance
/third_party/boost/boost/regex/v4/ |
D | match_flags.hpp | 63 …match_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;
|
D | perl_matcher_recursive.hpp | 164 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()
|
D | perl_matcher_non_recursive.hpp | 448 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()
|
D | perl_matcher_common.hpp | 360 if(m_has_found_match && (match_extra & m_match_flags)) in match_prefix()
|
/third_party/boost/libs/regex/test/captures/ |
D | captures_test.cpp | 55 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/ |
D | captures_example.cpp | 29 if(boost::regex_match(text, what, e, boost::match_extra)) in print_captures()
|
/third_party/boost/libs/regex/src/ |
D | regex.cpp | 103 if((mf & match_extra) && (mf & match_posix)) in verify_options()
|
/third_party/boost/libs/regex/doc/ |
D | captures.qbk | 105 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…
|
D | match_flag_type.qbk | 38 static const match_flag_type match_extra; 73 [[match_extra][Instructs the matching engine to retain all available capture information; if a capt…
|
D | sub_match.qbk | 394 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 …
|
D | match_result.qbk | 519 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/ |
D | regexpp_diffs.qbk | 37 `match_not_eob`, `match_perl`, `match_posix`, and `match_extra`.
|