Home
last modified time | relevance | path

Searched refs:match_not_dot_newline (Results 1 – 22 of 22) sorted by relevance

/third_party/boost/libs/regex/test/regress/
Dtest_simple_repeats.cpp275 …TEST_REGEX_SEARCH("ab.*xy", perl, "abxy_", match_not_dot_newline|match_not_dot_null, make_array(0,… in test_fast_repeats()
276 …TEST_REGEX_SEARCH("ab.*xy", perl, "ab_xy_", match_not_dot_newline|match_not_dot_null, make_array(0… in test_fast_repeats()
277 …TEST_REGEX_SEARCH("ab.*xy", perl, "abxy", match_not_dot_newline|match_not_dot_null, make_array(0, … in test_fast_repeats()
278 …TEST_REGEX_SEARCH("ab.*xy", perl, "ab_xy", match_not_dot_newline|match_not_dot_null, make_array(0,… in test_fast_repeats()
279 …TEST_REGEX_SEARCH("ab.*", perl, "ab", match_not_dot_newline|match_not_dot_null, make_array(0, 2, -… in test_fast_repeats()
280 …TEST_REGEX_SEARCH("ab.*", perl, "ab__", match_not_dot_newline|match_not_dot_null, make_array(0, 4,… in test_fast_repeats()
281 …TEST_REGEX_SEARCH(".*xy", perl, "abc", match_not_dot_newline|match_not_dot_null, make_array(-2, -2… in test_fast_repeats()
282 …TEST_REGEX_SEARCH(".*?xy", perl, "abc", match_not_dot_newline|match_not_dot_null, make_array(-2, -… in test_fast_repeats()
283 …TEST_REGEX_SEARCH(".*xy", perl, "ab\nbc", match_not_dot_newline|match_not_dot_null, make_array(-2,… in test_fast_repeats()
284 …TEST_REGEX_SEARCH(".*?xy", perl, "ax\nbc", match_not_dot_newline|match_not_dot_null, make_array(-2… in test_fast_repeats()
[all …]
Dbasic_tests.cpp79 TEST_REGEX_SEARCH(".", perl, "a", match_not_dot_newline, make_array(0, 1, -2, -2)); in basic_tests()
80 TEST_REGEX_SEARCH(".", perl, "\n", match_not_dot_newline, make_array(-2, -2)); in basic_tests()
81 TEST_REGEX_SEARCH(".", perl, "\r", match_not_dot_newline, make_array(-2, -2)); in basic_tests()
82 TEST_REGEX_SEARCH(".", perl, "\0", match_not_dot_newline, make_array(0, 1, -2, -2)); in basic_tests()
83 …TEST_REGEX_SEARCH(".", perl, "\n", match_not_dot_null | match_not_dot_newline, make_array(-2, -2)); in basic_tests()
84 …TEST_REGEX_SEARCH(".", perl, "\r", match_not_dot_null | match_not_dot_newline, make_array(-2, -2)); in basic_tests()
85 …TEST_REGEX_SEARCH(".", perl, "\0", match_not_dot_null | match_not_dot_newline, make_array(-2, -2)); in basic_tests()
90 TEST_REGEX_SEARCH(".", basic, "a", match_not_dot_newline, make_array(0, 1, -2, -2)); in basic_tests()
91 TEST_REGEX_SEARCH(".", basic, "\n", match_not_dot_newline, make_array(-2, -2)); in basic_tests()
92 TEST_REGEX_SEARCH(".", basic, "\r", match_not_dot_newline, make_array(-2, -2)); in basic_tests()
[all …]
Dtest_non_greedy_repeats.cpp40 …SEARCH("xx.{0,2}?(?:[+-][0-9])??\\z", perl, "xx--", match_default|match_not_dot_newline, make_arra… in test_non_greedy_repeats()
Dtest_tricky_cases.cpp423 perl, big_text, match_default|match_not_dot_newline, in test_tricky_cases3()
432 perl, std::wstring(st.begin(), st.end()), match_default|match_not_dot_newline, in test_tricky_cases3()
443 perl, str.c_str(), match_default | match_not_dot_newline, in test_tricky_cases3()
Dtest_unicode.cpp164 match_default | match_not_dot_newline, make_array(0, 1, -2, 9, 10, -2, -2)); in test_unicode()
/third_party/boost/boost/regex/v4/
Dmatch_flags.hpp47 match_not_dot_newline = match_not_eow << 1, /* \n is not matched by '.' */ enumerator
48 match_not_dot_null = match_not_dot_newline << 1, /* '\0' is not matched by '.' */
80 | match_not_eob | match_not_bow | match_not_eow | match_not_dot_newline
129 using regex_constants::match_not_dot_newline;
Dperl_matcher_common.hpp99 …match_any_mask = static_cast<unsigned char>((f & match_not_dot_newline) ? BOOST_REGEX_DETAIL_NS::t… in construct_init()
/third_party/boost/libs/spirit/example/lex/static_lexer/
Dword_count_tokens.hpp30 boost::spirit::lex::match_flags::match_not_dot_newline) in word_count_tokens()
/third_party/boost/libs/spirit/example/lex/
Dprint_number_tokenids.cpp45 : print_numbers_tokenids::base_type(lex::match_flags::match_not_dot_newline) in print_numbers_tokenids()
Dprint_numbers.cpp45 : print_numbers_tokens::base_type(lex::match_flags::match_not_dot_newline) in print_numbers_tokens()
/third_party/boost/libs/xpressive/doc/
Dregexpp_diffs.qbk30 * `match_not_dot_null` and `match_not_dot_newline` have moved from the `match_flag_type` enum to the
/third_party/boost/libs/regex/doc/
Dmatch_flag_type.qbk33 static const match_flag_type match_not_dot_newline;
76 [[match_not_dot_newline][Specifies that the expression "." does not match a newline character. Thi…
Dsyntax_option_type.qbk147 whether `match_not_dot_newline` is set in the match flags.]]
152 whether `match_not_dot_newline` is set in the match flags.]]
Dpartial_matches.qbk35 …ruction of the regular expressions used, or by setting flags like match_not_dot_newline so that ex…
Dsyntax_basic.qbk37 * The newline character when the flag `match_not_dot_newline` is passed to
Dsyntax_extended.qbk37 * The newline character when the flag `match_not_dot_newline` is passed
Dsyntax_perl.qbk41 flag [^match_not_dot_newline]] is passed to
/third_party/boost/libs/regex/src/
Dposix_api.cpp91 expression->eflags = (f & REG_NEWLINE) ? match_not_dot_newline : match_default; in regcompA()
Dwide_posix_api.cpp101 expression->eflags = (f & REG_NEWLINE) ? match_not_dot_newline : match_default; in regcompW()
/third_party/boost/boost/spirit/home/lex/lexer/lexertl/
Dlexer.hpp87 if (flags & match_flags::match_not_dot_newline) in map_flags()
/third_party/boost/boost/spirit/home/lex/lexer/
Dlexer.hpp342 match_not_dot_newline = 1, // the regex '.' doesn't match newlines enumerator
/third_party/boost/libs/spirit/doc/
Dwhat_s_new.qbk777 match_flags::match_not_dot_newline, // the regex '.' doesn't match newlines