Lines Matching refs:indent
368 static void zend_print_zval_r_to_buf(smart_str *buf, zval *expr, int indent);
370 static void print_hash(smart_str *buf, HashTable *ht, int indent, bool is_object) /* {{{ */
377 for (i = 0; i < indent; i++) {
381 indent += PRINT_ZVAL_INDENT;
383 for (i = 0; i < indent; i++) {
410 zend_print_zval_r_to_buf(buf, tmp, indent+PRINT_ZVAL_INDENT);
413 indent -= PRINT_ZVAL_INDENT;
414 for (i = 0; i < indent; i++) {
455 ZEND_API size_t zend_print_zval(zval *expr, int indent) /* {{{ */
534 static void zend_print_zval_r_to_buf(smart_str *buf, zval *expr, int indent) /* {{{ */
546 print_hash(buf, Z_ARRVAL_P(expr), indent, 0);
576 print_hash(buf, (HashTable*) &zend_empty_array, indent, 1);
581 print_hash(buf, properties, indent, 1);
591 zend_print_zval_r_to_buf(buf, Z_REFVAL_P(expr), indent);
607 ZEND_API zend_string *zend_print_zval_r_to_str(zval *expr, int indent) /* {{{ */
610 zend_print_zval_r_to_buf(&buf, expr, indent);
616 ZEND_API void zend_print_zval_r(zval *expr, int indent) /* {{{ */
618 zend_string *str = zend_print_zval_r_to_str(expr, indent);