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

  /external/chromium_org/third_party/re2/util/
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;
pcre.cc 56 void PCRE::Init(const char* pattern, Option options, int match_limit,
60 match_limit_ = match_limit;
93 Init(pattern.c_str(), re_option.option(), re_option.match_limit(),
98 Init(pattern, re_option.option(), re_option.match_limit(),
474 int match_limit = match_limit_; local
475 if (match_limit <= 0) {
476 match_limit = FLAGS_regexp_match_limit;
485 if (match_limit > 0) {
487 extra.match_limit = match_limit;
    [all...]

Completed in 147 milliseconds