Home
last modified time | relevance | path

Searched refs:attr (Results 126 – 150 of 208) sorted by relevance

123456789

/php-src/ext/soap/
H A Dsoap.c3043 xmlAttrPtr attr; local
3054 attr = env->properties;
3055 while (attr != NULL) {
3065 attr = attr->next;
3095 while (attr != NULL) {
3107 attr = attr->next;
3162 while (attr != NULL) {
3172 attr = attr->next;
3186 if (attr != NULL) {
3207 if (attr) {
[all …]
/php-src/ext/dom/tests/
H A DDOMAttr_construct_error_001.phpt11 $attr = new DOMAttr();
H A DDOMDocument_strictErrorChecking_variation.phpt21 $attr = $doc->createAttribute(0);
38 $attr = $doc->createAttribute(0);
H A DDOMDocument_createAttribute_error.phpt10 $attr = $dom->createAttribute(0);
H A DDOMDocument_schemaValidate_addAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
H A DDOMDocument_schemaValidate_missingAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
H A Dbug81433.phpt2 Bug #81433 (DOMElement::setIdAttribute(attr, true) called twice removes ID)
H A DDOMDocument_schemaValidateSource_addAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
H A DDOMDocument_schemaValidateSource_missingAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
/php-src/ext/ffi/
H A Dffi.c113 uint32_t attr; member
1819 new_type->attr = 0; in zend_ffi_add()
2500 new_type->attr = 0; in zend_ffi_read_var()
3080 || old->attr != type->attr) { in zend_ffi_same_types()
4258 new_type->attr = 0; in ZEND_METHOD()
4307 new_type->attr = 0; in ZEND_METHOD()
5902 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_ENUM_ATTRS);
6032 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_STRUCT_ATTRS);
6313 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_POINTER_ATTRS);
6377 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_ARRAY_ATTRS);
[all …]
H A Dffi.g163 {dcl->attr |= ZEND_FFI_ATTR_CONST;}
394 {uint32_t attr = 0;}
402 {attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY;}
404 {attr |= ZEND_FFI_ATTR_VLA;}
408 {attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY;}
410 {attr |= ZEND_FFI_ATTR_VLA;}
416 {dcl->attr |= attr;}
427 {attr |= ZEND_FFI_ATTR_VARIADIC;}
430 {attr |= ZEND_FFI_ATTR_VARIADIC;}
434 {dcl->attr |= attr;}
/php-src/ext/xmlreader/tests/
H A D015-get-errors.phpt26 $attr = $reader->moveToNextAttribute();
30 $attr = $reader->getAttributeNs('idx', null);
H A D006.phpt21 $attr = $reader->moveToFirstAttribute();
/php-src/ext/simplexml/tests/
H A D027.phpt15 foreach($xml->attributes() as $attr => $value)
17 echo " $attr=\"$value\"";
/php-src/ext/pdo_sqlite/tests/
H A Dbug52487.phpt10 $stmt = $db->prepare("select 1 as attr");
/php-src/ext/xml/tests/
H A Dbug26528.phpt7 $sample = "<?xml version=\"1.0\"?><test attr=\"angle&lt;bracket\"/>";
/php-src/ext/dom/lexbor/lexbor/html/tokenizer/
H A Dstate_doctype.c201 lxb_html_token_attr_t *attr; in lxb_html_tokenizer_state_doctype_before_name() local
235 lxb_html_tokenizer_state_token_attr_add_m(tkz, attr, end); in lxb_html_tokenizer_state_doctype_before_name()
266 lxb_html_tokenizer_state_token_attr_add_m(tkz, attr, end); in lxb_html_tokenizer_state_doctype_before_name()
377 lxb_html_token_attr_t *attr; in lxb_html_tokenizer_state_doctype_after_name() local
491 lxb_html_token_attr_delete(tkz->token, attr, in lxb_html_tokenizer_state_doctype_after_name()
1008 lxb_html_token_attr_t *attr; in lxb_html_tokenizer_state_doctype_after_public_identifier() local
1041 lxb_html_tokenizer_state_token_attr_add_m(tkz, attr, end); in lxb_html_tokenizer_state_doctype_after_public_identifier()
1053 lxb_html_tokenizer_state_token_attr_add_m(tkz, attr, end); in lxb_html_tokenizer_state_doctype_after_public_identifier()
1094 lxb_html_token_attr_t *attr; in lxb_html_tokenizer_state_doctype_between_public_and_system_identifiers() local
1121 lxb_html_tokenizer_state_token_attr_add_m(tkz, attr, end); in lxb_html_tokenizer_state_doctype_between_public_and_system_identifiers()
[all …]
/php-src/ext/dom/
H A Dnode.c1800 for (xmlAttrPtr attr = elem->properties; attr != NULL; attr = attr->next) { in dom_locate_a_namespace_prefix() local
1801 if (attr->ns != NULL && attr->children != NULL in dom_locate_a_namespace_prefix()
1802 …&& xmlStrEqual(attr->ns->prefix, BAD_CAST "xmlns") && xmlStrEqual(attr->children->content, BAD_CAS… in dom_locate_a_namespace_prefix()
1803 return attr->name; in dom_locate_a_namespace_prefix()
1912 for (xmlAttrPtr attr = node->properties; attr != NULL; attr = attr->next) { in dom_locate_a_namespace() local
1913 if (attr->ns == NULL || !php_dom_ns_is_fast_ex(attr->ns, php_dom_ns_is_xmlns_magic_token)) { in dom_locate_a_namespace()
1916 …if ((prefix != NULL && xmlStrEqual(attr->ns->prefix, BAD_CAST "xmlns") && xmlStrEqual(attr->name, … in dom_locate_a_namespace()
1917 || (prefix == NULL && attr->ns->prefix == NULL && xmlStrEqual(attr->name, BAD_CAST "xmlns"))) { in dom_locate_a_namespace()
1918 if (attr->children != NULL && attr->children->content[0] != '\0') { in dom_locate_a_namespace()
1919 return (const char *) attr->children->content; in dom_locate_a_namespace()
[all …]
H A Dattr.c202 bool dom_compare_value(const xmlAttr *attr, const xmlChar *value) in dom_compare_value() argument
205 xmlChar *attr_value = php_libxml_attr_value(attr, &free); in dom_compare_value()
/php-src/ext/opcache/tests/jit/
H A Dreg_alloc_002.phpt15 foreach (array("a", "b", "c") as $attr) {
/php-src/Zend/tests/attributes/
H A D013_class_scope.phpt45 $attr = $ref->getMethod('foo')->getAttributes()[0];
48 $attr->getArguments();
/php-src/ext/dom/tests/modern/spec/
H A DElement_setAttribute_without_namespace.phpt34 foreach ($attrs as $attr) {
35 dumpAttr($attr);
/php-src/ext/dom/lexbor/lexbor/html/interfaces/
H A Ddocument.c1041 lxb_dom_attr_t *attr;
1056 attr = lxb_dom_interface_attr(node);
1057 el = lxb_html_interface_element(attr->owner);
1066 if (attr->value == NULL || attr->value->data == NULL) {
1070 return lxb_html_element_style_parse(el, attr->value->data,
1071 attr->value->length);
1137 lxb_dom_attr_t *attr;
1148 attr = lxb_dom_interface_attr(node);
1149 el = lxb_html_interface_element(attr->owner);
1243 lxb_dom_attr_t *attr = lxb_dom_interface_attr(node);
[all …]
/php-src/ext/mysqli/tests/
H A Dmysqli_stmt_attr_get_prefetch.phpt18 gettype($tmp), $tmp, $k, $attr);
/php-src/ext/intl/tests/
H A Dbug53512.phpt2 Bug #53512 (NumberFormatter::setSymbol crash on bogus $attr values)

Completed in 99 milliseconds

123456789