Lines Matching refs:indent
304 static void _const_string(smart_str *str, const char *name, zval *value, const char *indent);
305 …_function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, const char* indent);
306 …operty_string(smart_str *str, zend_property_info *prop, const char *prop_name, const char* indent);
307 …_const_string(smart_str *str, const zend_string *name, zend_class_constant *c, const char* indent);
308 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, const char *indent);
309 static void _extension_string(smart_str *str, const zend_module_entry *module, const char *indent);
310 …c void _zend_extension_string(smart_str *str, const zend_extension *extension, const char *indent);
313 static void _class_string(smart_str *str, zend_class_entry *ce, zval *obj, const char *indent) in _class_string() argument
316 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _class_string()
320 smart_str_append_printf(str, "%s%s", indent, ZSTR_VAL(ce->doc_comment)); in _class_string()
325 smart_str_append_printf(str, "%sObject of class [ ", indent); in _class_string()
333 smart_str_append_printf(str, "%s%s [ ", indent, kind); in _class_string()
381 smart_str_append_printf(str, "%s @@ %s %d-%d\n", indent, ZSTR_VAL(ce->info.user.filename), in _class_string()
388 smart_str_append_printf(str, "%s - Constants [%d] {\n", indent, count); in _class_string()
401 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
419 smart_str_append_printf(str, "\n%s - Static properties [%d] {\n", indent, count_static_props); in _class_string()
429 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
447 smart_str_append_printf(str, "\n%s - Static methods [%d] {", indent, count_static_funcs); in _class_string()
462 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
466 smart_str_append_printf(str, "\n%s - Properties [%d] {\n", indent, count); in _class_string()
477 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
496 smart_str_append_printf(str, "\n%s - Dynamic properties [%d] {\n", indent, count); in _class_string()
498 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
528 smart_str_append_printf(str, "\n%s - Methods [%d] {", indent, count); in _class_string()
535 smart_str_append_printf(str, "\n%s - Methods [0] {\n", indent); in _class_string()
537 smart_str_append_printf(str, "%s }\n", indent); in _class_string()
539 smart_str_append_printf(str, "%s}\n", indent); in _class_string()
545 static void _const_string(smart_str *str, const char *name, zval *value, const char *indent) in _const_string() argument
550 smart_str_appends(str, indent); in _const_string()
594 …s_const_string(smart_str *str, const zend_string *name, zend_class_constant *c, const char *indent) in _class_const_string() argument
606 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(c->doc_comment)); in _class_const_string()
609 indent, final, visibility, type, ZSTR_VAL(name)); in _class_const_string()
699 …zend_function *fptr, struct _zend_arg_info *arg_info, uint32_t offset, bool required, char* indent) in _parameter_string() argument
748 static void _function_parameter_string(smart_str *str, zend_function *fptr, char* indent) in _function_parameter_string() argument
762 smart_str_append_printf(str, "%s- Parameters [%d] {\n", indent, num_args); in _function_parameter_string()
764 smart_str_append_printf(str, "%s ", indent); in _function_parameter_string()
765 _parameter_string(str, fptr, arg_info, i, i < num_required, indent); in _function_parameter_string()
769 smart_str_append_printf(str, "%s}\n", indent); in _function_parameter_string()
774 static void _function_closure_string(smart_str *str, const zend_function *fptr, const char* indent) in _function_closure_string() argument
792 smart_str_append_printf(str, "%s- Bound Variables [%u] {\n", indent, count); in _function_closure_string()
795 smart_str_append_printf(str, "%s Variable #%d [ $%s ]\n", indent, i++, ZSTR_VAL(key)); in _function_closure_string()
797 smart_str_append_printf(str, "%s}\n", indent); in _function_closure_string()
802 … _function_string(smart_str *str, zend_function *fptr, zend_class_entry *scope, const char* indent) in _function_string() argument
813 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->op_array.doc_comment)); in _function_string()
815 smart_str_append_printf(str, "%s%s\n", indent, ZSTR_VAL(fptr->internal_function.doc_comment)); in _function_string()
818 smart_str_appendl(str, indent, strlen(indent)); in _function_string()
886 smart_str_append_printf(str, "%s @@ %s %d - %d\n", indent, in _function_string()
891 smart_str_append_printf(¶m_indent, "%s ", indent); in _function_string()
899 …smart_str_append_printf(str, " %s- %s [ ", indent, ZEND_ARG_TYPE_IS_TENTATIVE(&fptr->common.arg_i… in _function_string()
907 smart_str_append_printf(str, "%s}\n", indent); in _function_string()
925 …roperty_string(smart_str *str, zend_property_info *prop, const char *prop_name, const 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()
988 …_ini_string(const zend_ini_entry *ini_entry, smart_str *str, const char *indent, int number) /* {{… in _extension_ini_string() argument
993 smart_str_append_printf(str, " %sEntry [ %s <", indent, ZSTR_VAL(ini_entry->name)); in _extension_ini_string()
1011 …smart_str_append_printf(str, " %s Current = '%s'\n", indent, ini_entry->value ? ZSTR_VAL(ini_e… in _extension_ini_string()
1013 …smart_str_append_printf(str, " %s Default = '%s'\n", indent, ini_entry->orig_value ? ZSTR_VAL(… in _extension_ini_string()
1015 smart_str_append_printf(str, " %s}\n", indent); in _extension_ini_string()
1020 …ring(zend_class_entry *ce, zend_string *key, smart_str *str, const char *indent, const zend_module… in _extension_class_string() argument
1026 _class_string(str, ce, NULL, indent); in _extension_class_string()
1033 static void _extension_string(smart_str *str, const zend_module_entry *module, const char *indent) … in _extension_string() argument
1035 smart_str_append_printf(str, "%sExtension [ ", indent); in _extension_string()
1052 smart_str_append_printf(str, "%s Dependency [ %s (", indent, dep->name); in _extension_string()
1078 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1085 _extension_ini_string(ini_entry, &str_ini, indent, module->module_number); in _extension_string()
1090 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1110 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1130 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1135 zend_string *sub_indent = strpprintf(0, "%s ", indent); in _extension_string()
1147 smart_str_append_printf(str, "%s }\n", indent); in _extension_string()
1153 smart_str_append_printf(str, "%s}\n", indent); in _extension_string()
1272 …end_extension_string(smart_str *str, const zend_extension *extension, const char *indent) /* {{{ */ in _zend_extension_string() argument
1274 smart_str_append_printf(str, "%sZend Extension [ %s ", indent, extension->name); in _zend_extension_string()