Home
last modified time | relevance | path

Searched refs:attr (Results 1 – 25 of 98) sorted by last modified time

1234

/PHP-5.5/win32/
H A Dphp5dllts.dsp483 SOURCE=..\ext\dom\attr.c
/PHP-5.5/sapi/cli/tests/
H A D007.phpt23 private $pri; /* private attr */
/PHP-5.5/sapi/cgi/tests/
H A D003.phpt23 private $pri; /* private attr */
/PHP-5.5/ext/xmlwriter/tests/
H A D010.phpt15 var_dump(xmlwriter_start_attribute($xw, "attr"));
44 string(14) "<tag attr=""/>"
/PHP-5.5/ext/xmlrpc/
H A Dxmlrpc-epi-php.c1448 zval** attr; in get_zval_xmlrpc_type() local
1451 …_find(Z_OBJPROP_P(value), OBJECT_TYPE_ATTR, sizeof(OBJECT_TYPE_ATTR), (void**) &attr) == SUCCESS) { in get_zval_xmlrpc_type()
1452 if (Z_TYPE_PP(attr) == IS_STRING) { in get_zval_xmlrpc_type()
1453 type = xmlrpc_str_as_type(Z_STRVAL_PP(attr)); in get_zval_xmlrpc_type()
/PHP-5.5/ext/xmlrpc/libxmlrpc/
H A Dxml_to_soap.c69 xml_element_attr* attr = malloc(sizeof(xml_element_attr)); in new_attr() local
70 if (attr) { in new_attr()
71 attr->key = key ? strdup(key) : NULL; in new_attr()
72 attr->val = val ? strdup(val) : NULL; in new_attr()
74 return attr; in new_attr()
H A Dxml_element.c610 xml_element_attr* attr = malloc(sizeof(xml_element_attr)); in _xmlrpc_startElement() local
611 if(attr) { in _xmlrpc_startElement()
612 attr->key = strdup(*p); in _xmlrpc_startElement()
613 attr->val = strdup(*(p+1)); in _xmlrpc_startElement()
614 Q_PushTail(&mydata->current->attrs, attr); in _xmlrpc_startElement()
/PHP-5.5/ext/xmlreader/examples/
H A Dxmlreader_string.php21 $attr = $reader->moveToFirstAttribute(); variable
22 while ($attr) {
25 $attr = $reader->moveToNextAttribute(); variable
H A Dxmlreader_file.php10 $attr = $reader->moveToFirstAttribute(); variable
11 while ($attr) {
14 $attr = $reader->moveToNextAttribute(); variable
/PHP-5.5/ext/xmlreader/tests/
H A D003.phpt23 $attr = $reader->moveToFirstAttribute();
28 echo "1st attr (num) failed\n";
32 $attr = $reader->moveToNextAttribute();
37 echo "2nd attr (idx) failed\n";
41 $attr = $reader->moveToAttribute('num');
46 echo "attr num failed\n";
49 $attr = $reader->moveToAttribute('idx');
54 echo "attr idx failed\n";
58 $attr = $reader->moveToAttributeNo(0);
63 echo "attr 0 failed\n";
[all …]
H A D004.phpt23 $attr = $reader->moveToFirstAttribute();
24 while ($attr) {
27 $attr = $reader->moveToNextAttribute();
H A D006.phpt22 $attr = $reader->moveToFirstAttribute();
/PHP-5.5/ext/xml/tests/
H A Dbug26528.phpt9 $sample = "<?xml version=\"1.0\"?><test attr=\"angle&lt;bracket\"/>";
H A Dbug30266.phpt33 function startHandler($XmlParser, $tag, $attr)
H A Dxml007.phpt13 function startHandler($parser,$tag,$attr)
15 var_dump($tag,$attr);
/PHP-5.5/ext/standard/
H A Dlink_win32.c119 DWORD attr; in PHP_FUNCTION() local
169 if ((attr = GetFileAttributes(topath)) == INVALID_FILE_ATTRIBUTES) { in PHP_FUNCTION()
177 ret = pCreateSymbolicLinkA(source_p, topath, (attr & FILE_ATTRIBUTE_DIRECTORY ? 1 : 0)); in PHP_FUNCTION()
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c37777 DWORD attr;
37791 attr = sAttrData.dwFileAttributes;
37797 return (attr!=INVALID_FILE_ATTRIBUTES) && (attr&FILE_ATTRIBUTE_DIRECTORY);
38101 DWORD attr;
38122 attr = sAttrData.dwFileAttributes;
38136 if ( attr==INVALID_FILE_ATTRIBUTES ){
38208 DWORD attr;
38237 attr = INVALID_FILE_ATTRIBUTES;
38239 attr = sAttrData.dwFileAttributes;
38248 attr = INVALID_FILE_ATTRIBUTES;
[all …]
/PHP-5.5/ext/soap/
H A Dsoap.c3461 xmlAttrPtr attr; local
3491 attr = env->properties;
3492 while (attr != NULL) {
3502 attr = attr->next;
3532 while (attr != NULL) {
3544 attr = attr->next;
3600 while (attr != NULL) {
3610 attr = attr->next;
3624 if (attr != NULL) {
3645 if (attr) {
[all …]
H A Dphp_packet_soap.c30 xmlAttrPtr attr; in parse_packet_soap() local
82 attr = env->properties; in parse_packet_soap()
83 while (attr != NULL) { in parse_packet_soap()
84 if (attr->ns == NULL) { in parse_packet_soap()
99 attr = attr->next; in parse_packet_soap()
130 attr = body->properties; in parse_packet_soap()
131 while (attr != NULL) { in parse_packet_soap()
132 if (attr->ns == NULL) { in parse_packet_soap()
149 attr = attr->next; in parse_packet_soap()
159 while (attr != NULL) { in parse_packet_soap()
[all …]
H A Dphp_schema.c986 if (attr) { in schema_min_max()
993 if (attr) { in schema_min_max()
1591 if (attr) { in schema_element()
1606 if (attr) { in schema_element()
1614 if (attr) { in schema_element()
1625 if (attr) { in schema_element()
1888 attr = attr->next; in schema_attribute()
2117 if (attr->name == NULL && attr->ref != NULL) { in schema_attribute_fixup()
2122 attr->name = estrdup(attr->ref); in schema_attribute_fixup()
2502 free(attr); in delete_extra_attribute_persistent()
[all …]
H A Dphp_sdl.c217 xmlAttrPtr attr; in is_wsdl_element() local
219 attr->children && attr->children->content && in is_wsdl_element()
1233 attr->ref = sdl_deserialize_string(in); in sdl_deserialize_attribute()
1239 attr->encode = encoders[i]; in sdl_deserialize_attribute()
1844 sdl_serialize_string(attr->name, out); in sdl_serialize_attribute()
1846 sdl_serialize_string(attr->ref, out); in sdl_serialize_attribute()
1847 sdl_serialize_string(attr->def, out); in sdl_serialize_attribute()
1849 WSDL_CACHE_PUT_1(attr->form, out); in sdl_serialize_attribute()
1850 WSDL_CACHE_PUT_1(attr->use, out); in sdl_serialize_attribute()
1852 if (attr->extraAttributes) { in sdl_serialize_attribute()
[all …]
H A Dphp_xml.c279 xmlAttrPtr attr; in get_node_with_attribute_ex() local
289 attr = get_attribute_ex(node->properties, attribute, attr_ns); in get_node_with_attribute_ex()
290 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_ex()
302 xmlAttrPtr attr = get_attribute_ex(node->properties, attribute, attr_ns); in get_node_with_attribute_recursive_ex() local
303 if (attr != NULL && strcmp((char*)attr->children->content, value) == 0) { in get_node_with_attribute_recursive_ex()
H A Dphp_xml.h28 #define get_node_with_attribute(node, name, attr, val) get_node_with_attribute_ex(node, name, NULL,… argument
29 …ode_with_attribute_recursive(node, name, attr, val) get_node_with_attribute_recursive_ex(node, nam… argument
H A Dphp_encoding.c313 attr = get_attribute(attr, "id"); in soap_check_zval_ref()
314 if (attr == NULL || attr->ns == NULL) { in soap_check_zval_ref()
317 attr = attr->next; in soap_check_zval_ref()
319 if (attr) { in soap_check_zval_ref()
335 attr = get_attribute_ex(attr, "id", SOAP_1_2_ENC_NAMESPACE); in soap_check_zval_ref()
336 if (attr) { in soap_check_zval_ref()
2584 attr->children && attr->children->content) { in to_zval_array()
2589 nsptr = xmlSearchNs(attr->doc, attr->parent, BAD_CAST(ns)); in to_zval_array()
2618 attr->children && attr->children->content) { in to_zval_array()
2627 attr->children && attr->children->content) { in to_zval_array()
[all …]
/PHP-5.5/ext/simplexml/tests/
H A Dbug62639.phpt19 <value attr="Some Attr">Some Value</value>
35 <c><value attr="Some Attr">Some Value</value></c>
49 ["attr"]=>
58 ["attr"]=>

Completed in 479 milliseconds

1234