| /PHP_5_3/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 ); 139 zend_class_entry ce; local 142 INIT_CLASS_ENTRY( ce, "Collator", Collator_class_functions ); 143 ce.create_object = Collator_object_create; 144 Collator_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/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 ); 189 zend_class_entry ce; local 192 INIT_CLASS_ENTRY( ce, "IntlDateFormatter", IntlDateFormatter_class_functions ); 193 ce.create_object = IntlDateFormatter_object_create; 194 IntlDateFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/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 ); 198 zend_class_entry ce; local 201 INIT_CLASS_ENTRY( ce, "NumberFormatter", NumberFormatter_class_functions ); 202 ce.create_object = NumberFormatter_object_create; 203 NumberFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/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_3/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 ); 164 zend_class_entry ce; local 167 INIT_CLASS_ENTRY( ce, "MessageFormatter", MessageFormatter_class_functions ); 168 ce.create_object = MessageFormatter_object_create; 169 MessageFormatter_ce_ptr = zend_register_internal_class( &ce TSRMLS_CC );
|
| /PHP_5_3/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_3/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 ); 418 zend_class_entry ce; local 420 INIT_CLASS_ENTRY( ce, "ResourceBundle", ResourceBundle_class_functions ); 422 ce.create_object = ResourceBundle_object_create; 423 ce.get_iterator = resourcebundle_get_iterator; 425 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_3/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 | com_saproxy.c | 555 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC) argument
|
| H A D | php_com_dotnet_internal.h | 44 zend_class_entry *ce; member in struct:_php_com_dotnet_object 59 zend_class_entry *ce = Z_OBJCE_P(zv); local 60 return strcmp("com", ce->name) == 0 || 61 strcmp("dotnet", ce->name) == 0 || 62 strcmp("variant", ce->name) == 0; 79 zend_object_value php_com_object_new(zend_class_entry *ce TSRMLS_DC); 86 zend_object_iterator *php_com_saproxy_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC); 182 zend_object_iterator *php_com_iter_get(zend_class_entry *ce, zval *object, int by_ref TSRMLS_DC);
|
| /PHP_5_3/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_3/ext/filter/ |
| H A D | filter.c | 377 zend_class_entry *ce; local 379 ce = Z_OBJCE_PP(value); 380 if (!ce->__tostring) {
|
| /PHP_5_3/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_3/ext/spl/ |
| H A D | php_spl.c | 67 zend_class_entry **ce; local 77 found = zend_hash_find(EG(class_table), lc_name, len +1, (void **) &ce); 80 found = zend_lookup_class(name, len, &ce TSRMLS_CC); 87 return *ce; 95 zend_class_entry *parent_class, *ce; local 108 if (NULL == (ce = spl_find_ce_by_name(Z_STRVAL_P(obj), Z_STRLEN_P(obj), autoload TSRMLS_CC))) { 112 ce = Z_OBJCE_P(obj); 116 parent_class = ce->parent; 130 zend_class_entry *ce; local 141 if (NULL == (ce 367 zend_class_entry *ce; member in struct:__anon177 [all...] |
| 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); 124 char * spl_gen_private_prop_name(zend_class_entry *ce, cha argument [all...] |
| /PHP_5_3/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_3/ext/xsl/ |
| H A D | php_xsl.c | 156 zend_class_entry ce; local 161 REGISTER_XSL_CLASS(ce, "XSLTProcessor", NULL, php_xsl_xsltprocessor_class_functions, xsl_xsltprocessor_class_entry); 230 zend_class_entry *ce; local 257 ce = xsl_xsltprocessor_class_entry; 260 object_init_ex(wrapper, ce);
|
| /PHP_5_3/Zend/ |
| H A D | zend_closures.c | 310 zend_class_entry ce; local 312 INIT_CLASS_ENTRY(ce, "Closure", closure_functions); 313 zend_ce_closure = zend_register_internal_class(&ce TSRMLS_CC);
|
| H A D | zend_constants.c | 282 zend_class_entry *ce = NULL; local 313 ce = scope; 326 ce = scope->parent; 332 ce = EG(called_scope); 339 ce = zend_fetch_class(class_name, class_name_len, flags TSRMLS_CC); 341 if (retval && ce) { 342 if (zend_hash_find(&ce->constants_table, constant_name, const_name_len+1, (void **) &ret_constant) != SUCCESS) { 348 } else if (!ce) { 401 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) 34 object->ce = ce; 52 zend_function *destructor = object ? object->ce->destructor : NULL; 63 if (object->ce != EG(scope)) { 64 zend_class_entry *ce = object->ce; local 68 ce->name, 77 zend_class_entry *ce = object->ce; local [all...] |
| H A D | zend_opcode.c | 180 zend_class_entry *ce = *pce; local 182 if (--ce->refcount > 0) { 185 switch (ce->type) { 187 zend_hash_destroy(&ce->default_properties); 188 zend_hash_destroy(&ce->properties_info); 189 zend_hash_destroy(&ce->default_static_members); 190 efree(ce->name); 191 zend_hash_destroy(&ce->function_table); 192 zend_hash_destroy(&ce->constants_table); 193 if (ce 219 zend_class_add_ref(zend_class_entry **ce) argument [all...] |
| /PHP_5_3/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...] |