| /PHP_5_5/ext/spl/examples/ |
| H A D | keyfilter.inc | 60 // disallow clone
|
| /PHP_5_5/ext/spl/internal/ |
| H A D | filteriterator.inc | 105 // disallow clone
|
| /PHP_5_5/ext/intl/breakiterator/ |
| H A D | codepointiterator_internal.cpp | 91 CodePointBreakIterator* CodePointBreakIterator::clone(void) const function in class:CodePointBreakIterator
|
| H A D | codepointiterator_internal.h | 41 virtual CodePointBreakIterator* clone(void) const;
|
| H A D | breakiterator_class.cpp | 95 /* {{{ clone handler for BreakIterator */ 115 new_biter = bio_orig->biter->clone(); 121 "Could not clone BreakIterator", 0 TSRMLS_CC); 133 zend_throw_exception(NULL, "Cannot clone unconstructed BreakIterator", 0 TSRMLS_CC);
|
| /PHP_5_5/ext/intl/calendar/ |
| H A D | calendar_class.cpp | 78 /* {{{ clone handler for Calendar */ 98 newCalendar = co_orig->ucal->clone(); 104 "Could not clone IntlCalendar", 0 TSRMLS_CC); 112 zend_throw_exception(NULL, "Cannot clone unconstructed IntlCalendar", 0 TSRMLS_CC);
|
| H A D | calendar_methods.cpp | 783 TimeZone *tz = co->ucal->getTimeZone().clone(); 786 "intlcal_get_time_zone: could not clone TimeZone", 0 TSRMLS_CC); 1167 timeZone = TimeZone::getGMT()->clone();
|
| /PHP_5_5/ext/intl/common/ |
| H A D | common_date.cpp | 158 *tz = TimeZone::getGMT()->clone();
|
| /PHP_5_5/ext/intl/dateformat/ |
| H A D | dateformat_attrcpp.cpp | 86 TimeZone *tz_clone = tz.clone(); 188 Calendar *cal_clone = cal->clone(); 235 TimeZone *old_timezone = fetch_datefmt(dfo)->getTimeZone().clone(); 245 cal = cal->clone();
|
| H A D | dateformat_format_object.cpp | 147 timeZone = obj_cal->getTimeZone().clone(); 156 cal = obj_cal->clone();
|
| /PHP_5_5/ext/intl/timezone/ |
| H A D | timezone_class.cpp | 160 timeZone = to->utimezone->clone(); 162 spprintf(&message, 0, "%s: could not clone TimeZone", func); 217 /* {{{ clone handler for TimeZone */ 238 newTimeZone = to_orig->utimezone->clone(); 245 "Could not clone IntlTimeZone", 0 TSRMLS_CC); 253 zend_throw_exception(NULL, "Cannot clone unconstructed IntlTimeZone", 0 TSRMLS_CC);
|
| /PHP_5_5/ext/mbstring/oniguruma/ |
| H A D | regexec.c | 132 OnigCaptureTreeNode *clone, *child; local 134 clone = history_node_new(); 135 CHECK_NULL_RETURN(clone); 137 clone->beg = node->beg; 138 clone->end = node->end; 142 history_tree_free(clone); 145 history_tree_add_child(clone, child); 148 return clone;
|
| /PHP_5_5/Zend/ |
| H A D | zend_objects.c | 204 if (old_object->ce->clone) { 212 zend_call_method_with_0_params(&new_obj, old_object->ce, &old_object->ce->clone, ZEND_CLONE_FUNC_NAME, NULL); 225 /* assume that create isn't overwritten, so when clone depends on the
|
| H A D | zend_objects_API.c | 102 ZEND_API zend_object_handle zend_objects_store_put(void *object, zend_objects_store_dtor_t dtor, zend_objects_free_object_storage_t free_storage, zend_objects_store_clone_t clone TSRMLS_DC) 127 obj->clone = clone; 255 if (obj->clone == NULL) { 256 zend_error(E_CORE_ERROR, "Trying to clone uncloneable object of class %s", Z_OBJCE_P(zobject)->name); 259 obj->clone(obj->object, &new_object TSRMLS_CC); 262 retval.handle = zend_objects_store_put(new_object, obj->dtor, obj->free_storage, obj->clone TSRMLS_CC);
|
| H A D | zend_objects_API.h | 40 zend_objects_store_clone_t clone; member in struct:_zend_object_store_bucket::_store_bucket::_store_object 66 ZEND_API zend_object_handle zend_objects_store_put(void *object, zend_objects_store_dtor_t dtor, zend_objects_free_object_storage_t storage, zend_objects_store_clone_t clone TSRMLS_DC);
|
| H A D | zend_API.c | 2035 zend_function *ctor = NULL, *dtor = NULL, *clone = NULL, *__get = NULL, *__set = NULL, *__unset = NULL, *__isset = NULL, *__call = NULL, *__callstatic = NULL, *__tostring = NULL; local 2149 /* Look for ctor, dtor, clone 2163 clone = reg_function; 2208 scope->clone = clone; 2230 if (clone) { 2231 clone->common.fn_flags |= ZEND_ACC_CLONE; 2232 if (clone->common.fn_flags & ZEND_ACC_STATIC) { 2233 zend_error(error_type, "Constructor %s::%s() cannot be static", scope->name, clone->common.function_name); 2235 clone [all...] |
| /PHP_5_5/ext/com_dotnet/ |
| H A D | com_persist.c | 714 php_com_persist_helper *clone, *object = (php_com_persist_helper*)obj; local 716 clone = emalloc(sizeof(*object)); 717 memcpy(clone, object, sizeof(*object)); 718 *clone_ptr = clone; 720 zend_object_std_init(&clone->std, object->std.ce TSRMLS_CC); 722 if (clone->ipf) { 723 IPersistFile_AddRef(clone->ipf); 725 if (clone->ips) { 726 IPersistStream_AddRef(clone->ips); 728 if (clone [all...] |
| /PHP_5_5/ext/spl/ |
| H A D | spl_directory.h | 52 spl_foreign_clone_t clone; member in struct:_spl_other_handler
|
| /PHP_5_5/ext/xsl/ |
| H A D | xsltprocessor.c | 448 /* check if the stylesheet is using xsl:key, if yes, we have to clone the document _always_ before a transformation */ 485 int clone; local 626 clone = 0; 627 while(params[clone]) { 628 efree(params[clone++]);
|
| /PHP_5_5/ext/dom/ |
| H A D | php_dom.c | 600 if (obj->clone == NULL) { 601 php_error(E_ERROR, "Trying to clone an uncloneable object of class %s", Z_OBJCE_P(zobject)->name); 604 obj->clone(obj->object, &new_object TSRMLS_CC); 606 retval.handle = zend_objects_store_put(new_object, obj->dtor, obj->free_storage, obj->clone TSRMLS_CC); 1169 dom_object *clone; local 1173 clone = dom_objects_set_class(intern->std.ce, 0 TSRMLS_CC); 1182 clone->document = intern->document; 1184 php_libxml_increment_doc_ref((php_libxml_node_object *)clone, cloned_node->doc TSRMLS_CC); 1185 php_libxml_increment_node_ptr((php_libxml_node_object *)clone, cloned_node, (void *)clone TSRMLS_C [all...] |
| /PHP_5_5/ext/simplexml/ |
| H A D | simplexml.c | 1985 php_sxe_object *clone; local 1989 clone = php_sxe_object_new(sxe->zo.ce TSRMLS_CC); 1990 clone->document = sxe->document; 1991 if (clone->document) { 1992 clone->document->refcount++; 1993 docp = clone->document->ptr; 1996 clone->iter.isprefix = sxe->iter.isprefix; 1998 clone->iter.name = xmlStrdup((xmlChar *)sxe->iter.name); 2001 clone->iter.nsprefix = xmlStrdup((xmlChar *)sxe->iter.nsprefix); 2003 clone [all...] |
| /PHP_5_5/ext/opcache/ |
| H A D | zend_persist.c | 612 if (ce->clone) { 613 ce->clone = zend_shared_alloc_get_xlat_entry(ce->clone); 614 ce->clone->op_array.refcount++;
|
| /PHP_5_5/ext/curl/ |
| H A D | interface.c | 1913 zval *clone; local 1936 MAKE_STD_ZVAL(clone); 1937 ch->clone = clone; 2049 /* Keep track of cloned copies to avoid invoking curl destructors for every clone */ 2050 Z_ADDREF_P(ch->clone); 2051 dupch->clone = ch->clone; 2656 if (Z_REFCOUNT_P(ch->clone) <= 1) { 3267 if (Z_REFCOUNT_P(ch->clone) < [all...] |
| H A D | php_curl.h | 183 zval *clone; member in struct:__anon5
|
| /PHP_5_5/ext/date/ |
| H A D | php_date.c | 4388 timelib_time *clone; local 4430 clone = timelib_time_ctor(); 4431 memcpy(clone, dateobj->time, sizeof(timelib_time)); 4433 clone->tz_abbr = strdup(dateobj->time->tz_abbr); 4436 clone->tz_info = dateobj->time->tz_info; 4438 dpobj->start = clone; 4447 clone = timelib_time_clone(dateobj->time); 4448 dpobj->end = clone;
|