indent            134 Zend/zend.c    static void print_hash(zend_write_func_t write_func, HashTable *ht, int indent, zend_bool is_object TSRMLS_DC) /* {{{ */
indent            143 Zend/zend.c    	for (i = 0; i < indent; i++) {
indent            147 Zend/zend.c    	indent += PRINT_ZVAL_INDENT;
indent            150 Zend/zend.c    		for (i = 0; i < indent; i++) {
indent            184 Zend/zend.c    		zend_print_zval_r_ex(write_func, *tmp, indent+PRINT_ZVAL_INDENT TSRMLS_CC);
indent            188 Zend/zend.c    	indent -= PRINT_ZVAL_INDENT;
indent            189 Zend/zend.c    	for (i = 0; i < indent; i++) {
indent            311 Zend/zend.c    ZEND_API int zend_print_zval(zval *expr, int indent) /* {{{ */
indent            313 Zend/zend.c    	return zend_print_zval_ex(zend_write, expr, indent);
indent            317 Zend/zend.c    ZEND_API int zend_print_zval_ex(zend_write_func_t write_func, zval *expr, int indent) /* {{{ */
indent            393 Zend/zend.c    ZEND_API void zend_print_zval_r(zval *expr, int indent TSRMLS_DC) /* {{{ */
indent            395 Zend/zend.c    	zend_print_zval_r_ex(zend_write, expr, indent TSRMLS_CC);
indent            399 Zend/zend.c    ZEND_API void zend_print_zval_r_ex(zend_write_func_t write_func, zval *expr, int indent TSRMLS_DC) /* {{{ */
indent            409 Zend/zend.c    			print_hash(write_func, Z_ARRVAL_P(expr), indent, 0 TSRMLS_CC);
indent            439 Zend/zend.c    				print_hash(write_func, properties, indent, 1 TSRMLS_CC);
indent            448 Zend/zend.c    			zend_print_zval_ex(write_func, expr, indent);
indent            649 Zend/zend.h    ZEND_API int zend_print_zval(zval *expr, int indent);
indent            650 Zend/zend.h    ZEND_API int zend_print_zval_ex(zend_write_func_t write_func, zval *expr, int indent);
indent            651 Zend/zend.h    ZEND_API void zend_print_zval_r(zval *expr, int indent TSRMLS_DC);
indent            653 Zend/zend.h    ZEND_API void zend_print_zval_r_ex(zend_write_func_t write_func, zval *expr, int indent TSRMLS_DC);
indent           2080 Zend/zend_builtin_functions.c 	int indent = 0;
indent           2196 Zend/zend_builtin_functions.c 		zend_printf("#%-2d ", indent);
indent           2229 Zend/zend_builtin_functions.c 		++indent;
indent           2346 ext/mbstring/libmbfl/mbfl/mbfilter.c     int indent)
indent           2370 ext/mbstring/libmbfl/mbfl/mbfilter.c 	if (indent > 0 && indent < 74) {
indent           2371 ext/mbstring/libmbfl/mbfl/mbfilter.c 		pe->firstindent = indent;
indent            253 ext/mbstring/libmbfl/mbfl/mbfilter.h     int indent);
indent            392 ext/mbstring/mbstring.c 	ZEND_ARG_INFO(0, indent)
indent           3338 ext/mbstring/mbstring.c 	long indent = 0;
indent           3344 ext/mbstring/mbstring.c 	if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "s|sssl", (char **)&string.val, &string.len, &charset_name, &charset_name_len, &trans_enc_name, &trans_enc_name_len, &linefeed, &linefeed_len, &indent) == FAILURE) {
indent           3374 ext/mbstring/mbstring.c 	ret = mbfl_mime_header_encode(&string, &result, charset, transenc, linefeed, indent);
indent           5791 ext/mbstring/oniguruma/regcomp.c Indent(FILE* f, int indent)
indent           5794 ext/mbstring/oniguruma/regcomp.c   for (i = 0; i < indent; i++) putc(' ', f);
indent           6082 ext/mbstring/oniguruma/regcomp.c print_indent_tree(FILE* f, Node* node, int indent)
indent           6088 ext/mbstring/oniguruma/regcomp.c   Indent(f, indent);
indent           6103 ext/mbstring/oniguruma/regcomp.c     print_indent_tree(f, NCAR(node), indent + add);
indent           6109 ext/mbstring/oniguruma/regcomp.c       print_indent_tree(f, NCAR(node), indent + add);
indent           6211 ext/mbstring/oniguruma/regcomp.c     print_indent_tree(f, NQTFR(node)->target, indent + add);
indent           6231 ext/mbstring/oniguruma/regcomp.c     print_indent_tree(f, NENCLOSE(node)->target, indent + add);
indent            368 ext/reflection/php_reflection.c static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC);
indent            369 ext/reflection/php_reflection.c static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC);
indent            370 ext/reflection/php_reflection.c static void _property_string(string *str, zend_property_info *prop, char *prop_name, char* indent TSRMLS_DC);
indent            371 ext/reflection/php_reflection.c static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC);
indent            372 ext/reflection/php_reflection.c static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC);
indent            373 ext/reflection/php_reflection.c static void _zend_extension_string(string *str, zend_extension *extension, char *indent TSRMLS_DC);
indent            376 ext/reflection/php_reflection.c static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC)
indent            382 ext/reflection/php_reflection.c 	string_printf(&sub_indent, "%s    ", indent);
indent            386 ext/reflection/php_reflection.c 		string_printf(str, "%s%s", indent, ce->info.user.doc_comment);
indent            391 ext/reflection/php_reflection.c 		string_printf(str, "%sObject of class [ ", indent);
indent            399 ext/reflection/php_reflection.c 		string_printf(str, "%s%s [ ", indent, kind);
indent            443 ext/reflection/php_reflection.c 		string_printf(str, "%s  @@ %s %d-%d\n", indent, ce->info.user.filename,
indent            452 ext/reflection/php_reflection.c 		string_printf(str, "%s  - Constants [%d] {\n", indent, count);
indent            465 ext/reflection/php_reflection.c 				_const_string(str, key, *value, indent TSRMLS_CC);
indent            469 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            493 ext/reflection/php_reflection.c 		string_printf(str, "\n%s  - Static properties [%d] {\n", indent, count_static_props);
indent            508 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            532 ext/reflection/php_reflection.c 		string_printf(str, "\n%s  - Static methods [%d] {", indent, count_static_funcs);
indent            551 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            557 ext/reflection/php_reflection.c 		string_printf(str, "\n%s  - Properties [%d] {\n", indent, count);
indent            571 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            604 ext/reflection/php_reflection.c 		string_printf(str, "\n%s  - Dynamic properties [%d] {\n", indent, count);
indent            606 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            655 ext/reflection/php_reflection.c 			string_printf(str, "\n%s  - Methods [%d] {", indent, count);
indent            662 ext/reflection/php_reflection.c 			string_printf(str, "\n%s  - Methods [0] {\n", indent);
indent            664 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent            667 ext/reflection/php_reflection.c 	string_printf(str, "%s}\n", indent);
indent            673 ext/reflection/php_reflection.c static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC)
indent            687 ext/reflection/php_reflection.c 					indent, type, name, Z_STRVAL_P(value));
indent            715 ext/reflection/php_reflection.c static void _parameter_string(string *str, zend_function *fptr, struct _zend_arg_info *arg_info, zend_uint offset, zend_uint required, char* indent TSRMLS_DC)
indent            799 ext/reflection/php_reflection.c static void _function_parameter_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
indent            809 ext/reflection/php_reflection.c 	string_printf(str, "%s- Parameters [%d] {\n", indent, fptr->common.num_args);
indent            811 ext/reflection/php_reflection.c 		string_printf(str, "%s  ", indent);
indent            812 ext/reflection/php_reflection.c 		_parameter_string(str, fptr, arg_info, i, required, indent TSRMLS_CC);
indent            816 ext/reflection/php_reflection.c 	string_printf(str, "%s}\n", indent);
indent            821 ext/reflection/php_reflection.c static void _function_closure_string(string *str, zend_function *fptr, char* indent TSRMLS_DC)
indent            842 ext/reflection/php_reflection.c 	string_printf(str, "%s- Bound Variables [%d] {\n", indent, zend_hash_num_elements(static_variables));
indent            847 ext/reflection/php_reflection.c 		string_printf(str, "%s    Variable #%d [ $%s ]\n", indent, i++, key);
indent            850 ext/reflection/php_reflection.c 	string_printf(str, "%s}\n", indent);
indent            855 ext/reflection/php_reflection.c static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char* indent TSRMLS_DC)
indent            867 ext/reflection/php_reflection.c 		string_printf(str, "%s%s\n", indent, fptr->op_array.doc_comment);
indent            870 ext/reflection/php_reflection.c 	string_write(str, indent, strlen(indent));
indent            942 ext/reflection/php_reflection.c 		string_printf(str, "%s  @@ %s %d - %d\n", indent,
indent            948 ext/reflection/php_reflection.c 	string_printf(&param_indent, "%s  ", indent);
indent            954 ext/reflection/php_reflection.c 	string_printf(str, "%s}\n", indent);
indent            959 ext/reflection/php_reflection.c static void _property_string(string *str, zend_property_info *prop, char *prop_name, char* indent TSRMLS_DC)
indent            963 ext/reflection/php_reflection.c 	string_printf(str, "%sProperty [ ", indent);
indent           1002 ext/reflection/php_reflection.c 	char *indent = va_arg(args, char *);
indent           1007 ext/reflection/php_reflection.c 		string_printf(str, "    %sEntry [ %s <", indent, ini_entry->name);
indent           1025 ext/reflection/php_reflection.c 		string_printf(str, "    %s  Current = '%s'\n", indent, ini_entry->value ? ini_entry->value : "");
indent           1027 ext/reflection/php_reflection.c 			string_printf(str, "    %s  Default = '%s'\n", indent, ini_entry->orig_value ? ini_entry->orig_value : "");
indent           1029 ext/reflection/php_reflection.c 		string_printf(str, "    %s}\n", indent);
indent           1038 ext/reflection/php_reflection.c 	char *indent = va_arg(args, char *);
indent           1046 ext/reflection/php_reflection.c 			_class_string(str, *pce, NULL, indent TSRMLS_CC);
indent           1057 ext/reflection/php_reflection.c 	char *indent = va_arg(args, char *);
indent           1062 ext/reflection/php_reflection.c 		_const_string(str, constant->name, &constant->value, indent TSRMLS_CC);
indent           1070 ext/reflection/php_reflection.c static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC)
indent           1072 ext/reflection/php_reflection.c 	string_printf(str, "%sExtension [ ", indent);
indent           1089 ext/reflection/php_reflection.c 			string_printf(str, "%s    Dependency [ %s (", indent, dep->name);
indent           1115 ext/reflection/php_reflection.c 		string_printf(str, "%s  }\n", indent);
indent           1121 ext/reflection/php_reflection.c 		zend_hash_apply_with_arguments(EG(ini_directives) TSRMLS_CC, (apply_func_args_t) _extension_ini_string, 3, &str_ini, indent, module->module_number);
indent           1125 ext/reflection/php_reflection.c 			string_printf(str, "%s  }\n", indent);
indent           1135 ext/reflection/php_reflection.c 		zend_hash_apply_with_arguments(EG(zend_constants) TSRMLS_CC, (apply_func_args_t) _extension_const_string, 4, &str_constants, indent, module, &num_constants);
indent           1139 ext/reflection/php_reflection.c 			string_printf(str, "%s  }\n", indent);
indent           1162 ext/reflection/php_reflection.c 			string_printf(str, "%s  }\n", indent);
indent           1172 ext/reflection/php_reflection.c 		string_printf(&sub_indent, "%s    ", indent);
indent           1178 ext/reflection/php_reflection.c 			string_printf(str, "%s  }\n", indent);
indent           1184 ext/reflection/php_reflection.c 	string_printf(str, "%s}\n", indent);
indent           1188 ext/reflection/php_reflection.c static void _zend_extension_string(string *str, zend_extension *extension, char *indent TSRMLS_DC) /* {{{ */
indent           1190 ext/reflection/php_reflection.c 	string_printf(str, "%sZend Extension [ %s ", indent, extension->name);
indent            187 ext/xmlwriter/php_xmlwriter.c 	ZEND_ARG_INFO(0, indent)
indent            191 ext/xmlwriter/php_xmlwriter.c 	ZEND_ARG_INFO(0, indent)
indent            826 ext/xmlwriter/php_xmlwriter.c 	zend_bool indent;
indent            832 ext/xmlwriter/php_xmlwriter.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &indent) == FAILURE) {
indent            839 ext/xmlwriter/php_xmlwriter.c 		if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rb", &pind, &indent) == FAILURE) {
indent            848 ext/xmlwriter/php_xmlwriter.c 		retval = xmlTextWriterSetIndent(ptr, indent);