Home
last modified time | relevance | path

Searched refs:syntax_options (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/libs/regex/test/regress/
Dtest_icu.cpp241 boost::regex_constants::syntax_option_type syntax_options = test_info<UChar32>::syntax_options(); in test_icu() local
247 r.assign(expression.begin(), expression.end(), syntax_options); in test_icu()
250 r.assign(&*expression.begin(), expression.size(), syntax_options); in test_icu()
252 r.assign(static_cast<UChar32 const*>(0), expression.size(), syntax_options); in test_icu()
300 r = boost::make_u32regex(expression16.begin(), expression16.end(), syntax_options); in test_icu()
313 r = boost::make_u32regex(&*expression16.begin(), syntax_options); in test_icu()
344 r = boost::make_u32regex(expression8.begin(), expression8.end(), syntax_options); in test_icu()
357 r = boost::make_u32regex(&*expression8.begin(), syntax_options); in test_icu()
407 boost::regex_constants::syntax_option_type syntax_options = test_info<wchar_t>::syntax_options(); in test_icu() local
424 …if(0 == r.assign(expression.begin(), expression.end(), syntax_options | boost::regex_constants::no… in test_icu()
[all …]
Dtest_not_regex.hpp61 boost::regex_constants::syntax_option_type syntax_options = test_info<charT>::syntax_options(); in test() local
69 if(0 == r.assign(expression, syntax_options | boost::regex_constants::no_except).status()) in test()
89 r.assign(expression, syntax_options); in test()
Dtest_mfc.cpp40 boost::regex r = boost::make_regex(s2, test_info<char>::syntax_options()); in test_mfc()
218 boost::wregex r = boost::make_regex(s2, test_info<wchar_t>::syntax_options()); in test_mfc()
394 boost::regex e = boost::make_regex(s, test_info<char>::syntax_options()); in test_mfc()
431 boost::wregex e = boost::make_regex(s, test_info<wchar_t>::syntax_options()); in test_mfc()
464 boost::regex_constants::syntax_option_type syntax_options = test_info<char>::syntax_options(); in test_mfc() local
466 boost::regex r = boost::make_regex(expression, syntax_options); in test_mfc()
503 boost::regex_constants::syntax_option_type syntax_options = test_info<wchar_t>::syntax_options(); in test_mfc() local
505 boost::wregex r = boost::make_regex(expression, syntax_options); in test_mfc()
Dtest_deprecated.cpp87 int posix_options = get_posix_compile_options(test_info<char>::syntax_options()); in test_deprecated()
137 if(test_info<char>::syntax_options() & ~boost::regex::icase) in test_deprecated()
143 boost::RegEx e(expression, (test_info<char>::syntax_options() & boost::regex::icase) != 0); in test_deprecated()
215 int posix_options = get_posix_compile_options(test_info<wchar_t>::syntax_options()); in test_deprecated()
269 int posix_options = get_posix_compile_options(test_info<char>::syntax_options()); in test_deprecated()
306 if(test_info<char>::syntax_options() & ~boost::regex::icase) in test_deprecated()
313 boost::RegEx e(expression, (test_info<char>::syntax_options() & boost::regex::icase) != 0); in test_deprecated()
351 int posix_options = get_posix_compile_options(test_info<wchar_t>::syntax_options()); in test_deprecated()
Dtest_regex_replace.hpp46 boost::regex_constants::syntax_option_type syntax_options = test_info<charT>::syntax_options(); in test() local
51 r.assign(expression, syntax_options); in test()
Dtest_regex_search.hpp478 boost::regex_constants::syntax_option_type syntax_options = test_info<charT>::syntax_options(); in test() local
483 r.assign(expression, syntax_options); in test()
501 if((syntax_options & boost::regbase::save_subexpression_location) == 0) in test()
518 r.assign(expression, syntax_options | boost::regbase::save_subexpression_location); in test()
Dtest_partial_match.hpp354 boost::regex_constants::syntax_option_type syntax_options = test_info<charT>::syntax_options(); in test() local
356 r.assign(expression, syntax_options); in test()
Dinfo.hpp157 static boost::regex_constants::syntax_option_type syntax_options() in syntax_options() function in test_info_base