Home | History | Annotate | Download | only in util

Lines Matching defs:Option

213   // "(?s)" has the same effect as the PCRE_DOTALL option.
214 enum Option {
224 PCRE(const char* pattern, Option option);
226 PCRE(const string& pattern, Option option);
444 // Type of match (TODO: Should be restructured as an Option)
463 void Init(const char* pattern, Option option, int match_limit,
505 Option options_;
533 PCRE::Option option() const { return option_; }
534 void set_option(PCRE::Option option) {
535 option_ = option;
553 PCRE::Option option_;