Home | History | Annotate | Download | only in util

Lines Matching defs:Option

219   // "(?s)" has the same effect as the PCRE_DOTALL option.
220 enum Option {
230 PCRE(const char* pattern, Option option);
232 PCRE(const string& pattern, Option option);
450 // Type of match (TODO: Should be restructured as an Option)
469 void Init(const char* pattern, Option option, int match_limit,
511 Option options_;
539 PCRE::Option option() const { return option_; }
540 void set_option(PCRE::Option option) {
541 option_ = option;
559 PCRE::Option option_;