Searched refs:clone (Results 1 - 25 of 312) sorted by relevance

1234567891011>>

/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 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 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 DPKIXCertPathValidatorResult.java134 public Object clone() { method in class:PKIXCertPathValidatorResult
136 return super.clone();
/libcore/ojluni/src/main/java/java/security/spec/
H A DEncodedKeySpec.java56 this.encodedKey = encodedKey.clone();
66 return this.encodedKey.clone();
/libcore/ojluni/src/main/java/javax/net/ssl/
H A DCertPathTrustManagerParameters.java59 this.parameters = (CertPathParameters)parameters.clone();
63 * Return a clone of the CertPathParameters encapsulated by this class.
65 * @return a clone of the CertPathParameters encapsulated by this class.
68 return (CertPathParameters)parameters.clone();
H A DSSLParameters.java119 private static String[] clone(String[] s) { method in class:SSLParameters
120 return (s == null) ? null : s.clone();
131 return clone(cipherSuites);
140 this.cipherSuites = clone(cipherSuites);
151 return clone(protocols);
160 this.protocols = clone(protocols);
/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/ojluni/src/main/java/javax/crypto/spec/
H A DPBEKeySpec.java83 this.password = password.clone();
112 this.password = password.clone();
121 this.salt = salt.clone();
154 this.password = password.clone();
163 this.salt = salt.clone();
199 return password.clone();
213 return salt.clone();
H A DPBEParameterSpec.java56 this.salt = salt.clone();
75 this.salt = salt.clone();
87 return this.salt.clone();
H A DPSource.java97 this.p = p.clone();
105 return (p.length==0? p: p.clone());
/libcore/ojluni/src/main/java/java/net/
H A DPasswordAuthentication.java57 this.password = password.clone();
/libcore/ojluni/src/main/java/java/text/
H A DCharacterIterator.java191 public Object clone(); method in interface:CharacterIterator
H A DCollator.java437 public Object clone() method in class:Collator
441 Collator clone = (Collator) super.clone();
442 clone.icuColl = (android.icu.text.Collator) icuColl.clone();
443 return clone;
/libcore/ojluni/src/main/java/java/security/
H A DSignedObject.java194 return this.signature.clone();
224 verificationEngine.update(this.content.clone());
225 return verificationEngine.verify(this.signature.clone());
242 signingEngine.update(this.content.clone());
243 this.signature = signingEngine.sign().clone();
254 content = ((byte[])fields.get("content", null)).clone();
255 signature = ((byte[])fields.get("signature", null)).clone();
/libcore/ojluni/src/main/java/sun/security/provider/certpath/
H A DState.java56 public Object clone(); method in interface:State
/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/ojluni/src/test/java/util/stream/boottest/java/util/stream/
H A DFlagOpTest.java98 known.clone(),
100 notKnown.clone()));
106 known.clone(),
108 notKnown.clone()));
138 known.clone(),
140 notKnown.clone()));
145 known.clone(),
147 notKnown.clone()));
171 known.clone(),
172 preserve.clone(),
[all...]
/libcore/ojluni/src/main/java/java/beans/
H A DChangeListenerMap.java86 L[] clone = newArray(size + 1);
87 clone[size] = listener;
89 System.arraycopy(array, 0, clone, 0, size);
91 this.map.put(name, clone);
110 L[] clone = newArray(size);
111 System.arraycopy(array, 0, clone, 0, i);
112 System.arraycopy(array, i + 1, clone, i, size - i);
113 this.map.put(name, clone);
199 return listeners.clone();

Completed in 328 milliseconds

1234567891011>>