Lines Matching refs:indent
377 static void zend_print_zval_r_to_buf(smart_str *buf, zval *expr, int indent);
379 static void print_hash(smart_str *buf, HashTable *ht, int indent, bool is_object) /* {{{ */
386 for (i = 0; i < indent; i++) {
390 indent += PRINT_ZVAL_INDENT;
392 for (i = 0; i < indent; i++) {
419 zend_print_zval_r_to_buf(buf, tmp, indent+PRINT_ZVAL_INDENT);
422 indent -= PRINT_ZVAL_INDENT;
423 for (i = 0; i < indent; i++) {
464 ZEND_API size_t zend_print_zval(zval *expr, int indent) /* {{{ */
543 static void zend_print_zval_r_to_buf(smart_str *buf, zval *expr, int indent) /* {{{ */
555 print_hash(buf, Z_ARRVAL_P(expr), indent, 0);
585 print_hash(buf, (HashTable*) &zend_empty_array, indent, 1);
590 print_hash(buf, properties, indent, 1);
600 zend_print_zval_r_to_buf(buf, Z_REFVAL_P(expr), indent);
616 ZEND_API zend_string *zend_print_zval_r_to_str(zval *expr, int indent) /* {{{ */
619 zend_print_zval_r_to_buf(&buf, expr, indent);
625 ZEND_API void zend_print_zval_r(zval *expr, int indent) /* {{{ */
627 zend_string *str = zend_print_zval_r_to_str(expr, indent);