Searched refs:match_nosubs (Results 1 – 6 of 6) sorted by relevance
/third_party/boost/libs/regex/test/regress/ |
D | basic_tests.cpp | 155 … TEST_REGEX_SEARCH("a(b?c)+d", perl, "accd", match_default|match_nosubs, make_array(0, 4, -2, -2)); in test_nosubs() 156 …TEST_REGEX_SEARCH("(wee|week)(knights|night)", perl, "weeknights", match_default|match_nosubs, mak… in test_nosubs() 157 …TEST_REGEX_SEARCH(".*", perl, "abc", match_default|match_nosubs, make_array(0, 3, -2, 3, 3, -2, -2… in test_nosubs() 158 … TEST_REGEX_SEARCH("a(b|(c))d", perl, "abd", match_default|match_nosubs, make_array(0, 3, -2, -2)); in test_nosubs() 159 … TEST_REGEX_SEARCH("a(b|(c))d", perl, "acd", match_default|match_nosubs, make_array(0, 3, -2, -2)); in test_nosubs() 160 …TEST_REGEX_SEARCH("a(b*|c|e)d", perl, "abbd", match_default|match_nosubs, make_array(0, 4, -2, -2)… in test_nosubs() 162 …TEST_REGEX_SEARCH("a(b*|c|e)d", perl, "acd", match_default|match_nosubs, make_array(0, 3, -2, -2)); in test_nosubs() 163 … TEST_REGEX_SEARCH("a(b*|c|e)d", perl, "ad", match_default|match_nosubs, make_array(0, 2, -2, -2)); in test_nosubs() 164 TEST_REGEX_SEARCH("a(b?)c", perl, "abc", match_default|match_nosubs, make_array(0, 3, -2, -2)); in test_nosubs() 165 TEST_REGEX_SEARCH("a(b?)c", perl, "ac", match_default|match_nosubs, make_array(0, 2, -2, -2)); in test_nosubs() [all …]
|
/third_party/boost/boost/regex/v4/ |
D | match_flags.hpp | 62 match_nosubs = match_posix << 1, /* don't trap marked subs */ enumerator 63 …match_extra = match_nosubs << 1, /* include full capture information for repeated… 83 | match_stop | match_all | match_perl | match_posix | match_nosubs 141 using regex_constants::match_nosubs;
|
D | perl_matcher_common.hpp | 226 …m_presult->set_size((m_match_flags & match_nosubs) ? 1u : static_cast<typename results_type::size_… in match_imp() 288 …m_presult->set_size((m_match_flags & match_nosubs) ? 1u : static_cast<typename results_type::size_… in find_imp() 307 …m_presult->set_size((m_match_flags & match_nosubs) ? 1u : static_cast<typename results_type::size_… in find_imp()
|
D | perl_matcher_recursive.hpp | 239 if((m_match_flags & match_nosubs) == 0) in match_startmark() 952 if((m_match_flags & match_nosubs) == 0) in match_endmark()
|
D | perl_matcher_non_recursive.hpp | 547 if((m_match_flags & match_nosubs) == 0) in match_startmark() 1059 if((m_match_flags & match_nosubs) == 0) in match_endmark()
|
/third_party/boost/libs/regex/doc/ |
D | match_flag_type.qbk | 37 static const match_flag_type match_nosubs; 87 [[match_nosubs][Makes the expression behave as if it had no marked
|