Home
last modified time | relevance | path

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

123456

/PHP-8.1/Zend/
H A Dzend_language_parser.y351 T_STRING { $$ = $1; $$->attr = ZEND_NAME_NOT_FQ; }
352 | T_NAME_QUALIFIED { $$ = $1; $$->attr = ZEND_NAME_NOT_FQ; }
353 | T_NAME_FULLY_QUALIFIED { $$ = $1; $$->attr = ZEND_NAME_FQ; }
408 | T_USE use_type use_declarations ';' { $$ = $3; $$->attr = $2; }
455 | use_type unprefixed_use_declaration { $$ = $2; $$->attr = $1; }
805 | '?' type { $$ = $2; $$->attr |= ZEND_TYPE_NULLABLE; }
912 $$->attr = $1; }
915 $$->attr = $1; }
1255 | ampersand T_VARIABLE { $$ = $2; $$->attr = ZEND_BIND_REF; }
1462 { $5->attr = ZEND_ARRAY_SYNTAX_LIST;
[all …]
H A Dzend_compile.c3145 if (elem_ast->attr) { in zend_compile_list_assign()
6495 ast->attr = orig_ast_attr; in zend_compile_typename()
6520 zend_attribute *attr; in zend_compile_attributes() local
6574 zend_string_equals(attr->args[k].name, attr->args[j].name)) { in zend_compile_attributes()
7070 if (var_ast->attr) { in zend_compile_closure_uses()
8068 uint32_t type = ast->attr; in zend_compile_use()
8150 inline_use->attr = ast->attr ? ast->attr : use->attr; in zend_compile_group_use()
8289 switch (ast->attr) { in zend_try_ct_eval_magic_const()
9435 by_ref = elem_ast->attr; in zend_compile_array()
9829 ast->attr = fetch_type; in zend_compile_const_expr_class_name()
[all …]
/PHP-8.1/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_missingAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
H A DDOMDocument_schemaValidateSource_addAttrs.phpt12 $doc->load(__DIR__."/book-attr.xml");
/PHP-8.1/ext/pdo_sqlite/tests/
H A Dbug52487.phpt10 $stmt = $db->prepare("select 1 as attr");
/PHP-8.1/ext/simplexml/tests/
H A D027.phpt15 foreach($xml->attributes() as $attr => $value)
17 echo " $attr=\"$value\"";
/PHP-8.1/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.1/ext/ffi/
H A Dffi.c100 uint32_t attr; member
1756 new_type->attr = 0; in zend_ffi_add()
2438 new_type->attr = 0; in zend_ffi_read_var()
3001 || old->attr != type->attr) { in zend_ffi_same_types()
4144 new_type->attr = 0; in ZEND_METHOD()
4187 new_type->attr = 0; in ZEND_METHOD()
5807 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_ENUM_ATTRS);
5937 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_STRUCT_ATTRS);
6218 type->attr = FFI_G(default_type_attr) | (dcl->attr & ZEND_FFI_POINTER_ATTRS);
6282 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-8.1/ext/xml/tests/
H A Dbug26528.phpt7 $sample = "<?xml version=\"1.0\"?><test attr=\"angle&lt;bracket\"/>";
H A Dbug30266.phpt31 function startHandler($XmlParser, $tag, $attr)
/PHP-8.1/ext/soap/
H A Dsoap.c3015 xmlAttrPtr attr; local
3026 attr = env->properties;
3027 while (attr != NULL) {
3037 attr = attr->next;
3067 while (attr != NULL) {
3079 attr = attr->next;
3134 while (attr != NULL) {
3144 attr = attr->next;
3158 if (attr != NULL) {
3179 if (attr) {
[all …]
/PHP-8.1/ext/opcache/tests/jit/
H A Dreg_alloc_002.phpt16 foreach (array("a", "b", "c") as $attr) {
/PHP-8.1/Zend/tests/attributes/
H A D013_class_scope.phpt45 $attr = $ref->getMethod('foo')->getAttributes()[0];
48 $attr->getArguments();
H A D005_objects.phpt21 foreach ($ref->getAttributes() as $attr) {
22 $obj = $attr->newInstance();
/PHP-8.1/ext/mysqli/tests/
H A Dmysqli_stmt_attr_get_prefetch.phpt18 gettype($tmp), $tmp, $k, $attr);
/PHP-8.1/ext/intl/tests/
H A Dbug53512.phpt2 Bug #53512 (NumberFormatter::setSymbol crash on bogus $attr values)
/PHP-8.1/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 94 milliseconds

123456