HomeSort by relevance Sort by last modified time
    Searched defs:clone (Results 1 - 25 of 1927) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/PCH/
cxx-exprs.cpp 18 New *clone() { function in class:New
26 return n->clone();
  /external/icu/icu4c/source/common/
parsepos.cpp 17 ParsePosition::clone() const { function in class:ParsePosition
dtintrv.cpp 49 DateInterval::clone() const { function in class:DateInterval
  /external/icu/icu4c/source/i18n/
tolowtrn.cpp 59 Transliterator* LowercaseTransliterator::clone(void) const { function in class:LowercaseTransliterator
toupptrn.cpp 59 Transliterator* UppercaseTransliterator::clone(void) const { function in class:UppercaseTransliterator
curramt.cpp 39 UObject* CurrencyAmount::clone() const { function in class:CurrencyAmount
nultrans.cpp 25 Transliterator* NullTransliterator::clone(void) const { function in class:NullTransliterator
currfmt.cpp 30 fmt = (NumberFormat*) other.fmt->clone();
37 Format* CurrencyFormat::clone() const { function in class:CurrencyFormat
currunit.cpp 48 UObject* CurrencyUnit::clone() const { function in class:CurrencyUnit
measure.cpp 44 unit = (MeasureUnit*) other.unit->clone();
49 UObject *Measure::clone() const { function in class:Measure
tmunit.cpp 28 * Also, Measure can clone and destruct the "unit" pointer.
33 * 3. clone and destructor need to check upon this flag to distinguish on how
105 TimeUnit::clone() const { function in class:TimeUnit
  /external/google-breakpad/src/testing/gtest/samples/
sample2.cc 43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
  /external/protobuf/gtest/samples/
sample2.cc 43 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/
sample2.cc 43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
  /libcore/ojluni/src/main/java/java/security/cert/
CertPathParameters.java 48 Object clone(); method in interface:CertPathParameters
CertPathValidatorResult.java 49 Object clone(); method in interface:CertPathValidatorResult
CertStoreParameters.java 62 * implementation of <code>clone</code> is safer and more robust, as it
65 * However, a shallow copy implementation of <code>clone</code> is more
68 * a shallow copy clone allows an application to release the resources of
79 Object clone(); method in interface:CertStoreParameters
  /ndk/sources/third_party/googletest/googletest/samples/
sample2.cc 43 char* const clone = new char[ len + 1 ]; local
44 memcpy(clone, a_c_string, len + 1);
46 return clone;
  /external/caliper/examples/src/main/java/examples/
ExpensiveObjectsBenchmark.java 39 dfs.clone();
52 nf.clone();
65 sdf.clone();
  /art/tools/dexfuzz/src/dexfuzz/program/
MBranchInsn.java 29 * Clone this MBranchInsn, and clone the wrapped Instruction.
31 public MBranchInsn clone() { method in class:MBranchInsn
33 newInsn.insn = insn.clone();
MInsnWithData.java 29 * Clone this MInsnWithData, and clone the wrapped Instruction.
31 public MInsnWithData clone() { method in class:MInsnWithData
33 newInsn.insn = insn.clone();
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/
Selector.java 19 Object clone(); method in interface:Selector
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
PKIXAttrCertChecker.java 51 * Returns a clone of this object.
55 public abstract Object clone(); method in class:PKIXAttrCertChecker
  /external/guava/guava-gwt/test/com/google/common/collect/testing/
GwtPlatform.java 35 /** 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/
GwtPlatform.java 35 public static <T> T[] clone(T[] array) { method in class:GwtPlatform
36 return (T[]) Array.clone(array);

Completed in 426 milliseconds

1 2 3 4 5 6 7 8 91011>>