/third_party/boost/libs/regex/test/regress/ |
D | test_replace.cpp | 84 TEST_REGEX_REPLACE("a+", perl, "...aaa,,,", match_default|format_all, "bbb", "...bbb,,,"); in test_replace() 85 TEST_REGEX_REPLACE("a+(b+)", perl, "...aaabb,,,", match_default|format_all, "$1", "...bb,,,"); in test_replace() 86 …TEST_REGEX_REPLACE("a+(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "$1", "...bb,,… in test_replace() 87 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?1A)(?2B)… in test_replace() 88 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?1A:B", ".… in test_replace() 89 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?1A:B)C",… in test_replace() 90 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?1:B", "..… in test_replace() 92 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{1}A)(?{… in test_replace() 93 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "?{1}A:B", … in test_replace() 94 …TEST_REGEX_REPLACE("(a+)|(b+)", perl, "...aaabb,,,ab*abbb?", match_default|format_all, "(?{1}A:B)C… in test_replace() [all …]
|
/third_party/boost/boost/regex/v4/ |
D | match_flags.hpp | 73 format_all = format_sed << 1, /* enable all extentions to sytax. */ enumerator 74 format_no_copy = format_all << 1, /* don't copy non-matching segments. */ 86 | format_all | format_no_copy | format_first_only | format_is_if 145 using regex_constants::format_all;
|
D | regex_format.hpp | 123 void format_all(); 220 format_all(); in format() 225 void basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() in format_all() function in boost::BOOST_REGEX_DETAIL_NS::basic_regex_formatter 245 if(m_flags & boost::regex_constants::format_all) in format_all() 262 if(m_flags & boost::regex_constants::format_all) in format_all() 270 if((m_flags & boost::regex_constants::format_all) && m_have_conditional) in format_all() 278 if(m_flags & boost::regex_constants::format_all) in format_all() 718 format_all(); in format_conditional() 740 format_all(); in format_conditional() 759 format_all(); in format_until_scope_end() [all …]
|
/third_party/boost/libs/regex/example/snippets/ |
D | regex_merge_example.cpp | 74 …t::regex_merge(oi, in.begin(), in.end(), e2, pre_format, boost::match_default | boost::format_all); in main() 79 …:regex_merge(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all); in main()
|
D | regex_replace_example.cpp | 74 …:regex_replace(oi, in.begin(), in.end(), e2, pre_format, boost::match_default | boost::format_all); in main() 79 …egex_replace(out, s.begin(), s.end(), e1, format_string, boost::match_default | boost::format_all); in main()
|
/third_party/boost/tools/bcp/ |
D | copy_path.cpp | 169 …amespace_name + "$2(?3$3" + m_namespace_name + "phoenix?4$4)", boost::regex_constants::format_all); in copy_path() 206 "$1 $3$4 {} $1 (?4$4:boost) = $3$4; $1$2$3$4$5", boost::regex_constants::format_all); in copy_path()
|
D | scan_licence.cpp | 147 … std::string author_list = cpy->format(licenses.first[i].copyright_formatter, boost::format_all); in scan_license()
|
D | licence_info.cpp | 719 return boost::regex_replace(name, e, formatter, boost::match_default | boost::format_all); in format_authors_name()
|
/third_party/boost/boost/xpressive/ |
D | regex_constants.hpp | 181 format_all = 1 << 18 ///< Specifies that all syntax extensions are enabled, enumerator
|
D | match_results.hpp | 878 else if(0 != (regex_constants::format_all & flags)) in format_()
|
/third_party/boost/libs/xpressive/doc/ |
D | history.qbk | 43 * `match_flag_type::format_perl`, `match_flag_type::format_sed`, and `match_flag_type::format_all`
|
D | substitutions.qbk | 64 [[`format_all`] [In addition to the Perl format sequences, recognize some 70 `format_all` are ignored. 144 When specifying the `format_all` flag to _regex_replace_, the escape sequences
|
/third_party/boost/libs/regex/doc/ |
D | match_flag_type.qbk | 47 static const match_flag_type format_all; 114 [[format_all][Specifies that all syntax extensions are enabled, including
|
D | regex_replace.qbk | 205 e2, pre_format, boost::match_default | boost::format_all); 211 e1, format_string, boost::match_default | boost::format_all);
|
/third_party/boost/tools/auto_index/src/ |
D | auto_index.cpp | 125 return regex_replace(result, e, "(?2 )", boost::regex_constants::format_all); in get_consolidated_content() 264 return regex_replace(s, e, "(?1\")(?2&)(?3\')(?4<)(?5>)", boost::regex_constants::format_all); in unescape_xml()
|
D | index_generator.cpp | 154 …return boost::regex(regex_replace(s, e, format, boost::regex_constants::format_all), boost::regex:… in make_primary_key_matcher()
|
/third_party/boost/libs/xpressive/test/ |
D | regress.ipp | 237 test.match_flags = test.match_flags | regex_constants::format_all;
|