Home
last modified time | relevance | path

Searched refs:ce (Results 101 – 125 of 144) sorted by relevance

123456

/PHP-5.5/ext/sqlite3/
H A Dsqlite3.c2241 zend_class_entry ce; local
2256 INIT_CLASS_ENTRY(ce, "SQLite3", php_sqlite3_class_methods);
2257 ce.create_object = php_sqlite3_object_new;
2259 php_sqlite3_sc_entry = zend_register_internal_class(&ce TSRMLS_CC);
2262 INIT_CLASS_ENTRY(ce, "SQLite3Stmt", php_sqlite3_stmt_class_methods);
2263 ce.create_object = php_sqlite3_stmt_object_new;
2265 php_sqlite3_stmt_entry = zend_register_internal_class(&ce TSRMLS_CC);
2268 INIT_CLASS_ENTRY(ce, "SQLite3Result", php_sqlite3_result_class_methods);
2269 ce.create_object = php_sqlite3_result_object_new;
2271 php_sqlite3_result_entry = zend_register_internal_class(&ce TSRMLS_CC);
/PHP-5.5/ext/soap/
H A Dphp_encoding.c475 zend_class_entry *ce = Z_OBJCE_P(data); in master_to_xml_int() local
487 …zend_binary_strncasecmp(ce->name, ce->name_length, Z_STRVAL_PP(tmp), ce->name_length, ce->name_len… in master_to_xml_int()
1489 ce = pce; in to_zval_object_ex()
1497 ce = tmp; in to_zval_object_ex()
1521 object_init_ex(ret, ce); in to_zval_object_ex()
1530 object_init_ex(ret, ce); in to_zval_object_ex()
1564 zobj->ce = ce; in to_zval_object_ex()
1574 object_init_ex(ret, ce); in to_zval_object_ex()
1584 object_init_ex(ret, ce); in to_zval_object_ex()
1647 object_init_ex(ret, ce); in to_zval_object_ex()
[all …]
H A Dsoap.c618 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
643 soap_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
646 INIT_CLASS_ENTRY(ce, PHP_SOAP_VAR_CLASSNAME, soap_var_functions); in PHP_MINIT_FUNCTION()
647 soap_var_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
1274 zend_class_entry **ce; in PHP_METHOD() local
1291 service->soap_class.ce = *ce; in PHP_METHOD()
1361 ft = &service->soap_class.ce->function_table; in PHP_METHOD()
1684 Z_OBJCE_PP(tmp_soap) == service->soap_class.ce) {
1694 object_init_ex(tmp_soap, service->soap_class.ce);
1721 int class_name_len = strlen(service->soap_class.ce->name);
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation7.phpt60 whit????e spa????ce
H A Dstrtolower-win32.phpt269 ce => ee
H A Dhtml_entity_decode_iso8859-15.phpt255 LATIN CAPITAL LETTER I WITH CIRCUMFLEX: Î => ce
256 Î => ce
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestinput4272 ab> <ce
278 ab> <ce
289 abcd ce
295 abcd ce
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-5.5/ext/xsl/
H A Dxsltprocessor.c672 zend_class_entry *curce, **ce; in PHP_FUNCTION() local
681 found = zend_lookup_class(ret_class, ret_class_len, &ce TSRMLS_CC); in PHP_FUNCTION()
682 if ((found != SUCCESS) || !instanceof_function(*ce, curce TSRMLS_CC)) { in PHP_FUNCTION()
689 object_init_ex(return_value, *ce); in PHP_FUNCTION()
/PHP-5.5/ext/spl/
H A Dspl_array.c164 zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_…
293 new_obj_val = spl_array_object_new_ex(old_object->ce, &intern, zobject, 1 TSRMLS_CC); in spl_array_object_clone()
551 zend_property_info *property_info = zend_get_property_info(obj->std.ce, offset, 1 TSRMLS_CC); in spl_array_unset_dimension_ex()
1151 …oaded object of type %s is not compatible with %s", Z_OBJCE_PP(array)->name, intern->std.ce->name); in spl_array_set_array()
1169 zend_object_iterator *spl_array_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_… in spl_array_get_iterator() argument
1183 iterator->intern.ce = ce; in spl_array_get_iterator()
1418 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.c122 …zend_call_method_with_1_params(&this, intern->std.ce, &intern->fptr_get_hash, "getHash", &rv, obj); in spl_object_storage_get_hash()
310 new_obj_val = spl_object_storage_new_ex(old_object->ce, &intern, zobject TSRMLS_CC); in spl_object_storage_clone()
412 if (zo1->ce != spl_ce_SplObjectStorage || zo2->ce != spl_ce_SplObjectStorage) { in spl_object_storage_compare_objects()
/PHP-5.5/ext/com_dotnet/
H A Dcom_iterator.c141 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) in php_com_iter_get() argument
/PHP-5.5/ext/filter/
H A Dfilter.c379 zend_class_entry *ce; in php_zval_filter() local
381 ce = Z_OBJCE_PP(value); in php_zval_filter()
382 if (!ce->__tostring) { in php_zval_filter()
/PHP-5.5/ext/xmlreader/
H A Dphp_xmlreader.c1315 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1323 INIT_CLASS_ENTRY(ce, "XMLReader", xmlreader_functions); in PHP_MINIT_FUNCTION()
1324 ce.create_object = xmlreader_objects_new; in PHP_MINIT_FUNCTION()
1325 xmlreader_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/session/
H A Dsession.c2405 zend_class_entry ce;
2421 INIT_CLASS_ENTRY(ce, PS_IFACE_NAME, php_session_iface_functions);
2422 php_session_iface_entry = zend_register_internal_class(&ce TSRMLS_CC);
2425 INIT_CLASS_ENTRY(ce, PS_SID_IFACE_NAME, php_session_id_iface_functions);
2426 php_session_id_iface_entry = zend_register_internal_class(&ce TSRMLS_CC);
2430 INIT_CLASS_ENTRY(ce, PS_CLASS_NAME, php_session_class_functions);
2431 php_session_class_entry = zend_register_internal_class(&ce TSRMLS_CC);
/PHP-5.5/ext/pdo/
H A Dphp_pdo_driver.h609 zend_class_entry *ce; member
/PHP-5.5/ext/dom/
H A Ddom_iterators.c257 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC… in php_dom_get_iterator() argument
H A Ddocument.c2413 zend_class_entry *basece = NULL, *ce = NULL; in PHP_METHOD() local
2439 ce = *pce; in PHP_METHOD()
2442 if (ce == NULL || instanceof_function(ce, basece TSRMLS_CC)) { in PHP_METHOD()
2446 if (dom_set_doc_classmap(intern->document, basece, ce TSRMLS_CC) == FAILURE) { in PHP_METHOD()
/PHP-5.5/ext/xmlwriter/
H A Dphp_xmlwriter.c1954 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
1962 INIT_CLASS_ENTRY(ce, "XMLWriter", xmlwriter_class_functions); in PHP_MINIT_FUNCTION()
1963 ce.create_object = xmlwriter_object_new; in PHP_MINIT_FUNCTION()
1964 xmlwriter_class_entry_ce = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/mysqli/
H A Dmysqli_nonapi.c662 php_error_docref(NULL TSRMLS_CC, E_WARNING, "[%d] Couldn't fetch %s", i, intern->zo.ce->name);
667 …rror_docref(NULL TSRMLS_CC, E_WARNING, "Invalid object %d or resource %s", i, intern->zo.ce->name);
702 php_error_docref(NULL TSRMLS_CC, E_WARNING, "[%d] Couldn't fetch %s", i, intern->zo.ce->name);
/PHP-5.5/ext/sybase_ct/
H A Dphp_sybase_ct.c1844 zend_class_entry *ce = NULL; in PHP_FUNCTION() local
1853 ce = ZEND_STANDARD_CLASS_DEF_PTR; in PHP_FUNCTION()
1857 ce = Z_OBJCE_P(object); in PHP_FUNCTION()
1874 ce = *pce; in PHP_FUNCTION()
1884 object_and_properties_init(return_value, ce, Z_ARRVAL_P(return_value)); in PHP_FUNCTION()
/PHP-5.5/Zend/
H A Dzend_operators.c1746 …f_function_ex(const zend_class_entry *instance_ce, const zend_class_entry *ce, zend_bool interface… in instanceof_function_ex() argument
1751 if (instanceof_function(instance_ce->interfaces[i], ce TSRMLS_CC)) { in instanceof_function_ex()
1757 if (instance_ce == ce) { in instanceof_function_ex()
1768 …nceof_function(const zend_class_entry *instance_ce, const zend_class_entry *ce TSRMLS_DC) /* {{{ */ in instanceof_function()
1770 return instanceof_function_ex(instance_ce, ce, 0 TSRMLS_CC); in instanceof_function()
/PHP-5.5/ext/zip/
H A Dphp_zip.c1124 intern->zo.ce = class_type; in php_zip_object_new()
2782 zend_class_entry ce; in PHP_MINIT_FUNCTION() local
2793 INIT_CLASS_ENTRY(ce, "ZipArchive", zip_class_functions); in PHP_MINIT_FUNCTION()
2794 ce.create_object = php_zip_object_new; in PHP_MINIT_FUNCTION()
2795 zip_class_entry = zend_register_internal_class(&ce TSRMLS_CC); in PHP_MINIT_FUNCTION()
/PHP-5.5/ext/tidy/
H A Dtidy.c92 zend_class_entry ce; \
93 INIT_CLASS_ENTRY(ce, # classname, tidy_funcs_ ## name); \
94 ce.create_object = tidy_object_new_ ## name; \
95 tidy_ce_ ## name = zend_register_internal_class_ex(&ce, parent, NULL TSRMLS_CC); \

Completed in 157 milliseconds

123456