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

/external/pcre/pcrecpp/include/
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()
354 // RE_Options allo
358 class RE_Options { class in namespace:pcrecpp
361 RE_Options() function in class:pcrecpp::RE_Options
376 RE_Options(int option_flags) function in class:pcrecpp::RE_Options
[all...]
/external/pcre/pcrecpp/
H A Dpcrecpp_unittest.cc48 using pcrecpp::RE_Options;
336 RE re(t->regexp, RE_Options().set_newline_mode(PCRE2_NEWLINE_CRLF)
350 RE re("b*", RE_Options().set_newline_mode(PCRE2_NEWLINE_CR)
358 RE re("b*", RE_Options().set_newline_mode(PCRE2_NEWLINE_LF)
456 RE_Options options_ml;
471 RE_Options options_mlr;
489 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { argument
498 RE_Options options = RE_Options()) {
497 NegativeTestQuoteMeta(string unquoted, string should_not_match, RE_Options options = RE_Options()) argument
[all...]
H A Dpcrecpp.cc51 static RE_Options default_options;
53 void RE::Init(const string& pat, const RE_Options* options) {
91 // First, convert RE_Options into pcre options

Completed in 188 milliseconds