Home
last modified time | relevance | path

Searched refs:attr (Results 76 – 100 of 149) sorted by relevance

123456

/PHP-8.2/ext/zend_test/
H A Dtest.c928 zend_attribute *attr; in PHP_MINIT_FUNCTION() local
930 attr = zend_add_parameter_attribute( in PHP_MINIT_FUNCTION()
937 ZVAL_PSTRING(&attr->args[0].value, "value1"); in PHP_MINIT_FUNCTION()
946 zend_attribute *attr; in PHP_MINIT_FUNCTION() local
948 attr = zend_add_parameter_attribute( in PHP_MINIT_FUNCTION()
955 ZVAL_PSTRING(&attr->args[0].value, "value2"); in PHP_MINIT_FUNCTION()
957 attr = zend_add_parameter_attribute( in PHP_MINIT_FUNCTION()
964 ZVAL_PSTRING(&attr->args[0].value, "value3"); in PHP_MINIT_FUNCTION()
970 zend_attribute *attr; in PHP_MINIT_FUNCTION() local
972 attr = zend_add_parameter_attribute( in PHP_MINIT_FUNCTION()
[all …]
/PHP-8.2/ext/soap/
H A Dphp_encoding.c299 attr = get_attribute(attr, "id"); in soap_check_zval_ref()
300 if (attr == NULL || attr->ns == NULL) { in soap_check_zval_ref()
303 attr = attr->next; in soap_check_zval_ref()
305 if (attr) { in soap_check_zval_ref()
321 attr = get_attribute_ex(attr, "id", SOAP_1_2_ENC_NAMESPACE); in soap_check_zval_ref()
322 if (attr) { in soap_check_zval_ref()
1500 if (attr->fixed && strcmp(attr->fixed, str_val) != 0) { in to_zval_object_ex()
2448 attr->children && attr->children->content) { in to_zval_array()
2482 attr->children && attr->children->content) { in to_zval_array()
2491 attr->children && attr->children->content) { in to_zval_array()
[all …]
H A Dsoap.c2969 xmlAttrPtr attr; local
2980 attr = env->properties;
2981 while (attr != NULL) {
2991 attr = attr->next;
3021 while (attr != NULL) {
3033 attr = attr->next;
3088 while (attr != NULL) {
3098 attr = attr->next;
3112 if (attr != NULL) {
3133 if (attr) {
[all …]
/PHP-8.2/ext/opcache/
H A Dzend_persist_calc.c161 zend_attribute *attr; in zend_persist_attributes_calc() local
168 ZEND_HASH_PACKED_FOREACH_PTR(attributes, attr) { in zend_persist_attributes_calc()
169 ADD_SIZE(ZEND_ATTRIBUTE_SIZE(attr->argc)); in zend_persist_attributes_calc()
170 ADD_INTERNED_STRING(attr->name); in zend_persist_attributes_calc()
171 ADD_INTERNED_STRING(attr->lcname); in zend_persist_attributes_calc()
173 for (i = 0; i < attr->argc; i++) { in zend_persist_attributes_calc()
174 if (attr->args[i].name) { in zend_persist_attributes_calc()
175 ADD_INTERNED_STRING(attr->args[i].name); in zend_persist_attributes_calc()
177 zend_persist_zval_calc(&attr->args[i].value); in zend_persist_attributes_calc()
/PHP-8.2/Zend/
H A Dzend_language_parser.y352 T_STRING { $$ = $1; $$->attr = ZEND_NAME_NOT_FQ; }
353 | T_NAME_QUALIFIED { $$ = $1; $$->attr = ZEND_NAME_NOT_FQ; }
354 | T_NAME_FULLY_QUALIFIED { $$ = $1; $$->attr = ZEND_NAME_FQ; }
409 | T_USE use_type use_declarations ';' { $$ = $3; $$->attr = $2; }
456 | use_type unprefixed_use_declaration { $$ = $2; $$->attr = $1; }
816 | '?' type { $$ = $2; $$->attr |= ZEND_TYPE_NULLABLE; }
935 $$->attr = $1; }
938 $$->attr = $1; }
1277 | ampersand T_VARIABLE { $$ = $2; $$->attr = ZEND_BIND_REF; }
1491 { $5->attr = ZEND_ARRAY_SYNTAX_LIST;
[all …]
/PHP-8.2/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-8.2/ext/ffi/
H A Dffi.c102 uint32_t attr; member
1807 new_type->attr = 0; in zend_ffi_add()
2489 new_type->attr = 0; in zend_ffi_read_var()
3052 || old->attr != type->attr) { in zend_ffi_same_types()
4199 new_type->attr = 0; in ZEND_METHOD()
4242 new_type->attr = 0; in ZEND_METHOD()
5834 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_ENUM_ATTRS);
5964 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_STRUCT_ATTRS);
6245 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_POINTER_ATTRS);
6309 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_ARRAY_ATTRS);
[all …]
H A Dffi.g167 {dcl->attr |= ZEND_FFI_ATTR_CONST;}
398 {uint32_t attr = 0;}
406 {attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY;}
408 {attr |= ZEND_FFI_ATTR_VLA;}
412 {attr |= ZEND_FFI_ATTR_INCOMPLETE_ARRAY;}
414 {attr |= ZEND_FFI_ATTR_VLA;}
420 {dcl->attr |= attr;}
431 {attr |= ZEND_FFI_ATTR_VARIADIC;}
434 {attr |= ZEND_FFI_ATTR_VARIADIC;}
438 {dcl->attr |= attr;}
/PHP-8.2/ext/pdo_sqlite/tests/
H A Dbug52487.phpt10 $stmt = $db->prepare("select 1 as attr");
/PHP-8.2/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-8.2/ext/simplexml/tests/
H A D027.phpt15 foreach($xml->attributes() as $attr => $value)
17 echo " $attr=\"$value\"";
/PHP-8.2/ext/xml/tests/
H A Dbug26528.phpt7 $sample = "<?xml version=\"1.0\"?><test attr=\"angle&lt;bracket\"/>";
/PHP-8.2/ext/opcache/tests/jit/
H A Dreg_alloc_002.phpt16 foreach (array("a", "b", "c") as $attr) {
/PHP-8.2/Zend/tests/attributes/
H A D013_class_scope.phpt45 $attr = $ref->getMethod('foo')->getAttributes()[0];
48 $attr->getArguments();
/PHP-8.2/ext/mysqli/tests/
H A Dmysqli_stmt_attr_get_prefetch.phpt18 gettype($tmp), $tmp, $k, $attr);
/PHP-8.2/ext/intl/tests/
H A Dbug53512.phpt2 Bug #53512 (NumberFormatter::setSymbol crash on bogus $attr values)
/PHP-8.2/ext/pdo/
H A Dphp_pdo_driver.h240 typedef bool (*pdo_dbh_set_attr_func)(pdo_dbh_t *dbh, zend_long attr, zval *val);
262 typedef int (*pdo_dbh_get_attr_func)(pdo_dbh_t *dbh, zend_long attr, zval *val);
354 typedef int (*pdo_stmt_set_attr_func)(pdo_stmt_t *stmt, zend_long attr, zval *val);
357 typedef int (*pdo_stmt_get_attr_func)(pdo_stmt_t *stmt, zend_long attr, zval *val);

Completed in 96 milliseconds

123456