Home
last modified time | relevance | path

Searched refs:allow (Results 1 – 25 of 82) sorted by relevance

1234

/PHP-8.1/ext/spl/
H A Dspl_functions.c27 void spl_add_class_name(zval *list, zend_class_entry *pce, int allow, int ce_flags) in spl_add_class_name() argument
29 …if (!allow || (allow > 0 && (pce->ce_flags & ce_flags)) || (allow < 0 && !(pce->ce_flags & ce_flag… in spl_add_class_name()
42 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_interfaces() argument
49 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags); in spl_add_interfaces()
56 void spl_add_traits(zval *list, zend_class_entry * pce, int allow, int ce_flags) in spl_add_traits() argument
65 spl_add_class_name(list, trait, allow, ce_flags); in spl_add_traits()
72 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags) in spl_add_classes() argument
77 spl_add_class_name(list, pce, allow, ce_flags); in spl_add_classes()
79 spl_add_interfaces(list, pce, allow, ce_flags); in spl_add_classes()
82 spl_add_classes(pce, list, sub, allow, ce_flags); in spl_add_classes()
H A Dphp_spl.c163 #define SPL_LIST_CLASSES(z_list, sub, allow, ce_flags) \ argument
166 SPL_ADD_CLASS(ArrayObject, z_list, sub, allow, ce_flags); \
176 SPL_ADD_CLASS(GlobIterator, z_list, sub, allow, ce_flags); \
204 SPL_ADD_CLASS(SplFileInfo, z_list, sub, allow, ce_flags); \
207 SPL_ADD_CLASS(SplHeap, z_list, sub, allow, ce_flags); \
208 SPL_ADD_CLASS(SplMinHeap, z_list, sub, allow, ce_flags); \
209 SPL_ADD_CLASS(SplMaxHeap, z_list, sub, allow, ce_flags); \
211 SPL_ADD_CLASS(SplObserver, z_list, sub, allow, ce_flags); \
213 SPL_ADD_CLASS(SplQueue, z_list, sub, allow, ce_flags); \
214 SPL_ADD_CLASS(SplStack, z_list, sub, allow, ce_flags); \
[all …]
H A Dspl_functions.h32 void spl_add_class_name(zval * list, zend_class_entry * pce, int allow, int ce_flags);
33 void spl_add_interfaces(zval * list, zend_class_entry * pce, int allow, int ce_flags);
34 void spl_add_traits(zval * list, zend_class_entry * pce, int allow, int ce_flags);
35 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags);
/PHP-8.1/Zend/tests/type_declarations/
H A Dscalar_float_with_integer_default_weak.phpt2 Float type should allow an integer as default
H A Dscalar_float_with_integer_default_strict.phpt2 Float type should allow an integer as default even with strict types
H A Dtyped_properties_010.phpt2 Test typed properties allow fetch reference
H A Dtyped_properties_011.phpt2 Test typed properties allow fetch reference for init array
H A Dtyped_properties_012.phpt2 Test typed properties allow fetch reference for foreach
H A Dscalar_float_with_invalid_default.phpt2 Float type should not allow invalid types as default
H A Dtyped_properties_049.phpt10 …e for property of type int may not be null. Use the nullable type ?int to allow null default value…
H A Dtyped_properties_015.phpt10 …erty of type stdClass may not be null. Use the nullable type ?stdClass to allow null default value…
/PHP-8.1/ext/standard/tests/math/
H A Dbug28228.phpt2 Bug #28228 (number_format() does not allow empty decimal separator)
/PHP-8.1/Zend/tests/
H A Dlist_010.phpt2 Do not allow mixing [] and list()
H A Dns_trailing_comma_error_03.phpt2 Group use declarations mustn't allow more than one comma
H A Dns_trailing_comma_error_06.phpt2 Unmixed group use declarations mustn't allow more than one comma
H A Dbug71871.phpt2 Bug #71871: Interfaces allow final and abstract functions
H A Dbug71871_2.phpt2 Bug #71871: Interfaces allow final and abstract functions
H A Dns_094.phpt2 Type group use declarations should not allow override on inner items
/PHP-8.1/ext/filter/tests/
H A Dbug47745.phpt2 Bug #47745 (FILTER_VALIDATE_INT doesn't allow minimum integer)
H A Dbug51368.phpt2 FR #51368 (php_filter_float does not allow custom thousand separators)
/PHP-8.1/ext/dom/tests/
H A Dbug50661.phpt2 Bug #50661 (DOMDocument::loadXML does not allow UTF-16).
/PHP-8.1/ext/zlib/tests/
H A Dzlib_scheme_unlink_basic.phpt13 Warning: unlink(): ZLIB does not allow unlinking in %s on line %d
/PHP-8.1/ext/spl/tests/
H A DSplArray_fromArray.phpt2 Check that SplArray::fromArray will not allow integer overflows
/PHP-8.1/ext/date/tests/
H A Dbug26090.phpt2 Bug #26090 (allow colons in time zone offset to strtotime())
/PHP-8.1/Zend/tests/nullable_types/
H A Dunion_nullable_property_fails.phpt15 …type string|int may not be null. Use the nullable type string|int|null to allow null default value…

Completed in 57 milliseconds

1234