Lines Matching refs:indent

305 static void _const_string(smart_str *str, char *name, zval *value, char *indent);
306 … void _function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, char* indent);
307 …tic void _property_string(smart_str *str, zend_property_info *prop, char *prop_name, char* indent);
308 static void _class_const_string(smart_str *str, char *name, zend_class_constant *c, char* indent);
309 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char *indent);
310 static void _extension_string(smart_str *str, zend_module_entry *module, char *indent);
311 static void _zend_extension_string(smart_str *str, zend_extension *extension, char *indent);
314 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, char *indent) in _class_string() argument
317 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _class_string()
321 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->info.user.doc_comment)); in _class_string()
326 smart_str_append_printf(str, "%sObject of class [ ", indent); in _class_string()
334 smart_str_append_printf(str, "%s%s [ ", indent, kind); in _class_string()
378 smart_str_append_printf(str, "%s @@ %s %d-%d\n", indent, ZSTR_VAL(ce->info.user.filename), in _class_string()
385 smart_str_append_printf(str, "%s - Constants [%d] {\n", indent, count); in _class_string()
397 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
415 smart_str_append_printf(str, "\n%s - Static properties [%d] {\n", indent, count_static_props); in _class_string()
425 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
443 smart_str_append_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs); in _class_string()
458 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
462 smart_str_append_printf(str, "\n%s - Properties [%d] {\n", indent, count); in _class_string()
472 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
491 smart_str_append_printf(str, "\n%s - Dynamic properties [%d] {\n", indent, count); in _class_string()
493 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
535 smart_str_append_printf(str, "\n%s - Methods [%d] {", indent, count); in _class_string()
542 smart_str_append_printf(str, "\n%s - Methods [0] {\n", indent); in _class_string()
544 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
546 smart_str_append_printf(str, "%s}\n", indent); in _class_string()
552 static void _const_string(smart_str *str, char *name, zval *value, char *indent) in _const_string() argument
558 indent, type, name); in _const_string()
562 indent, type, name, ZSTR_VAL(value_str)); in _const_string()
569 static void _class_const_string(smart_str *str, char *name, zend_class_constant *c, char *indent) in _class_const_string() argument
579 indent, visibility, type, name); in _class_const_string()
584 indent, visibility, type, name, ZSTR_VAL(value_str)); in _class_const_string()
611 …function *fptr, struct _zend_arg_info *arg_info, uint32_t offset, zend_bool required, char* indent) in _parameter_string() argument
685 static void _function_parameter_string(smart_str *str, zend_function *fptr, char* indent) in _function_parameter_string() argument
699 smart_str_append_printf(str, "%s- Parameters [%d] {\n", indent, num_args); in _function_parameter_string()
701 smart_str_append_printf(str, "%s ", indent); in _function_parameter_string()
702 _parameter_string(str, fptr, arg_info, i, i < num_required, indent); in _function_parameter_string()
706 smart_str_append_printf(str, "%s}\n", indent); in _function_parameter_string()
711 static void _function_closure_string(smart_str *str, zend_function *fptr, char* indent) in _function_closure_string() argument
729 …smart_str_append_printf(str, "%s- Bound Variables [%d] {\n", indent, zend_hash_num_elements(static… in _function_closure_string()
732 smart_str_append_printf(str, "%s Variable #%d [ $%s ]\n", indent, i++, ZSTR_VAL(key)); in _function_closure_string()
734 smart_str_append_printf(str, "%s}\n", indent); in _function_closure_string()
739 …c void _function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, char* indent) in _function_string() argument
751 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->op_array.doc_comment)); in _function_string()
754 smart_str_appendl(str, indent, strlen(indent)); in _function_string()
827 smart_str_append_printf(str, "%s @@ %s %d - %d\n", indent, in _function_string()
832 smart_str_append_printf(&param_indent, "%s ", indent); in _function_string()
840 smart_str_append_printf(str, " %s- Return [ ", indent); in _function_string()
855 smart_str_append_printf(str, "%s}\n", indent); in _function_string()
860 …atic void _property_string(smart_str *str, zend_property_info *prop, char *prop_name, char* indent) in _property_string() argument
864 smart_str_append_printf(str, "%sProperty [ ", indent); in _property_string()
904 char *indent = va_arg(args, char *); in _extension_ini_string() local
909 smart_str_append_printf(str, " %sEntry [ %s <", indent, ZSTR_VAL(ini_entry->name)); in _extension_ini_string()
927 …smart_str_append_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ZSTR_VAL(ini_e… in _extension_ini_string()
929 …smart_str_append_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ZSTR_VAL(… in _extension_ini_string()
931 smart_str_append_printf(str, " %s}\n", indent); in _extension_ini_string()
941 char *indent = va_arg(args, char *); in _extension_class_string() local
949 _class_string(str, ce, NULL, indent); in _extension_class_string()
961 char *indent = va_arg(args, char *); in _extension_const_string() local
966 _const_string(str, ZSTR_VAL(constant->name), &constant->value, indent); in _extension_const_string()
973 static void _extension_string(smart_str *str, zend_module_entry *module, char *indent) /* {{{ */ in _extension_string() argument
975 smart_str_append_printf(str, "%sExtension [ ", indent); in _extension_string()
992 smart_str_append_printf(str, "%s Dependency [ %s (", indent, dep->name); in _extension_string()
1018 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1023 …ini_directives), (apply_func_args_t) _extension_ini_string, 3, &str_ini, indent, module->module_nu… in _extension_string()
1027 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1036 …stants), (apply_func_args_t) _extension_const_string, 4, &str_constants, indent, module, &num_cons… in _extension_string()
1040 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1060 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1065 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _extension_string()
1073 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1079 smart_str_append_printf(str, "%s}\n", indent); in _extension_string()
1083 static void _zend_extension_string(smart_str *str, zend_extension *extension, char *indent) /* {{{ … in _zend_extension_string() argument
1085 smart_str_append_printf(str, "%sZend Extension [ %s ", indent, extension->name); in _zend_extension_string()