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

1234

/libcore/luni/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.java95 public Object clone() { method in class:PKIXCertPathValidatorResult
97 return super.clone();
/libcore/luni/src/test/java/tests/api/javax/net/ssl/
H A DCertPathTrustManagerParametersTest.java75 public Object clone() { method in class:MyCertPathParameters
/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();
/libcore/luni/src/main/java/java/lang/
H A DObject.java143 * in contrast, would also recursively clone nested objects. A subclass that
144 * needs to implement this kind of cloning should call {@code super.clone()}
153 protected Object clone() throws CloneNotSupportedException { method in class:Object
H A DEnum.java131 protected final Object clone() throws CloneNotSupportedException { method in class:Enum
/libcore/luni/src/main/java/java/security/
H A DMessageDigestSpi.java148 public Object clone() throws CloneNotSupportedException { method in class:MessageDigestSpi
149 return super.clone();
H A DSignatureSpi.java309 public Object clone() throws CloneNotSupportedException { method in class:SignatureSpi
311 return super.clone();
/libcore/luni/src/main/java/java/security/acl/
H A DAclEntry.java116 Object clone(); method in interface:AclEntry
/libcore/luni/src/main/java/java/text/
H A DCharacterIterator.java40 public Object clone(); method in interface:CharacterIterator
H A DRuleBasedCollator.java360 public Object clone() { method in class:RuleBasedCollator
361 RuleBasedCollator clone = (RuleBasedCollator) super.clone();
362 return clone;
H A DFormat.java75 public Object clone() { method in class:Format
77 return super.clone();
H A DBreakIterator.java423 * of the returned iterator, it is recommended to first create a clone of
483 public Object clone() { method in class:BreakIterator
485 BreakIterator cloned = (BreakIterator) super.clone();
486 cloned.wrapped = (NativeBreakIterator) wrapped.clone();
/libcore/luni/src/main/java/javax/crypto/
H A DMacSpi.java143 public Object clone() throws CloneNotSupportedException { method in class:MacSpi
144 return super.clone();
/libcore/luni/src/test/java/tests/security/cert/
H A DCertStoreSpiTest.java78 public Object clone() { method in class:CertStoreSpiTest.tmpCRLSelector
86 public Object clone() { method in class:CertStoreSpiTest.tmpCertSelector
/libcore/luni/src/main/java/java/util/
H A DMapEntry.java42 public Object clone() { method in class:MapEntry
44 return super.clone();
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyMessageDigest2.java70 public Object clone() throws CloneNotSupportedException { method in class:MyMessageDigest2

Completed in 409 milliseconds

1234