Searched defs:tree (Results 1 - 5 of 5) sorted by relevance
| /PHP_5_4/ext/sqlite3/libsqlite/ |
| H A D | sqlite3.c | 146 ** The maximum depth of an expression tree. This is limited to 651 ** hash of the entire source tree. 3257 ** <dd>The maximum depth of the parse tree on any expression.</dd>)^ 7932 sqlite3_vfs *pVfs, /* VFS to use with this b-tree */ 7949 #define BTREE_SINGLE 8 /* The file contains at most 1 b-tree */ 10188 ** Each node of an expression in the parse tree is an instance 10195 ** tree. 10289 int nHeight; /* Height of the tree headed by this node */ 10380 ** the parse tree for an expression and the span of input text for an 10384 Expr *pExpr; /* The expression parse tree */ 127515 Rtree tree; local [all...] |
| /PHP_5_4/ext/tidy/examples/ |
| H A D | dumpit5.php | 21 $tree = $tidy->root(); variable 22 dump_tree($tree);
|
| /PHP_5_4/ext/dom/ |
| H A D | documentfragment.c | 89 static void php_dom_xmlSetTreeDoc(xmlNodePtr tree, xmlDocPtr doc) /* {{{ */ argument 94 if (tree) { 95 if(tree->type == XML_ELEMENT_NODE) { 96 prop = tree->properties; 109 if (tree->children != NULL) { 110 cur = tree->children; 116 tree->doc = doc;
|
| H A D | element.c | 698 static xmlNsPtr _dom_new_reconNs(xmlDocPtr doc, xmlNodePtr tree, xmlNsPtr ns) /* {{{ */ argument 704 if ((tree == NULL) || (ns == NULL) || (ns->type != XML_NAMESPACE_DECL)) { 718 def = xmlSearchNs(doc, tree, prefix); 726 def = xmlSearchNs(doc, tree, prefix); 732 def = xmlNewNs(tree, ns->href, prefix);
|
| /PHP_5_4/ext/imap/ |
| H A D | php_imap.c | 4663 static void build_thread_tree_helper(THREADNODE *cur, zval *tree, long *numNodes, char *buf) argument 4670 add_assoc_long(tree, buf, cur->num); 4675 add_assoc_long(tree, buf, *numNodes); 4676 build_thread_tree_helper(cur->next, tree, numNodes, buf); 4678 add_assoc_long(tree, buf, 0); 4684 add_assoc_long(tree, buf, *numNodes); 4685 build_thread_tree_helper(cur->branch, tree, numNodes, buf); 4687 add_assoc_long(tree, buf, 0); 4694 static int build_thread_tree(THREADNODE *top, zval **tree) argument 4699 array_init(*tree); [all...] |
Completed in 189 milliseconds