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

1234

/libcore/luni/src/main/java/java/security/cert/
H A DX509CertSelector.java408 : (Date) certificateValid.clone();
420 : (Date) certificateValid.clone();
436 this.privateKeyValid = (Date) privateKeyValid.clone();
449 return (Date) privateKeyValid.clone();
1334 public Object clone() { method in class:X509CertSelector
1338 result = (X509CertSelector) super.clone();
/libcore/luni/src/main/java/java/text/
H A DNumberFormat.java171 public Object clone() { method in class:NumberFormat
172 return super.clone();
H A DSimpleDateFormat.java350 formatData = (DateFormatSymbols) value.clone();
416 public Object clone() { method in class:SimpleDateFormat
417 SimpleDateFormat clone = (SimpleDateFormat) super.clone();
418 clone.formatData = (DateFormatSymbols) formatData.clone();
419 clone.defaultCenturyStart = new Date(defaultCenturyStart.getTime());
420 return clone;
826 return (Date) defaultCenturyStart.clone();
835 return (DateFormatSymbols) formatData.clone();
[all...]
H A DDateFormat.java291 public Object clone() { method in class:DateFormat
292 DateFormat clone = (DateFormat) super.clone();
293 clone.calendar = (Calendar) calendar.clone();
294 clone.numberFormat = (NumberFormat) numberFormat.clone();
295 return clone;
/libcore/luni/src/main/java/java/util/
H A DIdentityHashMap.java94 public Object clone() { method in class:IdentityHashMap.IdentityHashMapEntry
95 return super.clone();
762 public Object clone() { method in class:IdentityHashMap
764 IdentityHashMap<K, V> cloneHashMap = (IdentityHashMap<K, V>) super.clone();
H A DLinkedList.java461 public Object clone() { method in class:LinkedList
463 LinkedList<E> l = (LinkedList<E>) super.clone();
H A DSimpleTimeZone.java298 public Object clone() { method in class:SimpleTimeZone
299 SimpleTimeZone zone = (SimpleTimeZone) super.clone();
H A DHashMap.java201 * suitable for use by constructors and pseudo-constructors (i.e., clone,
228 @Override public Object clone() { method in class:HashMap
235 result = (HashMap<K, V>) super.clone();
240 // Restore clone to empty state, retaining our capacity and threshold
254 * This method is called from the pseudo-constructors (clone and readObject)
438 * (i.e., clone, readObject). In particular, this method does not check to
H A DHashtable.java177 * suitable for use by constructors and pseudo-constructors (i.e., clone,
206 @Override public synchronized Object clone() { method in class:Hashtable
213 result = (Hashtable<K, V>) super.clone();
218 // Restore clone to empty state, retaining our capacity and threshold
396 * (i.e., clone, readObject). In particular, this method does not check to
H A DCalendar.java813 public Object clone() { method in class:Calendar
815 Calendar clone = (Calendar) super.clone();
816 clone.fields = fields.clone();
817 clone.isSet = isSet.clone();
818 clone.zone = (TimeZone) zone.clone();
819 return clone;
[all...]
H A DTreeMap.java155 @Override public Object clone() { method in class:TreeMap
157 @SuppressWarnings("unchecked") // super.clone() must return the same type
158 TreeMap<K, V> map = (TreeMap<K, V>) super.clone();
/libcore/luni/src/test/java/tests/api/java/math/
H A DBigIntegerTest.java1047 myBigInteger = (MyBigInteger) myBigInteger.clone();
1054 public Object clone() { method in class:BigIntegerTest.MyBigInteger
1056 return super.clone();
/libcore/luni/src/main/java/libcore/icu/
H A DNativeDecimalFormat.java162 @Override public Object clone() { method in class:NativeDecimalFormat
164 NativeDecimalFormat clone = (NativeDecimalFormat) super.clone();
165 clone.address = cloneImpl(address);
166 clone.lastPattern = lastPattern;
167 clone.negPrefNull = negPrefNull;
168 clone.negSuffNull = negSuffNull;
169 clone.posPrefNull = posPrefNull;
170 clone.posSuffNull = posSuffNull;
171 return clone;
[all...]
/libcore/luni/src/main/java/java/util/concurrent/
H A DConcurrentSkipListMap.java334 * Initializes or resets state. Needed by constructors, clone,
335 * clear, readObject. and ConcurrentSkipListSet.clone.
1408 public ConcurrentSkipListMap<K,V> clone() { method in class:ConcurrentSkipListMap
1411 ConcurrentSkipListMap<K,V> clone =
1412 (ConcurrentSkipListMap<K,V>) super.clone();
1413 clone.initialize();
1414 clone.buildFromSorted(this);
1415 return clone;
1423 * given sorted map. Call only from constructor or clone

Completed in 1746 milliseconds

1234