Searched defs:clone (Results 1 - 25 of 842) sorted by last modified time

1234567891011>>

/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/
H A DXMPMeta.java1141 Object clone(); method in interface:XMPMeta
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
H A DXMPMetaImpl.java1231 * Performs a deep clone of the XMPMeta-object
1233 * @see java.lang.Object#clone()
1235 public Object clone() method in class:XMPMetaImpl
1237 XMPNode clonedTree = (XMPNode) tree.clone();
H A DXMPNode.java418 * Performs a <b>deep clone</b> of the node and the complete subtree.
420 * @see java.lang.Object#clone()
422 public Object clone() method in class:XMPNode
443 * Performs a <b>deep clone</b> of the complete subtree (children and
455 destination.addChild((XMPNode) child.clone());
461 destination.addQualifier((XMPNode) qualifier.clone());
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/options/
H A DSerializeOptions.java382 * @return Returns clone of this SerializeOptions-object with the same options set.
385 public Object clone() throws CloneNotSupportedException method in class:SerializeOptions
387 SerializeOptions clone;
390 clone = new SerializeOptions(getOptions());
391 clone.setBaseIndent(baseIndent);
392 clone.setIndent(indent);
393 clone.setNewline(newline);
394 clone.setPadding(padding);
395 return clone;
/external/valgrind/main/exp-bbv/tests/amd64-linux/
H A Dclone_test.S22 clone: label
23 mov $56,%rax # clone syscall
25 # Note, clone syscall is different than the glibc implementation
27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
/external/valgrind/main/exp-bbv/tests/x86-linux/
H A Dclone_test.S22 clone: label
23 mov $120,%eax # clone syscall
25 # Note, clone syscall is different than the glibc implementation
27 # int clone (flags, stack_pointer,parent_tidptr,child_tidptr,tls)
/external/valgrind/main/exp-sgcheck/
H A Dsg_main.c447 /* no. clone it, store the clone and return the clone's
449 GlobalBlock* clone = sg_malloc( "di.sg_main.gpGB.1", local
451 tl_assert(clone);
452 *clone = *orig;
453 VG_(addToFM)( globalBlock_set, (UWord)clone, 0 );
454 return clone;
/external/valgrind/main/helgrind/
H A Dlibhb_core.c1871 /* Make a clone of 'vts', sizing the new array to exactly match the
1875 /* Make a clone of 'vts' with the thrids in 'thrids' removed. The new
1877 'thridsToDel' is an array of ThrIDs to be omitted in the clone, and
1978 VTS* clone = VTS__new(who, nTS); local
1979 clone->id = vts->id;
1980 clone->sizeTS = nTS;
1981 clone->usedTS = nTS;
1984 clone->ts[i] = vts->ts[i];
1986 tl_assert( *(ULong*)(&clone->ts[clone
2515 VTS* clone = VTS__clone( "libhb.vts_set_focaa.1", cand ); local
[all...]
/external/tinyxml/
H A Dtinyxml.cpp854 // Clone the attributes, then clone the children.
873 TiXmlElement* clone = new TiXmlElement( Value() ); local
874 if ( !clone )
877 CopyTo( clone );
878 return clone;
1127 TiXmlDocument* clone = new TiXmlDocument(); local
1128 if ( !clone )
1131 CopyTo( clone );
1132 return clone;
1316 TiXmlComment* clone local
1376 TiXmlText* clone = 0; local
1476 TiXmlDeclaration* clone = new TiXmlDeclaration(); local
1508 TiXmlUnknown* clone = new TiXmlUnknown(); local
[all...]
/external/strace/test/
H A DAndroid.mk35 clone.c \
66 clone-expected-output := 'write(1, "original\\n",'
/external/srec/portable/include/
H A DArrayList.h144 * Returns a clone of the ArrayList.
147 * @param clone [out] Clone of the ArrayList (created externally, populated internally)
151 ESR_ReturnCode(*clone)(struct ArrayList_t* self, struct ArrayList_t* clone); member in struct:ArrayList_t
274 * Returns a clone of the ArrayList.
277 * @param clone [out] Clone of the ArrayList (created externally, populated internally)
281 PORTABLE_API ESR_ReturnCode ArrayListClone(ArrayList* self, ArrayList* clone);
/external/srec/portable/src/
H A DArrayList.c117 ESR_ReturnCode ArrayListClone(ArrayList* self, ArrayList* clone) argument
124 return self->clone(self, clone);
H A DArrayListImpl.c52 impl->Interface.clone = &ArrayList_Clone;
216 ESR_ReturnCode ArrayList_Clone(ArrayList* self, ArrayList* clone) argument
222 CHK(rc, clone->removeAll(clone));
227 CHK(rc, clone->add(clone, element));
H A DPFileSystem.c445 LCHAR clone[P_PATH_MAX]; local
455 LSTRCPY(clone, path);
456 lstrtrim(clone);
458 CHKLOG(rc, PFileSystemGetAbsolutePath(clone, &len2));
461 lastSlash = LSTRRCHR(clone, L('/'));
468 else if (lastSlash < clone + LSTRLEN(clone) - 1)
472 if (LSTRLEN(clone) > *len)
474 *len = LSTRLEN(clone);
478 LSTRCPY(path, clone);
[all...]
/external/srec/shared/include/
H A DInt8ArrayList.h102 * Returns a clone of the Int8ArrayList.
104 * @param clone [out] Clone of the Int8ArrayList (created externally, populated
107 ESR_ReturnCode(*clone)(struct Int8ArrayList_t* self, struct Int8ArrayList_t* clone); member in struct:Int8ArrayList_t
211 * Returns a clone of the Int8ArrayList.
213 * @param clone [out] Clone of the Int8ArrayList (created externally, populated
216 ESR_SHARED_API ESR_ReturnCode Int8ArrayListClone(Int8ArrayList* self, Int8ArrayList* clone);
/external/srec/shared/src/
H A DHashMapImpl.c89 /* Not found, clone the key and insert it. */
90 LCHAR *clone = (LCHAR *) MALLOC(sizeof(LCHAR) * (LSTRLEN(key) + 1), MTAG); local
91 if (clone == NULL) return ESR_OUT_OF_MEMORY;
92 LSTRCPY(clone, key);
93 if ((rc = PHashTablePutValue(impl->table, clone, value, NULL)) != ESR_SUCCESS)
95 FREE(clone);
H A DInt8ArrayList.c106 ESR_ReturnCode Int8ArrayListClone(Int8ArrayList* self, Int8ArrayList* clone) argument
113 return self->clone(self, clone);
H A DInt8ArrayListImpl.c47 impl->Interface.clone = &Int8ArrayList_Clone;
185 ESR_ReturnCode Int8ArrayList_Clone(Int8ArrayList* self, Int8ArrayList* clone) argument
191 CHK(rc, clone->removeAll(clone));
196 CHK(rc, clone->add(clone, element));
H A DSessionTypeImpl.c346 int* clone; local
349 clone = MALLOC(sizeof(int), MTAG);
350 if (clone == NULL)
356 *clone = value;
357 return self->setProperty(self, name, clone, TYPES_INT);
364 asr_uint16_t* clone; local
367 clone = MALLOC(sizeof(asr_uint16_t), MTAG);
368 if (clone == NULL)
374 *clone = value;
375 return self->setProperty(self, name, clone, TYPES_UINT16_
382 int* clone; local
400 float* clone; local
418 ESR_BOOL* clone; local
436 LCHAR* clone; local
[all...]
/external/srec/srec/Nametag/include/
H A DSR_NametagDefs.h82 ESR_ReturnCode (*clone)(const struct SR_Nametag_t* self, struct SR_Nametag_t** result); member in struct:SR_Nametag_t
/external/skia/src/core/
H A DSkPicture.cpp174 SkPicture* SkPicture::clone() const { function in class:SkPicture
176 this->clone(clonedPicture, 1);
180 void SkPicture::clone(SkPicture* pictures, int count) const { function in class:SkPicture
184 SkPicture* clone = &pictures[i]; local
186 clone->needsNewGenID();
187 clone->fWidth = fWidth;
188 clone->fHeight = fHeight;
189 SkDELETE(clone->fPlayback);
199 /* The alternative to doing this is to have a clone method on the paint and have it
211 // FIXME: Put this on the stack inside SkPicture::clone
[all...]
/external/skia/src/gpu/gl/
H A DGrGLInterface.cpp108 GrGLInterface* clone = SkNEW(GrGLInterface); local
109 clone->fStandard = interface->fStandard;
110 clone->fExtensions = interface->fExtensions;
111 clone->fFunctions = interface->fFunctions;
113 clone->fCallback = interface->fCallback;
114 clone->fCallbackData = interface->fCallbackData;
116 return clone;
/external/skia/tools/
H A DPictureRenderer.cpp705 CloneData(SkPicture* clone, SkCanvas* canvas, SkTDArray<SkRect>& rects, int start, int end, argument
708 : fClone(clone)
808 fPicture->clone(fPictureClones, fNumThreads - 1);
950 SkPicture* clone = fPicture->clone(); variable
951 SkSafeUnref(clone); variable
H A Drender_pictures_main.cpp29 DEFINE_int32(clone, 0, "Clone the picture n times before rendering.");
190 SkPicture* clone = picture->clone(); local
192 picture = clone;
428 SkDebugf("--clone must be >= 0. Was %i\n", FLAGS_clone);
/external/smack/asmack-master/lib/
H A Dhttpclient-4.1.3.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/apache/ org/apache/http/ org/apache/http/cookie/ ...

Completed in 4286 milliseconds

1234567891011>>