Searched defs:children (Results 1 - 6 of 6) sorted by relevance
| /PHP_TRUNK/ext/dom/examples/ |
| H A D | dom1.php | 12 // children() of of document would result in a memleak 13 //$children = $dom->children(); 14 //print_node_list($children); 20 echo "--------- children of root\n"; 21 $children = $rootnode->childNodes; variable 22 print_node_list($children); 24 // The last node should be identical with the last entry in the children array 34 // The children of this parent are the same children a 36 $children = $parent->childNodes; variable 63 $children = $attrs->item(0)->childNodes; variable 75 $children = $dom->getElementsByTagname("Silly"); variable 79 $children = $rootnode->getElementsByTagName("Silly"); variable [all...] |
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.h | 155 queue children; /* child element list */ member in struct:_xml_element 185 #define xml_elem_next_element(el) ((el) ? (xml_element *)Q_Next(&el->children) : NULL) 186 #define xml_elem_head_element(el) ((el) ? (xml_element *)Q_Head(&el->children) : NULL)
|
| /PHP_TRUNK/ext/dom/ |
| H A D | node.c | 311 str = xmlNodeGetContent(nodep->children); 348 if (nodep->children) { 349 node_list_unlink(nodep->children TSRMLS_CC); 491 first = nodep->children; 954 newchild = fragment->children; 958 nodep->children = newchild; 987 fragment->children = NULL; 1038 if (child->type == XML_DOCUMENT_FRAG_NODE && child->children == NULL) { 1073 if (new_child->parent->children == refp) { 1074 new_child->parent->children 1163 xmlNodePtr children, newchild, oldchild, nodep; local 1251 xmlNodePtr children, child, nodep; local [all...] |
| /PHP_TRUNK/ext/tidy/ |
| H A D | tidy.c | 851 zval *attribute, *children, *temp; local 903 MAKE_STD_ZVAL(children); 905 array_init(children); 916 add_next_index_zval(children, temp); 921 ZVAL_NULL(children); 924 zend_hash_update(obj->std.properties, "child", sizeof("child"), (void *)&children, sizeof(zval *), NULL); 1708 Returns true if this node has children */
|
| /PHP_TRUNK/sapi/cgi/ |
| H A D | cgi_main.c | 103 /* these globals used for forking children on unix systems */ 107 static int children = 0; variable 118 /* Is Parent waiting for children to exit */ 1989 children = atoi(children_str); 1990 if (children < 0) { 2002 if (children) { 2006 /* Create a process group for ourself & children */ 2013 /* Set up handler to kill children upon exit */ 2036 /* One of the children. 2056 } while (parent && (running < children)); [all...] |
| /PHP_TRUNK/sapi/fpm/fpm/ |
| H A D | fpm_worker_pool.h | 31 struct fpm_child_s *children; member in struct:fpm_worker_pool_s
|
Completed in 11 milliseconds