Searched refs:RE_Options (Results 1 - 3 of 3) sorted by relevance

/external/pcre/dist/
H A Dpcrecpp.h156 // pcrecpp::RE_Options options;
173 // The C++ wrapper defines an auxiliary class, RE_Options, as a vehicle
202 // RE_Options & set_caseless(bool),
217 // a RE_Options object, set the appropriate options, and pass this
230 // RE(pattern, RE_Options(PCRE_CASELESS|PCRE_MULTILINE)).PartialMatch(str);
234 // RE_Options().set_caseless(true).set_multiline(true)).PartialMatch(str);
238 // convenience functions that return a RE_Options class with the
243 // through the pains of declaring a RE_Options object and setting several
250 // RE(" ^ xyz \\s+ .* blah$", RE_Options()
351 // RE_Options allo
355 class PCRECPP_EXP_DEFN RE_Options { class in namespace:pcrecpp
358 RE_Options() : match_limit_(0), match_limit_recursion_(0), all_options_(0) {} function in class:pcrecpp::RE_Options
368 RE_Options(int option_flags) : match_limit_(0), match_limit_recursion_(0), function in class:pcrecpp::RE_Options
[all...]
H A Dpcrecpp_unittest.cc48 using pcrecpp::RE_Options;
336 RE re(t->regexp, RE_Options(PCRE_NEWLINE_CRLF).set_utf8(support_utf8));
349 RE re("b*", RE_Options(PCRE_NEWLINE_CR).set_utf8(support_utf8));
356 RE re("b*", RE_Options(PCRE_NEWLINE_LF).set_utf8(support_utf8));
453 RE_Options options_ml;
468 RE_Options options_mlr;
486 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { argument
495 RE_Options options = RE_Options()) {
494 NegativeTestQuoteMeta(string unquoted, string should_not_match, RE_Options options = RE_Options()) argument
[all...]
H A Dpcrecpp.cc81 static RE_Options default_options;
83 void RE::Init(const string& pat, const RE_Options* options) {
113 // First, convert RE_Options into pcre options

Completed in 89 milliseconds