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

12345

/libcore/ojluni/src/main/java/java/security/cert/
H A DCertPathParameters.java48 Object clone(); method in interface:CertPathParameters
H A DCertPathValidatorResult.java49 Object clone(); method in interface:CertPathValidatorResult
H A DCertStoreParameters.java62 * implementation of {@code clone} is safer and more robust, as it
65 * However, a shallow copy implementation of {@code clone} is more
68 * a shallow copy clone allows an application to release the resources of
79 Object clone(); method in interface:CertStoreParameters
H A DCRLSelector.java65 Object clone(); method in interface:CRLSelector
H A DCertPathBuilderResult.java67 Object clone(); method in interface:CertPathBuilderResult
H A DCertSelector.java66 Object clone(); method in interface:CertSelector
H A DCollectionCertStoreParameters.java120 public Object clone() { method in class:CollectionCertStoreParameters
122 return super.clone();
H A DLDAPCertStoreParameters.java120 * (simply calls {@code Object.clone()}). This may be changed in a
126 public Object clone() { method in class:LDAPCertStoreParameters
128 return super.clone();
H A DPKIXCertPathChecker.java55 * <b>must</b> override the {@link #clone clone} method if necessary in
180 * Returns a clone of this object. Calls the {@code Object.clone()}
188 public Object clone() { method in class:PKIXCertPathChecker
190 return super.clone();
H A DPKIXCertPathValidatorResult.java134 public Object clone() { method in class:PKIXCertPathValidatorResult
136 return super.clone();
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DState.java56 public Object clone(); method in interface:State
H A DForwardState.java226 * Note that this is a SMART clone. Not all fields are fully copied,
231 @SuppressWarnings("unchecked") // Safe casts assuming clone() works correctly
232 public Object clone() { method in class:ForwardState
234 ForwardState clonedState = (ForwardState) super.clone();
236 /* clone checkers, if cloneable */
238 forwardCheckers.clone();
244 li.set((PKIXCertPathChecker)checker.clone());
254 = (HashSet<GeneralNameInterface>)subjectNamesTraversed.clone();
/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/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DCertPathTrustManagerParametersTest.java75 public Object clone() { method in class:MyCertPathParameters
/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/ojluni/src/main/java/java/security/
H A DMessageDigestSpi.java192 * Returns a clone if the implementation is cloneable.
194 * @return a clone if the implementation is cloneable.
199 public Object clone() throws CloneNotSupportedException { method in class:MessageDigestSpi
201 return super.clone();
/libcore/ojluni/src/main/java/java/security/acl/
H A DAclEntry.java151 * @return a clone of this ACL entry.
153 public Object clone(); method in interface:AclEntry
/libcore/ojluni/src/main/java/java/text/
H A DCharacterIterator.java191 public Object clone(); method in interface:CharacterIterator
H A DRuleBasedCollator.java388 public Object clone() { method in class:RuleBasedCollator
390 return super.clone();
/libcore/ojluni/src/main/java/javax/crypto/
H A DMacSpi.java139 * Returns a clone if the implementation is cloneable.
141 * @return a clone if the implementation is cloneable.
146 public Object clone() throws CloneNotSupportedException { method in class:MacSpi
148 return super.clone();
/libcore/luni/src/main/java/libcore/reflect/
H A DTypes.java46 public static Type[] getTypeArray(ListOfTypes types, boolean clone) { argument
51 return clone ? result.clone() : result;
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMyMessageDigest2.java70 public Object clone() throws CloneNotSupportedException { method in class:MyMessageDigest2
/libcore/luni/src/test/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DMacSpiTest.java179 mSpi.clone();
185 mSpi1.clone();
212 mSpi2.clone();
228 public Object clone() throws CloneNotSupportedException { method in class:MyMacSpi1
/libcore/ojluni/src/main/java/java/lang/
H A DEnum.java167 protected final Object clone() throws CloneNotSupportedException { method in class:Enum
H A DObject.java181 * x.clone() != x</pre></blockquote>
185 * x.clone().getClass() == x.getClass()</pre></blockquote>
190 * x.clone().equals(x)</pre></blockquote>
194 * {@code super.clone}. If a class and all of its superclasses (except
196 * {@code x.clone().getClass() == x.getClass()}.
201 * by {@code super.clone} before returning it. Typically, this means
206 * the case that no fields in the object returned by {@code super.clone}
209 * The method {@code clone} for class {@code Object} performs a
214 * the return type of the {@code clone} method of an array type {@code T[]}
223 * {@code Cloneable}, so calling the {@code clone} metho
235 protected Object clone() throws CloneNotSupportedException { method in class:Object
[all...]

Completed in 2656 milliseconds

12345