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

  /external/pcre/
pcre.h.generic 233 unsigned long int match_limit_recursion; /* Max recursive calls to match() */
pcre.h.in 233 unsigned long int match_limit_recursion; /* Max recursive calls to match() */
pcregrep.c 170 static unsigned long int match_limit_recursion = 0; variable
243 { OP_LONGNUMBER, N_M_LIMIT_REC, &match_limit_recursion, "recursion-limit=number", "set PCRE match recursion limit option" },
    [all...]
pcrecpp.h 211 // disable match limiting. Alternately, you can set match_limit_recursion()
353 // Only 9 modifiers, plus match_limit and match_limit_recursion,
379 int match_limit_recursion() const { return match_limit_recursion_; }; function in class:pcrecpp::RE_Options
pcrecpp.cc 520 if (options_.match_limit_recursion() > 0) {
522 extra.match_limit_recursion = options_.match_limit_recursion();
pcre_exec.c 660 if (rdepth >= md->match_limit_recursion) RRETURN(PCRE_ERROR_RECURSIONLIMIT);
    [all...]
pcregexp.pas 273 match_limit_recursion: longint; { Max recursive calls to match() }
pcretest.c     [all...]

Completed in 859 milliseconds