/third_party/boost/libs/regex/test/regress/ |
D | test_grep.cpp | 26 …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 …]
|
D | basic_tests.cpp | 183 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 …]
|
D | test_deprecated.cpp | 57 if(opts & regbase::nosubs) in get_posix_compile_options()
|
D | test_tricky_cases.cpp | 375 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/ |
D | regbase.hpp | 86 nosubs = 1 << 22, // don't mark sub-expressions enumerator 135 nosubs = ::boost::regbase::nosubs, enumerator
|
D | basic_regex_parser.hpp | 471 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/ |
D | nyi.qbk | 15 * Control of nested results generation with `syntax_option_type::nosubs`, 16 and a `nosubs()` modifier for static xpressive.
|
/third_party/boost/boost/xpressive/ |
D | basic_regex.hpp | 74 …_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>
|
D | regex_constants.hpp | 41 nosubs = 1 << 2, ///< Specifies that when a regular expression is matched against a enumerator
|
/third_party/json/benchmarks/thirdparty/benchmark/cmake/ |
D | std_regex.cpp | 7 std::regex_constants::extended | std::regex_constants::nosubs); in main()
|
/third_party/benchmark/cmake/ |
D | std_regex.cpp | 7 std::regex_constants::extended | std::regex_constants::nosubs); in main()
|
/third_party/boost/libs/regex/doc/ |
D | syntax_option_type.qbk | 35 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
|
D | basic_regex.qbk | 107 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;
|
D | syntax_extended.qbk | 414 [link boost_regex.ref.syntax_option_type.syntax_option_type_extended `collate`, `nosubs`
|
D | syntax_perl.qbk | 640 [^newline_alt] option alters the syntax, while the [^collate], [^nosubs] and
|
/third_party/boost/libs/regex/src/ |
D | posix_api.cpp | 105 flags |= regex::nosubs; in regcompA()
|
D | wide_posix_api.cpp | 115 flags |= wregex::nosubs; in regcompW()
|
/third_party/boost/boost/regex/ |
D | concepts.hpp | 307 | global_regex_namespace::regex_constants::nosubs in global_constraints() 378 | Regex::nosubs in constraints()
|