/PHP-5.3/ext/dom/examples/ |
H A D | dom1.php | 21 $children = $rootnode->childNodes; variable 22 print_node_list($children); 36 $children = $parent->childNodes; variable 37 print_node_list($children); 63 $children = $attrs->item(0)->childNodes; variable 64 print_node_list($children); 75 $children = $dom->getElementsByTagname("Silly"); variable 76 print_node_list($children); 80 print_node_list($children); 83 print_node($children->item(0)); [all …]
|
/PHP-5.3/ext/soap/ |
H A D | php_packet_soap.c | 57 trav = response->children; in parse_packet_soap() 104 trav = env->children; in parse_packet_soap() 211 tmp = get_node(fault->children, "Code"); in parse_packet_soap() 213 tmp = get_node(tmp->children, "Value"); in parse_packet_soap() 219 tmp = get_node(fault->children,"Reason"); in parse_packet_soap() 222 tmp = get_node(tmp->children,"Text"); in parse_packet_soap() 253 resp = body->children; in parse_packet_soap() 311 if (val == NULL && cur->children && cur->children->next == NULL) { in parse_packet_soap() 312 val = cur->children; in parse_packet_soap() 345 val = resp->children; in parse_packet_soap() [all …]
|
H A D | php_encoding.c | 1422 if (node && node->children && node->children->content) { in model_to_zval_object() 1623 if (val && val->children && val->children->content) { in to_zval_object_ex() 1739 if (property->children && property->children->content && in model_to_xml_object() 1762 if (property->children && property->children->content && in model_to_xml_object() 2030 if (dummy->children && dummy->children->content) { in to_xml_object() 2605 attr->children && attr->children->content) { in to_zval_array() 2639 attr->children && attr->children->content) { in to_zval_array() 2648 attr->children && attr->children->content) { in to_zval_array() 2733 attr->children && attr->children->content) { in to_zval_array() 3145 if (dummy && dummy->children && dummy->children->content) { in to_xml_list() [all …]
|
H A D | php_schema.c | 187 trav = schema->children; in load_schema() 368 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_simpleType() 444 trav = listType->children; in schema_list() 662 trav = restType->children; in schema_restriction_simpleContent() 762 trav = restType->children; in schema_restriction_complexContent() 887 trav = extType->children; in schema_extension_simpleContent() 942 trav = extType->children; in schema_extension_complexContent() 1030 trav = all->children; in schema_all() 1248 trav = seqType->children; in schema_sequence() 1405 create_encoder(sdl, cur_type, ns->children->content, name->children->content); in schema_complexType() [all …]
|
H A D | php_xml.c | 47 trav = node->children; in cleanup_xml_node() 61 } else if (trav->children != NULL) { in cleanup_xml_node() 289 } else if (node->children != NULL) { in get_node_recurisve_ex() 290 xmlNodePtr tmp = get_node_recurisve_ex(node->children, name, ns); in get_node_recurisve_ex() 313 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex() 326 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex() 330 if (node->children != NULL) { in get_node_with_attribute_recursive_ex() 331 …xmlNodePtr tmp = get_node_with_attribute_recursive_ex(node->children, name, name_ns, attribute, va… in get_node_with_attribute_recursive_ex()
|
/PHP-5.3/ext/dom/tests/ |
H A D | dom001.phpt | 18 //$children = $dom->children(); 19 //print_node_list($children); 27 print_node_list($children); 39 // The children of this parent are the same children as one above 41 $children = $parent->childNodes; 42 print_node_list($children); 69 print_node_list($children); 81 print_node_list($children); 85 print_node_list($children); 107 --------- children of root [all …]
|
H A D | DOMNode_removeChild_basic.phpt | 40 $children = $root->childNodes; 41 $len = $children->length; 43 for ($index = $children->length - 1; $index >=0; $index--) { 45 $current = $children->item($index); 51 $children = $root->childNodes; 52 $len = $children->length; 54 for ($index = 0; $index < $children->length; $index++) { 56 $current = $children->item($index);
|
H A D | DOMNode_cloneNode_basic.phpt | 41 $children = $root->childNodes; 42 $len = $children->length; 43 for ($index = $children->length - 1; $index >=0; $index--) { 44 $current = $children->item($index); 51 $first_course = $children->item(0); 69 $children = $root->childNodes; 70 for ($index = 0; $index < $children->length; $index++) { 72 dumpcourse($children->item($index));
|
H A D | dom_comment_variation.phpt | 18 $children = $root->childNodes; 20 for ($index = 0; $index < $children->length; $index++) { 22 $current = $children->item($index);
|
H A D | dom_comment_basic.phpt | 21 $children = $root->childNodes; 23 for ($index = 0; $index < $children->length; $index++) { 25 $current = $children->item($index);
|
/PHP-5.3/ext/xmlrpc/libxmlrpc/ |
H A D | xml_to_xmlrpc.c | 165 iter = (xml_element*)Q_Head(&el->children); in xml_element_to_XMLRPC_REQUEST_worker() 318 Q_PushTail(¶m->children, value); in XMLRPC_to_xml_element_worker() 322 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker() 335 Q_PushTail(&member->children, name); in XMLRPC_to_xml_element_worker() 336 Q_PushTail(&member->children, value); in XMLRPC_to_xml_element_worker() 337 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker() 346 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker() 359 Q_PushTail(&value->children, elem_val); in XMLRPC_to_xml_element_worker() 398 Q_PushTail(&wrapper->children, method); in XMLRPC_REQUEST_to_xml_element() 402 Q_PushTail(&wrapper->children, in XMLRPC_REQUEST_to_xml_element() [all …]
|
H A D | xml_element.h | 155 queue children; /* child element list */ member 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)
|
H A D | xmlrpc_introspection.c | 351 if(Q_Size(&el->children) && in xml_element_to_method_description() 356 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description() 360 elem_iter = Q_Next(&el->children); in xml_element_to_method_description() 372 if(Q_Size(&el->children)) { in xml_element_to_method_description() 373 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description() 380 elem_iter = Q_Next(&el->children); in xml_element_to_method_description() 387 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description() 395 elem_iter = Q_Next(&el->children); in xml_element_to_method_description() 405 else if(Q_Size(&el->children)) { in xml_element_to_method_description() 406 xml_element* elem_iter = Q_Head(&el->children); in xml_element_to_method_description() [all …]
|
/PHP-5.3/ext/simplexml/tests/ |
H A D | bug41861.phpt | 24 foreach ($xml->children($ns) as $child) 29 echo "children($ns): '$name' -- namespaces: ", implode(', ', $namespaces), "\n"; 37 children(): 'first_node_no_ns' -- namespaces: 38 children(): 'last_node_no_ns' -- namespaces: 39 children(#ns1): 'node1' -- namespaces: #ns1 40 children(#ns2): 'node2' -- namespaces: #ns2 41 children(#ns3): 'node3' -- namespaces: #ns3
|
H A D | 032.phpt | 11 <children> 13 </children> 22 <children> 24 </children>
|
H A D | profile11.phpt | 15 var_dump($root->children('reserved-ns')->child); 16 var_dump($root->children('special-ns')->child); 17 var_dump((string)$root->children('reserved-ns')->child); 18 var_dump((string)$root->children('special-ns')->child);
|
H A D | 019.phpt | 2 SimpleXML: foreach with children() 36 foreach($sxe->children() as $name => $data) { 43 foreach(clone $sxe->children() as $name => $data) { 50 foreach($sxe->elem11->children() as $name => $data) { 57 foreach($sxe->elem1->children() as $name => $data) {
|
H A D | 033.phpt | 13 <children> 15 </children> 73 ["children"]=> 115 ["children"]=>
|
H A D | 017.phpt | 28 foreach($xml->children() as $person) { 30 foreach($person->children() as $child) { 40 $children = 2; 41 for ($j=0;$j<$children;$j++) {
|
H A D | profile12.phpt | 2 SimpleXML [profile]: Accessing namespaced root and non namespaced children 29 var_dump($sxe->Body->children('')); 30 var_dump($sxe->Body->children('')->businessList);
|
/PHP-5.3/ext/standard/tests/array/ |
H A D | bug48854.phpt | 8 'children' => array( 15 'children' => array( 29 [%u|b%"children"]=> 38 [%u|b%"children"]=>
|
/PHP-5.3/Zend/tests/ |
H A D | gc_017.phpt | 9 public $children; 13 $this->children = array(); 18 $this->children[] = $node; 23 unset($this->children);
|
H A D | bug39297.phpt | 11 public $children = array(); 22 $this->children[$cannonicalName] = $value; 29 return $this->children[$cannonicalName];
|
/PHP-5.3/ext/soap/tests/bugs/ |
H A D | bug37013.phpt | 31 var $children; 45 $p->children = array( $p2, $p3 ); 58 …children SOAP-ENC:arrayType="SOAP-ENC:Struct[2]" xsi:type="SOAP-ENC:Array"><item href="#ref1"/><it…
|
/PHP-5.3/ext/dom/ |
H A D | documentfragment.c | 99 if (prop->children) { in php_dom_xmlSetTreeDoc() 100 cur = prop->children; in php_dom_xmlSetTreeDoc() 109 if (tree->children != NULL) { in php_dom_xmlSetTreeDoc() 110 cur = tree->children; in php_dom_xmlSetTreeDoc()
|