| /PHP_5_3/ext/sqlite/libsqlite/src/ |
| H A D | btree_rb.c | 279 static char *append_node(char * orig, BtRbNode *pNode, int indent) argument 284 for( i=0; i<indent; i++ ){ 292 indent += 3; 298 orig = append_node( orig, pNode->pLeft, indent ); 299 orig = append_node( orig, pNode->pRight, indent );
|
| /PHP_5_3/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 94883 sqlite3PrintSelect(Select *p, int indent) argument [all...] |
| /PHP_5_3/ext/tidy/examples/ |
| H A D | dumpit5.php | 47 function do_leaf($string, $indent) { 48 for($i = 0; $i < $indent; $i++) { 54 function dump_tree(tidyNode $node, $indent = 0) { 61 do_leaf(" + $nodename (".node_type($node->type).")\n", $indent); 68 do_leaf(" |\n", $indent); 69 do_leaf(" +---- Value: '{$node->value}'\n", $indent); 73 do_leaf(" |\n", $indent); 74 do_leaf(" +---- Attributes\n", $indent); 77 @do_leaf(" +-- $name\n", $indent); 78 do_leaf(" | +-- Value: $value\n", $indent); [all...] |
| /PHP_5_3/ext/xmlreader/examples/ |
| H A D | xmlreader_relaxNG.php | 2 $indent = 5; /* Number of spaces to indent per level */ variable 12 /* Print node name indenting it based on depth and $indent var */ 13 print str_repeat(" ", $reader->depth * $indent).$reader->name."\n";
|
| H A D | xmlreader_validatedtd.php | 2 $indent = 5; /* Number of spaces to indent per level */ variable 9 /* Print node name indenting it based on depth and $indent var */ 10 print str_repeat(" ", $xml->depth * $indent).$xml->name."\n"; 13 print str_repeat(" ", $xml->depth * $indent)." Number of Attributes: ".$xml->attributeCount."\n";
|
| /PHP_5_3/win32/build/ |
| H A D | confutils.js | 249 function word_wrap_and_indent(indent, text, line_suffix, indent_char)
271 for (i = 0; i < indent; i++) {
282 if (t.length + indent > 78) {
|
| /PHP_5_3/ext/mbstring/libmbfl/mbfl/ |
| H A D | mbfilter.c | 2226 int indent) 2250 if (indent > 0 && indent < 74) { 2251 pe->firstindent = indent; 2220 mbfl_mime_header_encode( mbfl_string *string, mbfl_string *result, enum mbfl_no_encoding outcode, enum mbfl_no_encoding encoding, const char *linefeed, int indent) argument
|
| H A D | mbfilter.h | 253 int indent);
|
| /PHP_5_3/ext/mbstring/oniguruma/ |
| H A D | regcomp.c | 5587 Indent(FILE* f, int indent) argument 5590 for (i = 0; i < indent; i++) putc(' ', f); 5878 print_indent_tree(FILE* f, Node* node, int indent) argument 5884 Indent(f, indent); 5899 print_indent_tree(f, NCONS(node).left, indent + add); 5905 print_indent_tree(f, NCONS(node).left, indent + add); 6002 print_indent_tree(f, NQUANTIFIER(node).target, indent + add); 6010 print_indent_tree(f, NEFFECT(node).target, indent + add); 6023 print_indent_tree(f, NEFFECT(node).target, indent + add);
|
| /PHP_5_3/ext/mbstring/ |
| H A D | mbstring.c | 391 ZEND_ARG_INFO(0, indent) 3121 /* {{{ proto string mb_encode_mimeheader(string str [, string charset [, string transfer-encoding [, string linefeed [, int indent]]]]) 3133 long indent = 0; local 3139 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) { 3169 ret = mbfl_mime_header_encode(&string, &result, charset, transenc, linefeed, indent);
|
| /PHP_5_3/ext/reflection/ |
| H A D | php_reflection.c | 335 static void _const_string(string *str, char *name, zval *value, char *indent TSRMLS_DC); 336 static void _function_string(string *str, zend_function *fptr, zend_class_entry *scope, char *indent TSRMLS_DC); 337 static void _property_string(string *str, zend_property_info *prop, char *prop_name, char* indent TSRMLS_DC); 338 static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC); 339 static void _extension_string(string *str, zend_module_entry *module, char *indent TSRMLS_DC); 342 static void _class_string(string *str, zend_class_entry *ce, zval *obj, char *indent TSRMLS_DC) 348 string_printf(&sub_indent, "%s ", indent); 352 string_printf(str, "%s%s", indent, ce->doc_comment); 357 string_printf(str, "%sObject of class [ ", indent); 359 string_printf(str, "%s%s [ ", indent, (c 944 char *indent = va_arg(args, char *); local 979 char *indent = va_arg(args, char *); local 994 char *indent = va_arg(args, char *); local [all...] |
| /PHP_5_3/ext/xmlwriter/ |
| H A D | php_xmlwriter.c | 189 ZEND_ARG_INFO(0, indent) 193 ZEND_ARG_INFO(0, indent) 820 /* {{{ proto bool xmlwriter_set_indent(resource xmlwriter, bool indent) 828 zend_bool indent; local 834 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "b", &indent) == FAILURE) { 841 if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC, "rb", &pind, &indent) == FAILURE) { 850 retval = xmlTextWriterSetIndent(ptr, indent);
|
| /PHP_5_3/Zend/ |
| H A D | zend.c | 120 static void print_hash(zend_write_func_t write_func, HashTable *ht, int indent, zend_bool is_object TSRMLS_DC) /* {{{ */ argument 129 for (i = 0; i < indent; i++) { 133 indent += PRINT_ZVAL_INDENT; 136 for (i = 0; i < indent; i++) { 169 zend_print_zval_r_ex(write_func, *tmp, indent+PRINT_ZVAL_INDENT TSRMLS_CC); 173 indent -= PRINT_ZVAL_INDENT; 174 for (i = 0; i < indent; i++) { 289 ZEND_API int zend_print_zval(zval *expr, int indent) /* {{{ */ argument 291 return zend_print_zval_ex(zend_write, expr, indent); 295 ZEND_API int zend_print_zval_ex(zend_write_func_t write_func, zval *expr, int indent) /* {{{ */ argument [all...] |
| H A D | zend.h | 575 ZEND_API int zend_print_zval(zval *expr, int indent); 576 ZEND_API int zend_print_zval_ex(zend_write_func_t write_func, zval *expr, int indent); 577 ZEND_API void zend_print_zval_r(zval *expr, int indent TSRMLS_DC); 579 ZEND_API void zend_print_zval_r_ex(zend_write_func_t write_func, zval *expr, int indent TSRMLS_DC); 783 * indent-tabs-mode: t
|
| H A D | zend_builtin_functions.c | 1956 int indent = 0; local 2063 zend_printf("#%-2d ", indent); 2096 ++indent; 2346 * indent-tabs-mode: t
|