Home
last modified time | relevance | path

Searched refs:format_perl (Results 1 – 14 of 14) sorted by relevance

/third_party/boost/libs/regex/test/regress/
Dtest_replace.cpp58 …TEST_REGEX_REPLACE("\\w+", perl, "fee FOO FAR bAR", match_default|format_perl, "\\L\\u$0", "Fee Fo… in test_replace()
71 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "$0",… in test_replace()
72 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "$1",… in test_replace()
73 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "$2",… in test_replace()
74 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "$&",… in test_replace()
75 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "$$",… in test_replace()
76 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "&", … in test_replace()
77 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "\\0"… in test_replace()
78 …TEST_REGEX_REPLACE("(a+)(b+)", perl, " ...aabb,,", match_default|format_perl|format_no_copy, "()?:… in test_replace()
79 …TEST_REGEX_REPLACE("a+", perl, "...aaa,,", match_default|format_perl|format_no_copy, "\\0101", "A"… in test_replace()
[all …]
/third_party/boost/boost/regex/v4/
Dmatch_flags.hpp70 format_perl = 0, /* perl style replacement */ enumerator
85 | match_unused3 | match_max | format_perl | format_default | format_sed
147 using regex_constants::format_perl;
Dregex_format.hpp124 void format_perl();
290 format_perl(); in format_all()
304 void basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_perl() in format_perl() function in boost::BOOST_REGEX_DETAIL_NS::basic_regex_formatter
/third_party/boost/boost/xpressive/
Dregex_constants.hpp163 format_perl = 1 << 14, ///< Specifies that when a regular expression match is to be enumerator
Dmatch_results.hpp870 else if(0 != (regex_constants::format_perl & flags)) in format_()
/third_party/boost/libs/xpressive/doc/
Dnamed_captures.qbk62 str = regex_replace(str, rx, "**\\g<char>**", regex_constants::format_perl);
65 Notice that you have to specify `format_perl` when using named captures. Only
Dsubstitutions.qbk62 [[`format_perl`] [Recognize the Perl format sequences (see below).]]
69 a function object instead of a string, the flags `format_literal`, `format_perl`, `format_sed`, and
113 When specifying the `format_perl` flag to _regex_replace_, the following escape sequences
145 recognized are the same as those above for `format_perl`. In addition, conditional
Dhistory.qbk43 * `match_flag_type::format_perl`, `match_flag_type::format_sed`, and `match_flag_type::format_all`
/third_party/gettext/gettext-tools/src/
Dmessage.h70 format_perl, enumerator
Dxgettext.c1598 case format_perl: in xgettext_record_flag()
DChangeLog.17540 * message.h (enum format_type): New enum value 'format_perl'.
/third_party/boost/libs/regex/doc/
Dmatch_flag_type.qbk42 static const match_flag_type format_perl;
108 [[format_perl][Specifies that when a regular expression match is to be replaced by
/third_party/boost/libs/xpressive/test/
Dregress.ipp241 test.match_flags = test.match_flags | regex_constants::format_perl;
/third_party/boost/boost/regex/
Dconcepts.hpp877 | global_regex_namespace::regex_constants::format_perl in constraints()