Home
last modified time | relevance | path

Searched refs:format_all (Results 1 – 17 of 17) sorted by relevance

/third_party/boost/libs/regex/test/regress/
Dtest_replace.cpp84 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/
Dmatch_flags.hpp73 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;
Dregex_format.hpp123 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/
Dregex_merge_example.cpp74 …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()
Dregex_replace_example.cpp74 …: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/
Dcopy_path.cpp169 …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()
Dscan_licence.cpp147 … std::string author_list = cpy->format(licenses.first[i].copyright_formatter, boost::format_all); in scan_license()
Dlicence_info.cpp719 return boost::regex_replace(name, e, formatter, boost::match_default | boost::format_all); in format_authors_name()
/third_party/boost/boost/xpressive/
Dregex_constants.hpp181 format_all = 1 << 18 ///< Specifies that all syntax extensions are enabled, enumerator
Dmatch_results.hpp878 else if(0 != (regex_constants::format_all & flags)) in format_()
/third_party/boost/libs/xpressive/doc/
Dhistory.qbk43 * `match_flag_type::format_perl`, `match_flag_type::format_sed`, and `match_flag_type::format_all`
Dsubstitutions.qbk64 [[`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/
Dmatch_flag_type.qbk47 static const match_flag_type format_all;
114 [[format_all][Specifies that all syntax extensions are enabled, including
Dregex_replace.qbk205 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/
Dauto_index.cpp125 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()
Dindex_generator.cpp154 …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/
Dregress.ipp237 test.match_flags = test.match_flags | regex_constants::format_all;