Searched refs:match_not_bol (Results 1 – 12 of 12) sorted by relevance
/third_party/boost/libs/regex/test/regress/ |
D | test_anchors.cpp | 37 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "ab", match_default | match_not_bol | match_not_e… in test_anchors() 38 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xxabxx", match_default | match_not_bol | match_n… in test_anchors() 39 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xx\nabzz", match_default | match_not_bol | match… in test_anchors() 40 …TEST_REGEX_SEARCH("ab$", boost::regex::extended, "ab", match_default | match_not_bol | match_not_e… in test_anchors() 41 …TEST_REGEX_SEARCH("ab$", boost::regex::extended, "abxx", match_default | match_not_bol | match_not… in test_anchors() 42 …TEST_REGEX_SEARCH("ab$", boost::regex::extended, "ab\nzz", match_default | match_not_bol | match_n… in test_anchors() 51 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "ab", match_default | match_not_bol | match_not_e… in test_anchors() 52 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xxabxx", match_default | match_not_bol | match_n… in test_anchors() 53 …TEST_REGEX_SEARCH("^ab", boost::regex::extended, "xx\nabzz", match_default | match_not_bol | match… in test_anchors() 54 …TEST_REGEX_SEARCH("ab$", boost::regex::extended, "ab", match_default | match_not_bol | match_not_e… in test_anchors() [all …]
|
D | test_deprecated.cpp | 70 if(f & boost::regex_constants::match_not_bol) in get_posix_match_flags() 74 if(f & ~(boost::regex_constants::match_not_bol|boost::regex_constants::match_not_eol)) in get_posix_match_flags()
|
D | test_unicode.cpp | 160 …match_default | match_not_bol, make_array(2, 2, -2, 4, 4, -2, 7, 7, -2, 9, 9, -2, 11, 11, -2, 13, … in test_unicode()
|
/third_party/boost/boost/regex/v4/ |
D | match_flags.hpp | 41 match_not_bol = 1, /* first is not start of line */ enumerator 42 match_not_eol = match_not_bol << 1, /* last is not end of line */ 79 match_not_any = match_not_bol | match_not_eol | match_not_bob 123 using regex_constants::match_not_bol;
|
D | perl_matcher_common.hpp | 404 if((m_match_flags & match_not_bol) == 0) in match_start_line()
|
/third_party/boost/boost/xpressive/ |
D | regex_constants.hpp | 113 match_not_bol = 1 << 1, ///< Specifies that the expression "^" should not be matched enumerator
|
/third_party/boost/libs/regex/doc/ |
D | match_flag_type.qbk | 23 static const match_flag_type match_not_bol; 64 [[match_not_bol][Specifies that the expression "^" should not be matched against the sub-sequence \… 75 …st is a valid iterator position, when this flag is set then the flags match_not_bol and match_not_…
|
/third_party/boost/libs/xpressive/doc/ |
D | matching.qbk | 63 // match_not_bol means that "bol" should not match at [begin,begin) 64 if( regex_match( str.begin(), str.end(), sre, regex_constants::match_not_bol ) )
|
/third_party/boost/libs/regex/src/ |
D | posix_api.cpp | 236 flags |= match_not_bol; in regexecA()
|
D | wide_posix_api.cpp | 252 flags |= match_not_bol; in regexecW()
|
/third_party/boost/boost/xpressive/detail/core/ |
D | state.hpp | 87 , match_bol_(match_prev_avail_ || 0 == (flags & regex_constants::match_not_bol)) in match_flags()
|
/third_party/boost/boost/regex/ |
D | concepts.hpp | 321 | global_regex_namespace::regex_constants::match_not_bol in global_constraints() 866 | global_regex_namespace::regex_constants::match_not_bol in constraints()
|