Home
last modified time | relevance | path

Searched refs:ce_flags (Results 1 – 23 of 23) sorted by relevance

/PHP-5.3/ext/spl/
H A Dspl_functions.c80 void spl_add_class_name(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) in spl_add_class_name()
82 …if (!allow || (allow > 0 && pce->ce_flags & ce_flags) || (allow < 0 && !(pce->ce_flags & ce_flags)… in spl_add_class_name()
96 void spl_add_interfaces(zval *list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC) in spl_add_interfaces()
101 spl_add_class_name(list, pce->interfaces[num_interfaces], allow, ce_flags TSRMLS_CC); in spl_add_interfaces()
107 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC) in spl_add_classes()
112 spl_add_class_name(list, pce, allow, ce_flags TSRMLS_CC); in spl_add_classes()
114 spl_add_interfaces(list, pce, allow, ce_flags TSRMLS_CC); in spl_add_classes()
117 spl_add_classes(pce, list, sub, allow, ce_flags TSRMLS_CC); in spl_add_classes()
H A Dphp_spl.c156 #define SPL_LIST_CLASSES(z_list, sub, allow, ce_flags) \ argument
159 SPL_ADD_CLASS(ArrayObject, z_list, sub, allow, ce_flags); \
163 SPL_ADD_CLASS(Countable, z_list, sub, allow, ce_flags); \
196 SPL_ADD_CLASS(SplFileInfo, z_list, sub, allow, ce_flags); \
199 SPL_ADD_CLASS(SplHeap, z_list, sub, allow, ce_flags); \
200 SPL_ADD_CLASS(SplMinHeap, z_list, sub, allow, ce_flags); \
201 SPL_ADD_CLASS(SplMaxHeap, z_list, sub, allow, ce_flags); \
203 SPL_ADD_CLASS(SplObserver, z_list, sub, allow, ce_flags); \
205 SPL_ADD_CLASS(SplQueue, z_list, sub, allow, ce_flags); \
206 SPL_ADD_CLASS(SplStack, z_list, sub, allow, ce_flags); \
[all …]
H A Dspl_functions.h63 void spl_add_class_name(zval * list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC);
64 void spl_add_interfaces(zval * list, zend_class_entry * pce, int allow, int ce_flags TSRMLS_DC);
65 int spl_add_classes(zend_class_entry *pce, zval *list, int sub, int allow, int ce_flags TSRMLS_DC);
H A Dspl_iterators.c3551 spl_ce_FilterIterator->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS; in PHP_MINIT_FUNCTION()
/PHP-5.3/
H A D.gdbinit320 if $ce->ce_flags & 0x10 || $ce->ce_flags & 0x20
323 if $ce->ce_flags & 0x40
366 if $ce->ce_flags & 0x80
/PHP-5.3/ext/com_dotnet/
H A Dcom_extension.c354 php_com_exception_class_entry->ce_flags |= ZEND_ACC_FINAL; in PHP_MINIT_FUNCTION()
359 php_com_saproxy_class_entry->ce_flags |= ZEND_ACC_FINAL; in PHP_MINIT_FUNCTION()
H A Dcom_persist.c774 helper_ce->ce_flags |= ZEND_ACC_FINAL; in php_com_persist_minit()
/PHP-5.3/Zend/
H A Dzend_compile.c547 if (CG(active_class_entry)->ce_flags & ZEND_ACC_INTERFACE) { in zend_do_abstract_method()
1198 if (CG(active_class_entry)->ce_flags & ZEND_ACC_INTERFACE) { in zend_do_begin_function_declaration()
2626 child_ce->ce_flags |= ZEND_ACC_IMPLICIT_ABSTRACT_CLASS; in do_inherit_method_check()
2844 if ((ce->ce_flags & ZEND_ACC_INTERFACE) in zend_do_inheritance()
2845 && !(parent_ce->ce_flags & ZEND_ACC_INTERFACE)) { in zend_do_inheritance()
2848 if (parent_ce->ce_flags & ZEND_ACC_FINAL_CLASS) { in zend_do_inheritance()
2880 ce->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS; in zend_do_inheritance()
3032 if (parent_ce->ce_flags & ZEND_ACC_INTERFACE) { in do_bind_inherited_class()
3444 new_class_entry->ce_flags |= class_token->u.EA.type; in zend_do_begin_class_declaration()
3546 ce->ce_flags |= ZEND_ACC_IMPLEMENT_INTERFACES; in zend_do_end_class_declaration()
[all …]
H A Dzend_API.c1074 …if (class_type->ce_flags & (ZEND_ACC_INTERFACE|ZEND_ACC_IMPLICIT_ABSTRACT_CLASS|ZEND_ACC_EXPLICIT_… in _object_and_properties_init()
1075 char *what = class_type->ce_flags & ZEND_ACC_INTERFACE ? "interface" : "abstract class"; in _object_and_properties_init()
1874 scope->ce_flags |= ZEND_ACC_IMPLICIT_ABSTRACT_CLASS; in zend_register_functions()
1875 if (!(scope->ce_flags & ZEND_ACC_INTERFACE)) { in zend_register_functions()
1879 scope->ce_flags |= ZEND_ACC_EXPLICIT_ABSTRACT_CLASS; in zend_register_functions()
1882 if (ptr->flags & ZEND_ACC_STATIC && (!scope || !(scope->ce_flags & ZEND_ACC_INTERFACE))) { in zend_register_functions()
1886 if (scope && (scope->ce_flags & ZEND_ACC_INTERFACE)) { in zend_register_functions()
2192 …o_register_internal_class(zend_class_entry *orig_class_entry, zend_uint ce_flags TSRMLS_DC) /* {{{… in do_register_internal_class()
2200 class_entry->ce_flags = ce_flags; in do_register_internal_class()
H A Dzend_builtin_functions.c1197 RETURN_BOOL(found == SUCCESS && !((*ce)->ce_flags & ZEND_ACC_INTERFACE)); in ZEND_FUNCTION()
1201 RETURN_BOOL(((*ce)->ce_flags & ZEND_ACC_INTERFACE) == 0); in ZEND_FUNCTION()
1240 RETURN_BOOL(found == SUCCESS && (*ce)->ce_flags & ZEND_ACC_INTERFACE); in ZEND_FUNCTION()
1244 RETURN_BOOL(((*ce)->ce_flags & ZEND_ACC_INTERFACE) > 0); in ZEND_FUNCTION()
1561 && (comply_mask == (ce->ce_flags & mask))) { in copy_class_or_interface_name()
H A Dzend_closures.c314 zend_ce_closure->ce_flags |= ZEND_ACC_FINAL_CLASS; in zend_register_closure_ce()
H A Dzend.h425 zend_uint ce_flags; member
H A Dzend_execute_API.c1621 …if ((ce->ce_flags & ZEND_ACC_IMPLICIT_ABSTRACT_CLASS) && !(ce->ce_flags & ZEND_ACC_EXPLICIT_ABSTRA… in zend_verify_abstract_class()
H A Dzend_execute.c447 if (*pce && (*pce)->ce_flags & ZEND_ACC_INTERFACE) { in zend_verify_arg_class_kind()
H A Dzend_vm_def.h2917 …if (EX_T(opline->op1.u.var).class_entry->ce_flags & (ZEND_ACC_INTERFACE|ZEND_ACC_IMPLICIT_ABSTRACT…
2920 if (EX_T(opline->op1.u.var).class_entry->ce_flags & ZEND_ACC_INTERFACE) {
4288 if (!(iface->ce_flags & ZEND_ACC_INTERFACE)) {
H A Dzend_vm_execute.h474 …if (EX_T(opline->op1.u.var).class_entry->ce_flags & (ZEND_ACC_INTERFACE|ZEND_ACC_IMPLICIT_ABSTRACT… in ZEND_NEW_SPEC_HANDLER()
477 if (EX_T(opline->op1.u.var).class_entry->ce_flags & ZEND_ACC_INTERFACE) { in ZEND_NEW_SPEC_HANDLER()
911 if (!(iface->ce_flags & ZEND_ACC_INTERFACE)) { in ZEND_ADD_INTERFACE_SPEC_CONST_HANDLER()
/PHP-5.3/ext/mysqli/
H A Dmysqli.c617 mysqli_exception_class_entry->ce_flags |= ZEND_ACC_FINAL; in PHP_MINIT_FUNCTION()
627 ce->ce_flags |= ZEND_ACC_FINAL_CLASS; in PHP_MINIT_FUNCTION()
638 ce->ce_flags |= ZEND_ACC_FINAL_CLASS | ZEND_ACC_PROTECTED; in PHP_MINIT_FUNCTION()
/PHP-5.3/ext/reflection/
H A Dphp_reflection.c359 …string_printf(str, "%s%s [ ", indent, (ce->ce_flags & ZEND_ACC_INTERFACE) ? "Interface" : "Class"); in _class_string()
369 if (ce->ce_flags & ZEND_ACC_INTERFACE) { in _class_string()
372 if (ce->ce_flags & (ZEND_ACC_IMPLICIT_ABSTRACT_CLASS|ZEND_ACC_EXPLICIT_ABSTRACT_CLASS)) { in _class_string()
375 if (ce->ce_flags & ZEND_ACC_FINAL_CLASS) { in _class_string()
388 if (ce->ce_flags & ZEND_ACC_INTERFACE) { in _class_string()
3801 RETVAL_BOOL(ce->ce_flags & mask); in _class_check_flag()
3816 …if (ce->ce_flags & (ZEND_ACC_INTERFACE | ZEND_ACC_EXPLICIT_ABSTRACT_CLASS | ZEND_ACC_IMPLICIT_ABST… in ZEND_METHOD()
3866 RETURN_LONG(ce->ce_flags); in ZEND_METHOD()
4195 if (!(interface_ce->ce_flags & ZEND_ACC_INTERFACE)) { in ZEND_METHOD()
/PHP-5.3/ext/sqlite/
H A Dsqlite.c1109 sqlite_ce_ ## c_name->ce_flags |= ZEND_ACC_FINAL_CLASS; \
1374 sqlite_ce_db->ce_flags &= ~ZEND_ACC_FINAL_CLASS; in PHP_MINIT_FUNCTION()
/PHP-5.3/ext/tidy/
H A Dtidy.c95 tidy_ce_ ## name->ce_flags |= __flags; \
/PHP-5.3/ext/dom/
H A Dphp_dom.c676 dom_domexception_class_entry->ce_flags |= ZEND_ACC_FINAL; in PHP_MINIT_FUNCTION()
/PHP-5.3/ext/phar/
H A Dphar_object.c5464 phar_ce_archive->ce_flags |= ZEND_ACC_FINAL_CLASS;
5468 phar_ce_data->ce_flags |= ZEND_ACC_FINAL_CLASS;
/PHP-5.3/ext/pdo/
H A Dpdo_stmt.c2376 …pdo_row_ce->ce_flags |= ZEND_ACC_FINAL_CLASS; /* when removing this a lot of handlers need to be r… in pdo_stmt_init()

Completed in 239 milliseconds