| /PHP_TRUNK/ext/dom/examples/ |
| H A D | dom1.php | 59 $attrs = $rootnode->attributes; variable 60 print_node_list($attrs); 63 $children = $attrs->item(0)->childNodes;
|
| /PHP_TRUNK/ext/xmlrpc/libxmlrpc/ |
| H A D | xml_element.c | 199 xml_element_attr* attrs = Q_Head(&root->attrs); local 200 while(attrs) { 201 my_free(attrs->key); 202 my_free(attrs->val); 203 my_free(attrs); 204 attrs = Q_Next(&root->attrs); 208 Q_Destroy(&root->attrs); 269 Q_Init(&elem->attrs); 595 _xmlrpc_startElement(void *userData, const char *name, const char **attrs) argument [all...] |
| H A D | xml_element.h | 154 queue attrs; /* attribute list */ member in struct:_xml_element 187 #define xml_elem_next_attr(el) ((el) ? (xml_element_attr *)Q_Next(&el->attrs) : NULL) 188 #define xml_elem_head_attr(el) ((el) ? (xml_element_attr *)Q_Head(&el->attrs) : NULL)
|
| H A D | xml_to_dandarpc.c | 73 xml_element_attr* attr_iter = Q_Head(&el->attrs); 82 attr_iter = Q_Next(&el->attrs); 188 Q_PushTail(&elem_val->attrs, attr_type); 198 Q_PushTail(&elem_val->attrs, attr_id); 303 Q_PushTail(&root->attrs, version);
|
| H A D | xml_to_soap.c | 253 xml_element_attr* attr_iter = Q_Head(&el->attrs); 286 attr_iter = Q_Next(&el->attrs); 462 Q_PushTail(&elem_val->attrs, attr_array_type); 549 Q_PushTail(&elem_val->attrs, new_attr(TOKEN_TYPE, pAttrType)); 591 Q_PushTail(&root->attrs, new_attr("xmlns:SOAP-ENV", "http://schemas.xmlsoap.org/soap/envelope/")); 592 Q_PushTail(&root->attrs, new_attr("xmlns:xsi", "http://www.w3.org/1999/XMLSchema-instance")); 593 Q_PushTail(&root->attrs, new_attr("xmlns:xsd", "http://www.w3.org/1999/XMLSchema")); 594 Q_PushTail(&root->attrs, new_attr("xmlns:SOAP-ENC", "http://schemas.xmlsoap.org/soap/encoding/")); 595 Q_PushTail(&root->attrs, new_attr("xmlns:si", "http://soapinterop.org/xsd")); 596 Q_PushTail(&root->attrs, new_att [all...] |
| H A D | xmlrpc_introspection.c | 319 xml_element_attr* attr_iter = Q_Head(&el->attrs); 343 attr_iter = Q_Next(&el->attrs);
|
| /PHP_TRUNK/ext/ldap/ |
| H A D | ldap.c | 590 zval *link, *base_dn, **filter, *attrs = NULL, **attr; local 599 if (zend_parse_parameters(argcount TSRMLS_CC, "zzZ|allll", &link, &base_dn, &filter, &attrs, &attrsonly, 615 num_attribs = zend_hash_num_elements(Z_ARRVAL_P(attrs)); 619 if (zend_hash_index_find(Z_ARRVAL_P(attrs), i, (void **) &attr) != SUCCESS) { 795 /* {{{ proto resource ldap_read(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) 803 /* {{{ proto resource ldap_list(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]]) 811 /* {{{ proto resource ldap_search(resource|array link, string base_dn, string filter [, array attrs [, int attrsonly [, int sizelimit [, int timelimit [, int deref]]]]])
|
| /PHP_TRUNK/ext/soap/ |
| H A D | php_schema.c | 1352 xmlAttrPtr attrs, name, ns; local 1354 attrs = compType->properties; 1355 ns = get_attribute(attrs, "targetNamespace"); 1360 name = get_attribute(attrs, "name"); 1481 xmlAttrPtr attrs, attr, ns, name, type, ref = NULL; local 1483 attrs = element->properties; 1484 ns = get_attribute(attrs, "targetNamespace"); 1489 name = get_attribute(attrs, "name"); 1491 name = ref = get_attribute(attrs, "ref"); 1573 attrs [all...] |
| /PHP_TRUNK/ext/xml/ |
| H A D | compat.c | 94 xmlChar **attrs = NULL; local 173 attrs = safe_emalloc((nb_attributes * 2) + 1, sizeof(int *), 0); 182 attrs[z] = qualified_name_attr; 183 attrs[z + 1] = xmlStrndup(attributes[y + 3] , (int) (attributes[y + 4] - attributes[y + 3])); 188 attrs[z] = NULL; 190 parser->h_start_element(parser->user, (const XML_Char *) qualified_name, (const XML_Char **) attrs); 191 if (attrs) { 193 xmlFree(attrs[i]); 195 efree(attrs);
|
| H A D | xml.c | 774 const char **attrs = (const char **) attributes; local 826 attributes = (const XML_Char **) attrs;
|