HomeSort by relevance Sort by last modified time
    Searched refs:match_limit (Results 1 - 13 of 13) 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...]
  /external/regex-re2/util/
pcre.h 173 struct pcre_extra { int flags, match_limit, match_limit_recursion; };
463 void Init(const char* pattern, Option option, int match_limit,
517 // "extra" options. The only extras are match_limit, which limits
537 int match_limit() const { return match_limit_; } function in class:re2::PCRE_Options
538 void set_match_limit(int match_limit) {
539 match_limit_ = match_limit;
pcre.cc 51 void PCRE::Init(const char* pattern, Option options, int match_limit,
55 match_limit_ = match_limit;
88 Init(pattern.c_str(), re_option.option(), re_option.match_limit(),
93 Init(pattern, re_option.option(), re_option.match_limit(),
469 int match_limit = match_limit_; local
470 if (match_limit <= 0) {
471 match_limit = FLAGS_regexp_match_limit;
480 if (match_limit > 0) {
482 extra.match_limit = match_limit;
    [all...]
  /external/pcre/dist/
pcre.h.generic 379 unsigned long int match_limit; /* Maximum number of calls to match() */
392 unsigned long int match_limit; /* Maximum number of calls to match() */
405 unsigned long int match_limit; /* Maximum number of calls to match() */
pcre.h.in 379 unsigned long int match_limit; /* Maximum number of calls to match() */
392 unsigned long int match_limit; /* Maximum number of calls to match() */
405 unsigned long int match_limit; /* Maximum number of calls to match() */
pcregrep.c 182 static unsigned long int match_limit = 0; variable
362 { OP_LONGNUMBER, N_M_LIMIT, &match_limit, "match-limit=number", "set PCRE match limit option" },
    [all...]
pcrecpp.h 206 // set_match_limit() and match_limit() member functions.
207 // Setting match_limit to a non-zero value will limit the executation of
210 // stack blowup in a 2MB thread stack. Setting match_limit to zero will
213 // recurses. match_limit() caps the number of matches pcre does;
353 // Only 9 modifiers, plus match_limit and match_limit_recursion,
373 int match_limit() const { return match_limit_; }; function in class:pcrecpp::RE_Options
pcrecpp.cc 515 if (options_.match_limit() > 0) {
517 extra.match_limit = options_.match_limit();
pcretest.c 4159 pcre_uint32 match_limit, recursion_limit; local
    [all...]
pcre_exec.c 724 if (md->match_call_count++ >= md->match_limit) RRETURN(PCRE_ERROR_MATCHLIMIT);
    [all...]
pcregexp.pas 270 match_limit : longint; { Maximum number of calls to match() }
pcre_jit_compile.c     [all...]

Completed in 134 milliseconds