Lines Matching refs:indent

298 static void _const_string(smart_str *str, char *name, zval *value, char *indent);
299 … void _function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, char* indent);
300 …id _property_string(smart_str *str, zend_property_info *prop, const char *prop_name, char* indent);
301 … void _class_const_string(smart_str *str, zend_string *name, zend_class_constant *c, char* indent);
302 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char *indent);
303 static void _extension_string(smart_str *str, zend_module_entry *module, char *indent);
304 static void _zend_extension_string(smart_str *str, zend_extension *extension, char *indent);
307 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char *indent) in _class_string() argument
310 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _class_string()
314 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->doc_comment)); in _class_string()
319 smart_str_append_printf(str, "%sObject of class [ ", indent); in _class_string()
327 smart_str_append_printf(str, "%s%s [ ", indent, kind); in _class_string()
375 smart_str_append_printf(str, "%s @@ %s %d-%d\n", indent, ZSTR_VAL(ce->info.user.filename), in _class_string()
382 smart_str_append_printf(str, "%s - Constants [%d] {\n", indent, count); in _class_string()
395 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
413 smart_str_append_printf(str, "\n%s - Static properties [%d] {\n", indent, count_static_props); in _class_string()
423 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
441 smart_str_append_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs); in _class_string()
456 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
460 smart_str_append_printf(str, "\n%s - Properties [%d] {\n", indent, count); in _class_string()
471 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
490 smart_str_append_printf(str, "\n%s - Dynamic properties [%d] {\n", indent, count); in _class_string()
492 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
522 smart_str_append_printf(str, "\n%s - Methods [%d] {", indent, count); in _class_string()
529 smart_str_append_printf(str, "\n%s - Methods [0] {\n", indent); in _class_string()
531 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
533 smart_str_append_printf(str, "%s}\n", indent); in _class_string()
539 static void _const_string(smart_str *str, char *name, zval *value, char *indent) in _const_string() argument
544 smart_str_appends(str, indent); in _const_string()
588 …c void _class_const_string(smart_str *str, zend_string *name, zend_class_constant *c, char *indent) in _class_const_string() argument
600 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(c->doc_comment)); in _class_const_string()
603 indent, final, visibility, type, ZSTR_VAL(name)); in _class_const_string()
701 …zend_function *fptr, struct _zend_arg_info *arg_info, uint32_t offset, bool required, char* indent) in _parameter_string() argument
750 static void _function_parameter_string(smart_str *str, zend_function *fptr, char* indent) in _function_parameter_string() argument
764 smart_str_append_printf(str, "%s- Parameters [%d] {\n", indent, num_args); in _function_parameter_string()
766 smart_str_append_printf(str, "%s ", indent); in _function_parameter_string()
767 _parameter_string(str, fptr, arg_info, i, i < num_required, indent); in _function_parameter_string()
771 smart_str_append_printf(str, "%s}\n", indent); in _function_parameter_string()
776 static void _function_closure_string(smart_str *str, zend_function *fptr, char* indent) in _function_closure_string() argument
794 …smart_str_append_printf(str, "%s- Bound Variables [%d] {\n", indent, zend_hash_num_elements(static… in _function_closure_string()
797 smart_str_append_printf(str, "%s Variable #%d [ $%s ]\n", indent, i++, ZSTR_VAL(key)); in _function_closure_string()
799 smart_str_append_printf(str, "%s}\n", indent); in _function_closure_string()
804 …c void _function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, char* indent) in _function_string() argument
815 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->op_array.doc_comment)); in _function_string()
817 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->internal_function.doc_comment)); in _function_string()
820 smart_str_appendl(str, indent, strlen(indent)); in _function_string()
888 smart_str_append_printf(str, "%s @@ %s %d - %d\n", indent, in _function_string()
893 smart_str_append_printf(&param_indent, "%s ", indent); in _function_string()
901 …smart_str_append_printf(str, " %s- %s [ ", indent, ZEND_ARG_TYPE_IS_TENTATIVE(&fptr->common.arg_i… in _function_string()
909 smart_str_append_printf(str, "%s}\n", indent); in _function_string()
925 …oid _property_string(smart_str *str, zend_property_info *prop, const char *prop_name, char* indent) in _property_string() argument
928 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(prop->doc_comment)); in _property_string()
930 smart_str_append_printf(str, "%sProperty [ ", indent); in _property_string()
977 static void _extension_ini_string(zend_ini_entry *ini_entry, smart_str *str, char *indent, int numb… in _extension_ini_string() argument
982 smart_str_append_printf(str, " %sEntry [ %s <", indent, ZSTR_VAL(ini_entry->name)); in _extension_ini_string()
1000 …smart_str_append_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ZSTR_VAL(ini_e… in _extension_ini_string()
1002 …smart_str_append_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ZSTR_VAL(… in _extension_ini_string()
1004 smart_str_append_printf(str, " %s}\n", indent); in _extension_ini_string()
1009 …ass_string(zend_class_entry *ce, zend_string *key, smart_str *str, char *indent, zend_module_entry… in _extension_class_string() argument
1015 _class_string(str, ce, NULL, indent); in _extension_class_string()
1022 static void _extension_string(smart_str *str, zend_module_entry *module, char *indent) /* {{{ */ in _extension_string() argument
1024 smart_str_append_printf(str, "%sExtension [ ", indent); in _extension_string()
1041 smart_str_append_printf(str, "%s Dependency [ %s (", indent, dep->name); in _extension_string()
1067 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1074 _extension_ini_string(ini_entry, &str_ini, indent, module->module_number); in _extension_string()
1079 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1099 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1119 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1124 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _extension_string()
1136 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1142 smart_str_append_printf(str, "%s}\n", indent); in _extension_string()
1261 static void _zend_extension_string(smart_str *str, zend_extension *extension, char *indent) /* {{{ … in _zend_extension_string() argument
1263 smart_str_append_printf(str, "%sZend Extension [ %s ", indent, extension->name); in _zend_extension_string()