HomeSort by relevance Sort by last modified time
    Searched refs:RE_Options (Results 1 - 3 of 3) sorted by null

  /external/pcre/pcrecpp/include/
pcrecpp.h 156 // 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
220 // RE_options opt;
225 // RE_options has two constructors. The default constructor takes no
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 severa
    [all...]
  /external/pcre/pcrecpp/
pcrecpp_unittest.cc 48 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()) {
498 RE_Options options = RE_Options()) {
    [all...]
pcrecpp.cc 51 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 325 milliseconds