/third_party/boost/libs/regex/test/regress/ |
D | test_replace.cpp | 58 …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/ |
D | match_flags.hpp | 70 format_perl = 0, /* perl style replacement */ enumerator 85 | match_unused3 | match_max | format_perl | format_default | format_sed 147 using regex_constants::format_perl;
|
D | regex_format.hpp | 124 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/ |
D | regex_constants.hpp | 163 format_perl = 1 << 14, ///< Specifies that when a regular expression match is to be enumerator
|
D | match_results.hpp | 870 else if(0 != (regex_constants::format_perl & flags)) in format_()
|
/third_party/boost/libs/xpressive/doc/ |
D | named_captures.qbk | 62 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
|
D | substitutions.qbk | 62 [[`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
|
D | history.qbk | 43 * `match_flag_type::format_perl`, `match_flag_type::format_sed`, and `match_flag_type::format_all`
|
/third_party/gettext/gettext-tools/src/ |
D | message.h | 70 format_perl, enumerator
|
D | xgettext.c | 1598 case format_perl: in xgettext_record_flag()
|
D | ChangeLog.1 | 7540 * message.h (enum format_type): New enum value 'format_perl'.
|
/third_party/boost/libs/regex/doc/ |
D | match_flag_type.qbk | 42 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/ |
D | regress.ipp | 241 test.match_flags = test.match_flags | regex_constants::format_perl;
|
/third_party/boost/boost/regex/ |
D | concepts.hpp | 877 | global_regex_namespace::regex_constants::format_perl in constraints()
|