Home
last modified time | relevance | path

Searched refs:ce (Results 126 – 150 of 175) sorted by relevance

1234567

/PHP-7.2/Zend/
H A Dzend_compile.h317 zend_class_entry *ce; member
332 zend_class_entry *ce; member
782 ZEND_API void zend_cleanup_internal_class_data(zend_class_entry *ce);
805 ZEND_API void zend_initialize_class_data(zend_class_entry *ce, zend_bool nullify_handlers);
H A Dzend_constants.h67 ZEND_API int zend_verify_const_access(zend_class_constant *c, zend_class_entry *ce);
H A Dzend_types.h171 zend_class_entry *ce; member
338 zend_class_entry *ce; member
608 #define Z_OBJCE(zval) (Z_OBJ(zval)->ce)
644 #define Z_CE(zval) (zval).value.ce
/PHP-7.2/ext/pcre/pcrelib/testdata/
H A Dtestoutput4475 ab> <ce
477 0+ ce
487 ab> <ce
489 0+ ce
506 abcd ce
516 abcd ce
H A Dtestinput9328 ab> <ce
334 ab> <ce
345 abcd ce
351 abcd ce
/PHP-7.2/ext/hash/
H A Dhash.c1108 static zend_object* php_hashcontext_create(zend_class_entry *ce) { in php_hashcontext_create() argument
1110 sizeof(php_hashcontext_object) + zend_object_properties_size(ce)); in php_hashcontext_create()
1113 zend_object_std_init(zobj, ce); in php_hashcontext_create()
1173 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1235 INIT_CLASS_ENTRY(ce, "HashContext", php_hashcontext_methods); in PHP_MINIT_FUNCTION()
1236 php_hashcontext_ce = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-7.2/ext/json/
H A Djson_encoder.c448 zend_class_entry *ce = Z_OBJCE_P(val); in php_json_encode_serializable_object() local
467 zend_throw_exception_ex(NULL, 0, "Failed calling %s::jsonSerialize()", ZSTR_VAL(ce->name)); in php_json_encode_serializable_object()
/PHP-7.2/ext/gmp/
H A Dgmp.c382 static inline zend_object *gmp_create_object_ex(zend_class_entry *ce, mpz_ptr *gmpnum_target) /* {{… in gmp_create_object_ex() argument
384 gmp_object *intern = emalloc(sizeof(gmp_object) + zend_object_properties_size(ce)); in gmp_create_object_ex()
386 zend_object_std_init(&intern->std, ce); in gmp_create_object_ex()
387 object_properties_init(&intern->std, ce); in gmp_create_object_ex()
397 static zend_object *gmp_create_object(zend_class_entry *ce) /* {{{ */ in gmp_create_object() argument
400 return gmp_create_object_ex(ce, &gmpnum_dummy); in gmp_create_object()
584 static int gmp_unserialize(zval *object, zend_class_entry *ce, const unsigned char *buf, size_t buf… in gmp_unserialize() argument
/PHP-7.2/ext/wddx/
H A Dwddx.c463 zend_class_entry *ce; in php_wddx_serialize_object() local
467 ce = Z_OBJCE_P(obj); in php_wddx_serialize_object()
468 if (!ce || ce->serialize || ce->unserialize) { in php_wddx_serialize_object()
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_ssa.c151 phi->constraint.type.ce = NULL; in pi_type_mask()
512 zend_class_entry *ce = script ? zend_hash_find_ptr(&script->class_table, lcname) : NULL; in place_essa_pis() local
513 if (!ce) { in place_essa_pis()
514 ce = zend_hash_find_ptr(CG(class_table), lcname); in place_essa_pis()
515 if (!ce || ce->type != ZEND_INTERNAL_CLASS) { in place_essa_pis()
522 pi->constraint.type.ce = ce; in place_essa_pis()
H A Ddfa_pass.c311 if (!use_info->ce || !def_info->ce || !instanceof_function(use_info->ce, def_info->ce)) { in can_elide_return_type_check()
/PHP-7.2/ext/filter/
H A Dfilter.c389 zend_class_entry *ce; in php_zval_filter() local
391 ce = Z_OBJCE_P(value); in php_zval_filter()
392 if (!ce->__tostring) { in php_zval_filter()
/PHP-7.2/ext/com_dotnet/
H A Dcom_iterator.c137 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref) in php_com_iter_get() argument
/PHP-7.2/ext/xmlreader/
H A Dphp_xmlreader.c1307 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1318 INIT_CLASS_ENTRY(ce, "XMLReader", xmlreader_functions); in PHP_MINIT_FUNCTION()
1319 ce.create_object = xmlreader_objects_new; in PHP_MINIT_FUNCTION()
1320 xmlreader_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-7.2/ext/spl/
H A Dspl_array.c167 zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref);
283 new_object = spl_array_object_new_ex(old_object->ce, zobject, 1); in spl_array_object_clone()
1147 ZSTR_VAL(Z_OBJCE_P(array)->name), ZSTR_VAL(intern->std.ce->name)); in spl_array_set_array()
1172 zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{… in spl_array_get_iterator() argument
1187 iterator->ce = ce; in spl_array_get_iterator()
1438 zend_call_method_with_0_params(object, intern->std.ce, &intern->fptr_count, "count", &rv); in spl_array_object_count_elements()
H A Dspl_observer.c123 zend_call_method_with_1_params(this, intern->std.ce, &intern->fptr_get_hash, "getHash", &rv, obj); in spl_object_storage_get_hash()
276 new_object = spl_object_storage_new_ex(old_object->ce, zobject); in spl_object_storage_clone()
367 if (zo1->ce != spl_ce_SplObjectStorage || zo2->ce != spl_ce_SplObjectStorage) { in spl_object_storage_compare_objects()
/PHP-7.2/ext/session/
H A Dsession.c2844 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
2861 INIT_CLASS_ENTRY(ce, PS_IFACE_NAME, php_session_iface_functions); in PHP_MINIT_FUNCTION()
2862 php_session_iface_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
2865 INIT_CLASS_ENTRY(ce, PS_SID_IFACE_NAME, php_session_id_iface_functions); in PHP_MINIT_FUNCTION()
2866 php_session_id_iface_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
2869 INIT_CLASS_ENTRY(ce, PS_UPDATE_TIMESTAMP_IFACE_NAME, php_session_update_timestamp_iface_functions); in PHP_MINIT_FUNCTION()
2870 php_session_update_timestamp_iface_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
2874 INIT_CLASS_ENTRY(ce, PS_CLASS_NAME, php_session_class_functions); in PHP_MINIT_FUNCTION()
2875 php_session_class_entry = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-7.2/ext/opcache/
H A DZendAccelerator.c553 zend_class_entry *ce; in accel_copy_permanent_strings() local
555 ce = (zend_class_entry*)Z_PTR(p->val); in accel_copy_permanent_strings()
561 if (ce->name) { in accel_copy_permanent_strings()
562 ce->name = new_interned_string(ce->name); in accel_copy_permanent_strings()
565 ZEND_HASH_FOREACH_BUCKET(&ce->properties_info, q) { in accel_copy_permanent_strings()
579 ZEND_HASH_FOREACH_BUCKET(&ce->function_table, q) { in accel_copy_permanent_strings()
588 ZEND_HASH_FOREACH_BUCKET(&ce->constants_table, q) { in accel_copy_permanent_strings()
/PHP-7.2/ext/dom/
H A Ddocument.c2238 zend_class_entry *basece = dom_node_class_entry, *ce = NULL; in PHP_METHOD() local
2241 …ters(ZEND_NUM_ARGS(), getThis(), "OCC!", &id, dom_document_class_entry, &basece, &ce) == FAILURE) { in PHP_METHOD()
2245 if (ce == NULL || instanceof_function(ce, basece)) { in PHP_METHOD()
2247 dom_set_doc_classmap(intern->document, basece, ce); in PHP_METHOD()
2251 …zend_throw_error(NULL, "Class %s is not derived from %s.", ZSTR_VAL(ce->name), ZSTR_VAL(basece->na… in PHP_METHOD()
H A Ddom_iterators.c260 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref) /* {{{ */ in php_dom_get_iterator() argument
/PHP-7.2/sapi/phpdbg/
H A Dphpdbg_prompt.c778 zend_call_method_with_0_params(&zv, ex->ce, NULL, "__tostring", &tmp); in phpdbg_handle_exception()
791 …ND_LONG_FMT "\"", "Uncaught %s in %s on line " ZEND_LONG_FMT, ZSTR_VAL(ex->ce->name), ZSTR_VAL(fil… in phpdbg_handle_exception()
1104 if (i < EG(objects_store).top && *obj && IS_OBJ_VALID(*obj) && (*obj)->ce == zend_ce_generator) { in PHPDBG_COMMAND()
1121 if (obj && IS_OBJ_VALID(obj) && obj->ce == zend_ce_generator) { in PHPDBG_COMMAND()
1790 ZSTR_VAL(exception->ce->name), ZSTR_VAL(file), line, in phpdbg_execute_ex()
H A Dphpdbg.c552 zend_class_entry *ce; in PHP_FUNCTION() local
605 ZEND_HASH_FOREACH_STR_KEY_PTR(EG(class_table), name, ce) { in PHP_FUNCTION()
606 if (ce->type == ZEND_USER_CLASS) { in PHP_FUNCTION()
607 if (zend_hash_exists(files, ce->info.user.filename)) { in PHP_FUNCTION()
608 ZEND_HASH_FOREACH_PTR(&ce->function_table, func) { in PHP_FUNCTION()
/PHP-7.2/ext/standard/tests/strings/
H A Dstrtolower-win32.phpt269 ce => ee
/PHP-7.2/ext/xmlwriter/
H A Dphp_xmlwriter.c1842 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1849 INIT_CLASS_ENTRY(ce, "XMLWriter", xmlwriter_class_functions); in PHP_MINIT_FUNCTION()
1850 ce.create_object = xmlwriter_object_new; in PHP_MINIT_FUNCTION()
1851 xmlwriter_class_entry_ce = zend_register_internal_class(&ce); in PHP_MINIT_FUNCTION()
/PHP-7.2/ext/pdo/
H A Dphp_pdo_driver.h627 zend_class_entry *ce; member

Completed in 290 milliseconds

1234567