Searched refs:max_depth (Results 1 – 10 of 10) sorted by relevance
/PHP-7.0/ext/json/ |
H A D | php_json_parser.h | 29 int max_depth; member 32 …hp_json_parser *parser, zval *return_value, char *str, size_t str_len, int options, int max_depth);
|
H A D | json_parser.y | 82 if (parser->max_depth && parser->depth >= parser->max_depth) { \ 230 …php_json_parser *parser, zval *return_value, char *str, size_t str_len, int options, int max_depth) 235 parser->max_depth = max_depth;
|
H A D | json_parser.tab.c | 213 if (parser->max_depth && parser->depth >= parser->max_depth) { \ 1842 …php_json_parser *parser, zval *return_value, char *str, size_t str_len, int options, int max_depth) in php_json_parser_init() argument 1847 parser->max_depth = max_depth; in php_json_parser_init()
|
/PHP-7.0/ext/spl/tests/ |
H A D | iterator_021.phpt | 30 private $max_depth; 34 function __construct($it, $max_depth) 36 $this->max_depth = $max_depth; 80 $res = $this->getDepth() < $this->max_depth && $has;
|
H A D | iterator_022.phpt | 30 private $max_depth; 34 function __construct($it, $max_depth) 36 $this->max_depth = $max_depth; 80 $res = $this->getDepth() < $this->max_depth && $has;
|
H A D | iterator_034.phpt | 36 private $max_depth; 39 function __construct($it, $max_depth) 41 $this->max_depth = $max_depth; 79 $res = $this->getDepth() < $this->max_depth && $has;
|
H A D | iterator_023.phpt | 30 private $max_depth; 34 function __construct($it, $max_depth) 36 $this->max_depth = $max_depth; 80 $res = $this->getDepth() < $this->max_depth && $has;
|
H A D | bug54281.phpt | 7 function __construct($it, $max_depth) { }
|
H A D | iterator_028.phpt | 110 string(33) "Parameter max_depth must be >= -1"
|
/PHP-7.0/ext/spl/ |
H A D | spl_iterators.c | 108 int max_depth; member 289 if (object->max_depth == -1 || object->max_depth > object->level) { in spl_recursive_it_move_forward_ex() 551 intern->max_depth = -1; in spl_recursive_it_it_construct() 857 zend_long max_depth = -1; in SPL_METHOD() local 862 if (max_depth < -1) { in SPL_METHOD() 865 } else if (max_depth > INT_MAX) { in SPL_METHOD() 866 max_depth = INT_MAX; in SPL_METHOD() 869 object->max_depth = (int)max_depth; in SPL_METHOD() 882 if (object->max_depth == -1) { in SPL_METHOD() 885 RETURN_LONG(object->max_depth); in SPL_METHOD() [all …]
|
Completed in 30 milliseconds