pcre.h | 173 struct pcre_extra { int flags, match_limit, match_limit_recursion; }; 469 void Init(const char* pattern, Option option, int match_limit, 523 // "extra" options. The only extras are match_limit, which limits 543 int match_limit() const { return match_limit_; } function in class:re2::PCRE_Options 544 void set_match_limit(int match_limit) { 545 match_limit_ = match_limit;
|