| /PHP_5_4/ext/intl/collator/ |
| H A D | collator_class.c | 62 zend_class_entry *ce TSRMLS_DC ) 69 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 70 object_properties_init(&intern->zo, ce); 140 zend_class_entry ce; local 143 INIT_CLASS_ENTRY( ce, "Collator", Collator_class_functions ); 144 ce.create_object = Collator_object_create; 145 Collator_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/dateformat/ |
| H A D | dateformat_class.c | 60 zend_object_value IntlDateFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 67 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 68 object_properties_init(&intern->zo, ce); 190 zend_class_entry ce; local 193 INIT_CLASS_ENTRY( ce, "IntlDateFormatter", IntlDateFormatter_class_functions ); 194 ce.create_object = IntlDateFormatter_object_create; 195 IntlDateFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/formatter/ |
| H A D | formatter_class.c | 59 zend_object_value NumberFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 66 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 67 object_properties_init(&intern->zo, ce); 199 zend_class_entry ce; local 202 INIT_CLASS_ENTRY( ce, "NumberFormatter", NumberFormatter_class_functions ); 203 ce.create_object = NumberFormatter_object_create; 204 NumberFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/locale/ |
| H A D | locale_class.c | 97 zend_class_entry ce; local 100 INIT_CLASS_ENTRY( ce, "Locale", Locale_class_functions ); 101 ce.create_object = NULL; 102 Locale_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/msgformat/ |
| H A D | msgformat_class.c | 57 zend_object_value MessageFormatter_object_create(zend_class_entry *ce TSRMLS_DC) 64 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 65 object_properties_init(&intern->zo, ce); 165 zend_class_entry ce; local 168 INIT_CLASS_ENTRY( ce, "MessageFormatter", MessageFormatter_class_functions ); 169 ce.create_object = MessageFormatter_object_create; 170 MessageFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/normalizer/ |
| H A D | normalizer_class.c | 56 zend_class_entry ce; local 59 INIT_CLASS_ENTRY( ce, "Normalizer", Normalizer_class_functions ); 60 ce.create_object = NULL; 61 Normalizer_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/ext/intl/resourcebundle/ |
| H A D | resourcebundle_class.c | 58 static zend_object_value ResourceBundle_object_create( zend_class_entry *ce TSRMLS_DC ) 65 zend_object_std_init( (zend_object *) rb, ce TSRMLS_CC ); 66 object_properties_init((zend_object *) rb, ce); 427 zend_class_entry ce; local 429 INIT_CLASS_ENTRY( ce, "ResourceBundle", ResourceBundle_class_functions ); 431 ce.create_object = ResourceBundle_object_create; 432 ce.get_iterator = resourcebundle_get_iterator; 434 ResourceBundle_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| H A D | resourcebundle_iterator.c | 156 zend_object_iterator *resourcebundle_get_iterator( zend_class_entry *ce, zval *object, int byref TSRMLS_DC ) argument
|
| /PHP_5_4/ext/intl/spoofchecker/ |
| H A D | spoofchecker_class.c | 56 zend_class_entry *ce TSRMLS_DC) 63 zend_object_std_init(&intern->zo, ce TSRMLS_CC); 64 object_properties_init(&intern->zo, ce); 151 zend_class_entry ce; local 154 INIT_CLASS_ENTRY(ce, "Spoofchecker", Spoofchecker_class_functions); 155 ce.create_object = Spoofchecker_object_create; 156 Spoofchecker_ce_ptr = zend_register_internal_class(&ce TSRMLS_CC);
|
| /PHP_5_4/ext/intl/transliterator/ |
| H A D | transliterator_class.c | 123 zend_class_entry *ce TSRMLS_DC ) 130 zend_object_std_init( &intern->zo, ce TSRMLS_CC ); 132 zend_hash_copy( intern->zo.properties, &(ce->default_properties ), 135 object_properties_init( (zend_object*) intern, ce ); 398 zend_class_entry ce; local 401 INIT_CLASS_ENTRY( ce, "Transliterator", Transliterator_class_functions ); 402 ce.create_object = Transliterator_object_create; 403 Transliterator_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_4/Zend/ |
| H A D | zend_constants.c | 320 zend_class_entry *ce = NULL; local 351 ce = scope; 364 ce = scope->parent; 370 ce = EG(called_scope); 377 ce = zend_fetch_class(class_name, class_name_len, flags TSRMLS_CC); 379 if (retval && ce) { 380 if (zend_hash_find(&ce->constants_table, constant_name, const_name_len+1, (void **) &ret_constant) != SUCCESS) { 386 } else if (!ce) { 439 zval_update_constant_ex(ret_constant, (void*)1, ce TSRMLS_CC);
|
| H A D | zend_interfaces.h | 37 zend_class_entry *ce; member in struct:_zend_user_iterator 59 ZEND_API zval *zend_user_it_new_iterator(zend_class_entry *ce, zval *object TSRMLS_DC); 60 ZEND_API zend_object_iterator *zend_user_it_get_new_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 65 ZEND_API int zend_user_unserialize(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC); 68 ZEND_API int zend_class_unserialize_deny(zval **object, zend_class_entry *ce, const unsigned char *buf, zend_uint buf_len, zend_unserialize_data *data TSRMLS_DC);
|
| H A D | zend_objects.c | 29 ZEND_API void zend_object_std_init(zend_object *object, zend_class_entry *ce TSRMLS_DC) 31 object->ce = ce; 52 for (i = 0; i < object->ce->default_properties_count; i++) { 63 zend_function *destructor = object ? object->ce->destructor : NULL; 74 if (object->ce != EG(scope)) { 75 zend_class_entry *ce = object->ce; local 79 ce->name, 88 zend_class_entry *ce local [all...] |
| H A D | zend_opcode.c | 152 static inline void cleanup_user_class_data(zend_class_entry *ce TSRMLS_DC) 157 if (ce->ce_flags & ZEND_HAS_STATIC_IN_METHODS) { 158 zend_hash_apply(&ce->function_table, (apply_func_t) zend_cleanup_function_data_full TSRMLS_CC); 160 if (ce->static_members_table) { 163 for (i = 0; i < ce->default_static_members_count; i++) { 164 if (ce->static_members_table[i]) { 165 zval *p = ce->static_members_table[i]; 166 ce->static_members_table[i] = NULL; 170 ce->static_members_table = NULL; 174 static inline void cleanup_internal_class_data(zend_class_entry *ce TSRMLS_D 216 _destroy_zend_class_traits_info(zend_class_entry *ce) argument 267 zend_class_entry *ce = *pce; local 340 zend_class_add_ref(zend_class_entry **ce) argument [all...] |
| /PHP_5_4/ext/com_dotnet/ |
| H A D | com_extension.c | 347 zend_class_entry ce, *tmp; local 352 INIT_CLASS_ENTRY(ce, "com_exception", NULL); 353 php_com_exception_class_entry = zend_register_internal_class_ex(&ce, zend_exception_get_default(TSRMLS_C), NULL TSRMLS_CC); 357 INIT_CLASS_ENTRY(ce, "com_safearray_proxy", NULL); 358 php_com_saproxy_class_entry = zend_register_internal_class(&ce TSRMLS_CC); 363 INIT_CLASS_ENTRY(ce, "variant", NULL); 364 ce.create_object = php_com_object_new; 365 php_com_variant_class_entry = zend_register_internal_class(&ce TSRMLS_CC); 368 INIT_CLASS_ENTRY(ce, "com", NULL); 369 ce [all...] |
| H A D | com_iterator.c | 142 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument
|
| H A D | php_com_dotnet_internal.h | 41 zend_class_entry *ce; member in struct:_php_com_dotnet_object 56 zend_class_entry *ce = Z_OBJCE_P(zv); local 57 return strcmp("com", ce->name) == 0 || 58 strcmp("dotnet", ce->name) == 0 || 59 strcmp("variant", ce->name) == 0; 76 zend_object_value php_com_object_new(zend_class_entry *ce TSRMLS_DC); 83 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 179 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
|
| /PHP_5_4/ext/dom/ |
| H A D | dom_iterators.c | 270 zend_object_iterator *php_dom_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) /* {{{ */ argument
|
| /PHP_5_4/ext/json/ |
| H A D | json.c | 85 zend_class_entry ce; local 87 INIT_CLASS_ENTRY(ce, "JsonSerializable", json_serializable_interface); 88 php_json_serializable_ce = zend_register_internal_interface(&ce TSRMLS_CC); 548 zend_class_entry *ce = Z_OBJCE_P(val); local 567 zend_throw_exception_ex(NULL, 0 TSRMLS_CC, "Failed calling %s::jsonSerialize()", ce->name);
|
| /PHP_5_4/ext/mysqli/ |
| H A D | mysqli_result_iterator.c | 47 zend_object_iterator *php_mysqli_result_get_iterator(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument
|
| /PHP_5_4/ext/pdo/ |
| H A D | pdo.c | 360 zend_class_entry ce; local 373 INIT_CLASS_ENTRY(ce, "PDOException", NULL); 375 pdo_exception_ce = zend_register_internal_class_ex(&ce, php_pdo_get_exception_base(0 TSRMLS_CC), NULL TSRMLS_CC);
|
| /PHP_5_4/ext/spl/ |
| H A D | spl_functions.c | 33 zend_class_entry ce; local 35 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), functions); 36 *ppce = zend_register_internal_interface(&ce TSRMLS_CC); 43 zend_class_entry ce; local 45 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), function_list); 46 *ppce = zend_register_internal_class(&ce TSRMLS_CC); 58 zend_class_entry ce; local 60 INIT_CLASS_ENTRY_EX(ce, class_name, strlen(class_name), function_list); 61 *ppce = zend_register_internal_class_ex(&ce, parent_ce, NULL TSRMLS_CC); 136 char * spl_gen_private_prop_name(zend_class_entry *ce, cha argument [all...] |
| /PHP_5_4/ext/standard/ |
| H A D | type.c | 211 zend_class_entry *ce; local 216 ce = Z_OBJCE_PP(arg); 217 if (!strcmp(ce->name, INCOMPLETE_CLASS)) {
|
| /PHP_5_4/ext/xsl/ |
| H A D | php_xsl.c | 157 zend_class_entry ce; local 162 REGISTER_XSL_CLASS(ce, "XSLTProcessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltprocessor_class_entry); 231 zend_class_entry *ce; local 258 ce = xsl_xsltprocessor_class_entry; 261 object_init_ex(wrapper, ce);
|
| /PHP_5_4/ext/pcre/pcrelib/ |
| H A D | pcre_study.c | 100 pcre_uchar *cs, *ce; local 382 ce = cs = (pcre_uchar *)PRIV(find_bracket)(startcode, utf, GET2(cc, 1)); 384 do ce += GET(ce, 1); while (*ce == OP_ALT); 385 if (cc > cs && cc < ce) 434 cs = ce = (pcre_uchar *)startcode + GET(cc, 1); 435 do ce += GET(ce, 1); while (*ce [all...] |