Home
last modified time | relevance | path

Searched refs:PARENS_NEST_LIMIT (Results 1 – 8 of 8) sorted by relevance

/external/pcre/
Dconfig.h238 #define PARENS_NEST_LIMIT 250 macro
/external/pcre/dist/
Dpcre_config.c165 *((unsigned long int *)where) = PARENS_NEST_LIMIT; in pcre_config()
Dconfig-cmake.h.in49 #define PARENS_NEST_LIMIT @PCRE_PARENS_NEST_LIMIT@ macro
Dconfig.h.generic249 /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
252 #ifndef PARENS_NEST_LIMIT
253 #define PARENS_NEST_LIMIT 250
Dconfig.h.in234 /* The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
237 #undef PARENS_NEST_LIMIT
DCMakeLists.txt67 # 2013-11-05 PH added support for PARENS_NEST_LIMIT
137 "Default nested parentheses limit. See PARENS_NEST_LIMIT in config.h.in for details.")
Dconfigure.ac803 AC_DEFINE_UNQUOTED([PARENS_NEST_LIMIT], [$with_parens_nest_limit], [ definition
804 The value of PARENS_NEST_LIMIT specifies the maximum depth of nested
Dpcre_compile.c7662 if ((cd->parens_depth += 1) > PARENS_NEST_LIMIT) in compile_branch()