| /PHP_TRUNK/ext/intl/breakiterator/ |
| H A D | codepointiterator_internal.cpp | 91 CodePointBreakIterator* CodePointBreakIterator::clone(void) const function in class:CodePointBreakIterator
|
| /PHP_TRUNK/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_TRUNK/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_TRUNK/ext/spl/ |
| H A D | spl_directory.h | 52 spl_foreign_clone_t clone; member in struct:_spl_other_handler
|
| /PHP_TRUNK/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_TRUNK/Zend/ |
| 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.h | 495 union _zend_function *clone; member in struct:_zend_class_entry
|
| 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...] |
| H A D | zend_vm_def.h | 3424 zend_function *clone; variable 3439 clone = ce ? ce->clone : NULL; 3443 zend_error_noreturn(E_ERROR, "Trying to clone an uncloneable object of class %s", ce->name); 3445 zend_error_noreturn(E_ERROR, "Trying to clone an uncloneable object"); 3449 if (ce && clone) { 3450 if (clone->op_array.fn_flags & ZEND_ACC_PRIVATE) { 3456 } else if ((clone->common.fn_flags & ZEND_ACC_PROTECTED)) { 3459 if (UNEXPECTED(!zend_check_protected(zend_get_function_root_class(clone), EG(scope)))) {
|
| H A D | zend_vm_execute.h | 2518 zend_function *clone; local 2533 clone = ce ? ce->clone : NULL; 2537 zend_error_noreturn(E_ERROR, "Trying to clone an uncloneable object of class %s", ce->name); 2539 zend_error_noreturn(E_ERROR, "Trying to clone an uncloneable object"); 2543 if (ce && clone) { 2544 if (clone->op_array.fn_flags & ZEND_ACC_PRIVATE) { 2550 } else if ((clone->common.fn_flags & ZEND_ACC_PROTECTED)) { 2553 if (UNEXPECTED(!zend_check_protected(zend_get_function_root_class(clone), EG(scope)))) { 7826 zend_function *clone; local 13156 zend_function *clone; local 24218 zend_function *clone; local 30779 zend_function *clone; local [all...] |
| /PHP_TRUNK/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_TRUNK/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_TRUNK/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_TRUNK/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;
|