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

123456

/dalvik/libcore/security/src/main/java/java/security/cert/
H A DCertPathParameters.java33 public Object clone(); method in interface:CertPathParameters
H A DCertPathValidatorResult.java32 public Object clone(); method in interface:CertPathValidatorResult
H A DCertStoreParameters.java31 public Object clone(); method in interface:CertStoreParameters
H A DCRLSelector.java37 public Object clone(); method in interface:CRLSelector
H A DCertPathBuilderResult.java31 public Object clone(); method in interface:CertPathBuilderResult
H A DCertSelector.java37 public Object clone(); method in interface:CertSelector
H A DCollectionCertStoreParameters.java73 public Object clone() { method in class:CollectionCertStoreParameters
75 return super.clone();
H A DLDAPCertStoreParameters.java86 public Object clone() { method in class:LDAPCertStoreParameters
88 return super.clone();
H A DPKIXCertPathChecker.java54 public Object clone() { method in class:PKIXCertPathChecker
56 return super.clone();
H A DPKIXCertPathValidatorResult.java98 public Object clone() { method in class:PKIXCertPathValidatorResult
100 return super.clone();
/dalvik/libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
H A DMyCertStoreParameters.java36 public Object clone() { method in class:MyCertStoreParameters
38 return super.clone();
/dalvik/libcore/x-net/src/test/java/tests/api/javax/net/ssl/
H A DCertPathTrustManagerParametersTest.java93 public Object clone() { method in class:MyCertPathParameters
/dalvik/libcore/crypto/src/main/java/javax/crypto/
H A DMacSpi.java143 public Object clone() throws CloneNotSupportedException { method in class:MacSpi
144 return super.clone();
/dalvik/libcore/luni-kernel/src/main/java/java/lang/
H A DObject.java66 * in contrast, would also recursively clone nested objects. A subclass that
67 * needs to implement this kind of cloning should call {@code super.clone()}
77 protected Object clone() throws CloneNotSupportedException { method in class:Object
/dalvik/libcore/luni-kernel/src/main/java/java/lang/reflect/
H A DReflectionAccessImpl.java37 public Method clone(Method method) { method in class:ReflectionAccessImpl
41 public Field clone(Field field) { method in class:ReflectionAccessImpl
/dalvik/libcore/luni-kernel/src/main/java/org/apache/harmony/kernel/vm/
H A DReflectionAccess.java31 * Gets a clone of the given method.
33 * @param method non-null; the method to clone
34 * @return non-null; the clone
36 public Method clone(Method method); method in interface:ReflectionAccess
39 * Gets a clone of the given field.
41 * @param field non-null; the field to clone
42 * @return non-null; the clone
44 public Field clone(Field field); method in interface:ReflectionAccess
47 * Gets a clone of the given method, where the clone ha
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DMessageDigestSpi.java151 public Object clone() throws CloneNotSupportedException { method in class:MessageDigestSpi
152 return super.clone();
/dalvik/libcore/security/src/main/java/java/security/acl/
H A DAclEntry.java116 Object clone(); method in interface:AclEntry
/dalvik/libcore/security/src/main/java/org/bouncycastle/x509/
H A DAttributeCertificateIssuer.java135 * @see java.security.cert.CertSelector#clone()
137 public Object clone() method in class:AttributeCertificateIssuer
/dalvik/libcore/security/src/test/java/tests/security/cert/
H A DCertStoreSpiTest.java108 public Object clone() { method in class:CertStoreSpiTest.tmpCRLSelector
116 public Object clone() { method in class:CertStoreSpiTest.tmpCertSelector
/dalvik/libcore/text/src/main/java/java/text/
H A DCharacterIterator.java40 public Object clone(); method in interface:CharacterIterator
H A DRuleBasedCollator.java381 public Object clone() { method in class:RuleBasedCollator
382 RuleBasedCollator clone = (RuleBasedCollator) super.clone();
383 return clone;
/dalvik/libcore-disabled/sound/src/main/java/javax/sound/midi/
H A DMetaMessage.java48 public Object clone() { method in class:MetaMessage
H A DMidiMessage.java38 public abstract Object clone(); method in class:MidiMessage
48 return data.clone();
H A DSysexMessage.java36 public Object clone() { method in class:SysexMessage

Completed in 316 milliseconds

123456