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

1234567891011>>

/external/ltp/include/
H A Dtst_clone.h37 #define clone(...) (use_the_ltp_clone_functions__do_not_use_clone) macro
/external/icu/icu4c/source/common/
H A Dparsepos.cpp19 ParsePosition::clone() const { function in class:ParsePosition
H A Ddtintrv.cpp51 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.java19 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/googletest/googletest/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.cpp27 Transliterator* NullTransliterator::clone(void) const { function in class:NullTransliterator
H A Dtolowtrn.cpp61 Transliterator* LowercaseTransliterator::clone(void) const { function in class:LowercaseTransliterator
H A Dtoupptrn.cpp61 Transliterator* UppercaseTransliterator::clone(void) const { function in class:UppercaseTransliterator
H A Dcurramt.cpp41 UObject* CurrencyAmount::clone() const { function in class:CurrencyAmount
H A Dcurrunit.cpp50 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
/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/swiftshader/third_party/LLVM/utils/lit/lit/
H A DTestingConfig.py82 def clone(self, path): member in class:TestingConfig
/external/v8/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/vulkan-validation-layers/tests/gtest-1.7.0/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-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/autotest/site_utils/lxc/
H A Dutils.py57 def clone(lxc_path, src_name, new_path, dst_name, snapshot): function
64 @param snapshot: Whether or not to create a snapshot clone.
67 # overlayfs is the default clone backend storage. However it is not
70 cmd = (('sudo lxc-clone --lxcpath {lxcpath} --newpath {newpath} '
/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.cpp39 // test clone(), ==, and hashCode()
40 Normalizer *clone=copy.clone(); local
41 if(*clone!=copy) {
42 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()!=copy");
44 // clone must have the same hashCode()
45 if(clone->hashCode()!=copy.hashCode()) {
46 errln("error in Normalizer(Normalizer(CharacterIterator)).clone()->hashCode()!=copy.hashCode()");
48 if(clone->next()!=0x4e3d) {
49 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

Completed in 671 milliseconds

1234567891011>>