Searched defs:clone (Results 1 - 25 of 796) sorted by relevance

1234567891011>>

/external/icu/icu4c/source/common/
H A Dparsepos.cpp17 ParsePosition::clone() const { function in class:ParsePosition
H A Ddtintrv.cpp49 DateInterval::clone() const { function in class:DateInterval
/external/clang/test/PCH/
H A Dcxx-exprs.cpp18 New *clone() { function in class:New
26 return n->clone();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
H A DSelector.java8 Object clone(); method in interface:Selector
/external/google-breakpad/src/testing/gtest/samples/
H A Dsample2.cc43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
/external/icu/icu4c/source/i18n/
H A Dnultrans.cpp25 Transliterator* NullTransliterator::clone(void) const { function in class:NullTransliterator
H A Dtolowtrn.cpp59 Transliterator* LowercaseTransliterator::clone(void) const { function in class:LowercaseTransliterator
H A Dtoupptrn.cpp59 Transliterator* UppercaseTransliterator::clone(void) const { function in class:UppercaseTransliterator
H A Dcurramt.cpp39 UObject* CurrencyAmount::clone() const { function in class:CurrencyAmount
H A Dcurrunit.cpp48 UObject* CurrencyUnit::clone() const { function in class:CurrencyUnit
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DAcceptEncodingList.java44 public Object clone() { method in class:AcceptEncodingList
H A DAcceptLanguageList.java46 public Object clone() { method in class:AcceptLanguageList
H A DAcceptList.java49 public Object clone() { method in class:AcceptList
/external/protobuf/gtest/samples/
H A Dsample2.cc43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreParameters.java35 public Object clone() { method in class:MyCertStoreParameters
37 return super.clone();
/external/apache-http/src/org/apache/http/client/utils/
H A DCloneUtils.java36 * A collection of utilities to workaround limitations of Java clone framework.
45 public static Object clone(final Object obj) throws CloneNotSupportedException { method in class:CloneUtils
53 m = clazz.getMethod("clone", (Class[]) null);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DX509CertStoreSelector.java39 public Object clone() method in class:X509CertStoreSelector
41 X509CertStoreSelector selector = (X509CertStoreSelector)super.clone();
H A DX509CollectionStoreParameters.java37 * Returns a shallow clone. The returned contents are not copied, so adding
40 * @return a shallow clone.
42 public Object clone() method in class:X509CollectionStoreParameters
/external/guava/guava-gwt/test/com/google/common/collect/testing/
H A DGwtPlatform.java35 /** See {@link Platform#clone(Object[])} */
36 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
37 return array.clone();
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/super/com/google/common/collect/testing/
H A DGwtPlatform.java35 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
36 return (T[]) Array.clone(array);
/external/icu/icu4c/source/test/intltest/
H A Dtstnrapi.cpp37 // test clone(), ==, and hashCode()
38 Normalizer *clone=copy.clone(); local
39 if(*clone!=copy) {
40 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
42 // clone must have the same hashCode()
43 if(clone->hashCode()!=copy.hashCode()) {
44 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
46 if(clone->next()!=0x4e3d) {
47 dataerrln("error in Normalizer(Normalizer(CharacterIterator)).clone()
[all...]
/external/jmdns/src/javax/jmdns/
H A DServiceEvent.java62 * @see java.lang.Object#clone()
65 public ServiceEvent clone() { method in class:ServiceEvent
67 return (ServiceEvent) super.clone();
69 // clone is supported
/external/jmonkeyengine/engine/src/core/com/jme3/font/
H A DRectangle.java58 public Rectangle clone(){ method in class:Rectangle
60 return (Rectangle) super.clone();
/external/jmonkeyengine/engine/src/terrain/com/jme3/terrain/geomipmap/lodcalc/
H A DLodCalculatorFactory.java49 public LodCalculatorFactory clone(); method in interface:LodCalculatorFactory
H A DLodThreshold.java53 public LodThreshold clone(); method in interface:LodThreshold

Completed in 2073 milliseconds

1234567891011>>