Home
last modified time | relevance | path

Searched refs:RE_Options (Results 1 – 4 of 4) sorted by relevance

/external/pcre/dist/
Dpcrecpp.h355 class PCRECPP_EXP_DEFN RE_Options {
358 RE_Options() : match_limit_(0), match_limit_recursion_(0), all_options_(0) {} in RE_Options() function
368 RE_Options(int option_flags) : match_limit_(0), match_limit_recursion_(0), in RE_Options() function
374 RE_Options &set_match_limit(int limit) { in set_match_limit()
380 RE_Options &set_match_limit_recursion(int limit) { in set_match_limit_recursion()
388 RE_Options &set_caseless(bool x) { in set_caseless()
395 RE_Options &set_multiline(bool x) { in set_multiline()
402 RE_Options &set_dotall(bool x) { in set_dotall()
409 RE_Options &set_extended(bool x) { in set_extended()
416 RE_Options &set_dollar_endonly(bool x) { in set_dollar_endonly()
[all …]
Dpcrecpp_unittest.cc48 using pcrecpp::RE_Options;
336 RE re(t->regexp, RE_Options(PCRE_NEWLINE_CRLF).set_utf8(support_utf8)); in TestReplace()
349 RE re("b*", RE_Options(PCRE_NEWLINE_CR).set_utf8(support_utf8)); in TestReplace()
356 RE re("b*", RE_Options(PCRE_NEWLINE_LF).set_utf8(support_utf8)); in TestReplace()
453 RE_Options options_ml; in TestRecursion()
468 RE_Options options_mlr; in TestRecursion()
486 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { in TestQuoteMeta()
495 RE_Options options = RE_Options()) { in NegativeTestQuoteMeta()
568 RE_Options options, in GetOneOptionResult()
590 RE_Options options, in TestOneOption()
[all …]
Dpcrecpp.cc81 static RE_Options default_options;
83 void RE::Init(const string& pat, const RE_Options* options) { in Init()
/external/pcre/dist/doc/
Dpcre.txt9899 pcrecpp::RE_Options options;
9916 RE_Options, as a vehicle to pass such modifiers to a RE class. Cur-
9946 RE_Options & set_caseless(bool)
9961 RE_Options object, set the appropriate options, and pass this object to
9964 RE_Options opt;
9974 RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
9979 RE_Options().set_caseless(true).set_multiline(true))
9983 convenience functions that return a RE_Options class with the appropri-
9988 through the pains of declaring a RE_Options object and setting several
9996 RE_Options()