Home
last modified time | relevance | path

Searched refs:nosubs (Results 1 – 18 of 18) sorted by relevance

/third_party/boost/libs/regex/test/regress/
Dtest_grep.cpp26 …TEST_REGEX_SEARCH("a", perl|nosubs, " a a a aa", match_default, make_array(1, 2, -2, 3, 4, -2, 5, … in test_grep()
27 …TEST_REGEX_SEARCH("a+b+", perl|nosubs, "aabaabbb ab", match_default, make_array(0, 3, -2, 3, 8, -2… in test_grep()
28 …TEST_REGEX_SEARCH("a(b*|c|e)d", perl|nosubs, "adabbdacd", match_default, make_array(0, 2, -2, 2, 6… in test_grep()
29 …TEST_REGEX_SEARCH("a", perl|nosubs, "\na\na\na\naa", match_default, make_array(1, 2, -2, 3, 4, -2,… in test_grep()
30 …TEST_REGEX_SEARCH("^", perl|nosubs, " \n\n \n\n\n", match_default, make_array(0, 0, -2, 4, 4, -… in test_grep()
31 …TEST_REGEX_SEARCH("^ab", perl|nosubs, "ab \nab ab\n", match_default, make_array(0, 2, -2, 5, 7, … in test_grep()
32 …TEST_REGEX_SEARCH("^[^\\n]*\n", perl|nosubs, " \n \n\n \n", match_default, make_array(0, 4, -2… in test_grep()
33 …TEST_REGEX_SEARCH("\\<abc", perl|nosubs, "abcabc abc\n\nabc", match_default, make_array(0, 3, -2, … in test_grep()
34 …TEST_REGEX_SEARCH("\\<", perl|nosubs, " ab a aaa ", match_default, make_array(2, 2, -2, 5, 5, -2… in test_grep()
35 …TEST_REGEX_SEARCH("\\<\\w+\\W+", perl|nosubs, " aa aa a ", match_default, make_array(1, 5, -2, 5… in test_grep()
[all …]
Dbasic_tests.cpp183 TEST_REGEX_SEARCH("a(b?c)+d", perl|nosubs, "accd", match_default, make_array(0, 4, -2, -2)); in test_nosubs()
184 …TEST_REGEX_SEARCH("(wee|week)(knights|night)", perl|nosubs, "weeknights", match_default, make_arra… in test_nosubs()
185 TEST_REGEX_SEARCH(".*", perl|nosubs, "abc", match_default, make_array(0, 3, -2, 3, 3, -2, -2)); in test_nosubs()
186 TEST_REGEX_SEARCH("a(b|(c))d", perl|nosubs, "abd", match_default, make_array(0, 3, -2, -2)); in test_nosubs()
187 TEST_REGEX_SEARCH("a(b|(c))d", perl|nosubs, "acd", match_default, make_array(0, 3, -2, -2)); in test_nosubs()
188 TEST_REGEX_SEARCH("a(b*|c|e)d", perl|nosubs, "abbd", match_default, make_array(0, 4, -2, -2)); in test_nosubs()
190 TEST_REGEX_SEARCH("a(b*|c|e)d", perl|nosubs, "acd", match_default, make_array(0, 3, -2, -2)); in test_nosubs()
191 TEST_REGEX_SEARCH("a(b*|c|e)d", perl|nosubs, "ad", match_default, make_array(0, 2, -2, -2)); in test_nosubs()
192 TEST_REGEX_SEARCH("a(b?)c", perl|nosubs, "abc", match_default, make_array(0, 3, -2, -2)); in test_nosubs()
193 TEST_REGEX_SEARCH("a(b?)c", perl|nosubs, "ac", match_default, make_array(0, 2, -2, -2)); in test_nosubs()
[all …]
Dtest_deprecated.cpp57 if(opts & regbase::nosubs) in get_posix_compile_options()
Dtest_tricky_cases.cpp375 TEST_REGEX_SEARCH("(a)(?:b)", perl|nosubs, "ab", match_default, make_array(0, 2, -2, -2)); in test_tricky_cases3()
/third_party/boost/boost/regex/v4/
Dregbase.hpp86 nosubs = 1 << 22, // don't mark sub-expressions enumerator
135 nosubs = ::boost::regbase::nosubs, enumerator
Dbasic_regex_parser.hpp471 if(0 == (this->flags() & regbase::nosubs)) in parse_open_paren()
2442 if(0 == (this->flags() & regbase::nosubs)) in parse_perl_extension()
/third_party/boost/libs/xpressive/doc/
Dnyi.qbk15 * Control of nested results generation with `syntax_option_type::nosubs`,
16 and a `nosubs()` modifier for static xpressive.
/third_party/boost/boost/xpressive/
Dbasic_regex.hpp74 …_STATIC_CONSTANT(regex_constants::syntax_option_type, nosubs = regex_constants::nosubs
266 template<typename BidiIter> regex_constants::syntax_option_type const basic_regex<BidiIter>::nosubs; member in boost::xpressive::basic_regex<BidiIter>
Dregex_constants.hpp41 nosubs = 1 << 2, ///< Specifies that when a regular expression is matched against a enumerator
/third_party/json/benchmarks/thirdparty/benchmark/cmake/
Dstd_regex.cpp7 std::regex_constants::extended | std::regex_constants::nosubs); in main()
/third_party/benchmark/cmake/
Dstd_regex.cpp7 std::regex_constants::extended | std::regex_constants::nosubs); in main()
/third_party/boost/libs/regex/doc/
Dsyntax_option_type.qbk35 static const syntax_option_type nosubs;
124 [[nosubs][Yes][Specifies that when a regular expression is matched against
212 [[nosubs][Yes][Specifies that when a regular expression is matched against a
275 [[nosubs][Yes][Specifies that when a regular expression is matched against
Dbasic_regex.qbk107 static const regex_constants::``[syntax_option_type]`` nosubs
108 = regex_constants::nosubs;
265 static const regex_constants::``[syntax_option_type]`` nosubs
266 = regex_constants::nosubs;
Dsyntax_extended.qbk414 [link boost_regex.ref.syntax_option_type.syntax_option_type_extended `collate`, `nosubs`
Dsyntax_perl.qbk640 [^newline_alt] option alters the syntax, while the [^collate], [^nosubs] and
/third_party/boost/libs/regex/src/
Dposix_api.cpp105 flags |= regex::nosubs; in regcompA()
Dwide_posix_api.cpp115 flags |= wregex::nosubs; in regcompW()
/third_party/boost/boost/regex/
Dconcepts.hpp307 | global_regex_namespace::regex_constants::nosubs in global_constraints()
378 | Regex::nosubs in constraints()