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

12345678910

/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 DPKIXCertPathChecker.java54 public Object clone() { method in class:PKIXCertPathChecker
56 return super.clone();
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 DPKIXCertPathValidatorResult.java95 public Object clone() { method in class:PKIXCertPathValidatorResult
97 return super.clone();
/libcore/luni/src/main/java/java/net/
H A DPasswordAuthentication.java43 this.password = password.clone();
47 * Gets a clone of the password stored by this instance. The user is
48 * responsible to finalize the returned array if the password clone is no
54 return password.clone();
/libcore/luni/src/main/java/javax/net/ssl/
H A DCertPathTrustManagerParameters.java40 param = (CertPathParameters) parameters.clone();
49 return (CertPathParameters) param.clone();
H A DSSLParameters.java75 return cipherSuites.clone();
84 : cipherSuites.clone());
95 return protocols.clone();
104 : protocols.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/luni/src/main/java/java/text/
H A DCharacterIterator.java40 public Object clone(); method in interface:CharacterIterator
H A DRuleBasedCollator.java167 public Object clone() { method in class:RuleBasedCollator
168 RuleBasedCollator clone = (RuleBasedCollator) super.clone();
169 return clone;
H A DDateFormatSymbols.java168 public Object clone() { method in class:DateFormatSymbols
170 return super.clone();
240 return ampms.clone();
251 return eras.clone();
270 return months.clone();
281 return shortMonths.clone();
292 return shortWeekdays.clone();
303 return weekdays.clone();
347 result[i] = array[i].clone();
394 ampms = data.clone();
[all...]
H A DCollator.java169 public Object clone() { method in class:Collator
171 Collator clone = (Collator) super.clone();
172 clone.icuColl = (RuleBasedCollatorICU) icuColl.clone();
173 return clone;
H A DBreakIterator.java407 * of the returned iterator, it is recommended to first create a clone of
467 public Object clone() { method in class:BreakIterator
469 BreakIterator cloned = (BreakIterator) super.clone();
470 cloned.wrapped = (NativeBreakIterator) wrapped.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
/libcore/luni/src/main/java/java/util/
H A DHashSet.java118 public Object clone() { method in class:HashSet
120 HashSet<E> clone = (HashSet<E>) super.clone();
121 clone.backingMap = (HashMap<E, HashSet<E>>) backingMap.clone();
122 return clone;
/libcore/luni/src/main/java/java/util/jar/
H A DAttributes.java199 map = (Map<Object, Object>) ((HashMap) attrib.map).clone();
356 public Object clone() { method in class:Attributes
357 Attributes clone;
359 clone = (Attributes) super.clone();
363 clone.map = (Map<Object, Object>) ((HashMap) map).clone();
364 return clone;
/libcore/luni/src/main/java/javax/crypto/spec/
H A DGCMParameterSpec.java54 this.iv = iv.clone();
95 return iv.clone();
/libcore/luni/src/main/java/java/security/acl/
H A DAclEntry.java116 Object clone(); method in interface:AclEntry
/libcore/benchmarks/src/benchmarks/regression/
H A DExpensiveObjectsBenchmark.java40 ((DateFormat) df.clone()).format(System.currentTimeMillis());
62 c.clone();
75 dfs.clone();
88 dfs.clone();
101 nf.clone();
134 sdf.clone();
147 gc.clone();

Completed in 447 milliseconds

12345678910