Lines Matching refs:ce

217 #	define CE_STATIC_MEMBERS(ce) (((ce)->type==ZEND_USER_CLASS)?(ce)->static_members:CG(static_member…  argument
219 # define CE_STATIC_MEMBERS(ce) ((ce)->static_members) argument
261 ZEND_API void zend_check_magic_method_implementation(const zend_class_entry *ce, const zend_functio…
268 ZEND_API int zend_register_class_alias_ex(const char *name, int name_len, zend_class_entry *ce TSRM…
270 #define zend_register_class_alias(name, ce) \ argument
271 zend_register_class_alias_ex(name, sizeof(name)-1, ce TSRMLS_CC)
272 #define zend_register_ns_class_alias(ns, name, ce) \ argument
273 …zend_register_class_alias_ex(ZEND_NS_NAME(ns, name), sizeof(ZEND_NS_NAME(ns, name))-1, ce TSRMLS_C…
292 ZEND_API int zend_declare_property(zend_class_entry *ce, char *name, int name_length, zval *propert…
293 ZEND_API int zend_declare_property_ex(zend_class_entry *ce, const char *name, int name_length, zval…
294 ZEND_API int zend_declare_property_null(zend_class_entry *ce, char *name, int name_length, int acce…
295 ZEND_API int zend_declare_property_bool(zend_class_entry *ce, char *name, int name_length, long val…
296 ZEND_API int zend_declare_property_long(zend_class_entry *ce, char *name, int name_length, long val…
297 ZEND_API int zend_declare_property_double(zend_class_entry *ce, char *name, int name_length, double…
298 ZEND_API int zend_declare_property_string(zend_class_entry *ce, char *name, int name_length, char *…
299 ZEND_API int zend_declare_property_stringl(zend_class_entry *ce, char *name, int name_length, char …
301 ZEND_API int zend_declare_class_constant(zend_class_entry *ce, const char *name, size_t name_length…
302 ZEND_API int zend_declare_class_constant_null(zend_class_entry *ce, const char *name, size_t name_l…
303 ZEND_API int zend_declare_class_constant_long(zend_class_entry *ce, const char *name, size_t name_l…
304 ZEND_API int zend_declare_class_constant_bool(zend_class_entry *ce, const char *name, size_t name_l…
305 ZEND_API int zend_declare_class_constant_double(zend_class_entry *ce, const char *name, size_t name…
306 ZEND_API int zend_declare_class_constant_stringl(zend_class_entry *ce, const char *name, size_t nam…
307 ZEND_API int zend_declare_class_constant_string(zend_class_entry *ce, const char *name, size_t name…
350 #define object_init_ex(arg, ce) _object_init_ex((arg), (ce) ZEND_FILE_LINE_CC TSRMLS_CC) argument
351 #define object_and_properties_init(arg, ce, properties) _object_and_properties_init((arg), (ce), (p… argument
354 ZEND_API int _object_init_ex(zval *arg, zend_class_entry *ce ZEND_FILE_LINE_DC TSRMLS_DC);
355 ZEND_API int _object_and_properties_init(zval *arg, zend_class_entry *ce, HashTable *properties ZEN…