Searched defs:clone (Results 276 - 300 of 380) sorted by relevance

<<111213141516

/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DInternationalFormatter.java371 public Object clone() throws CloneNotSupportedException { method in class:InternationalFormatter
373 clone();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java464 * Returns a clone of the receiver with the same selection.
467 * @return a clone of the receiver
470 * and (b) define a <code>clone</code> method
472 public Object clone() throws CloneNotSupportedException { method in class:OptionListModel
473 OptionListModel clone = (OptionListModel)super.clone();
474 clone.value = (BitSet)value.clone();
475 clone.listenerList = new EventListenerList();
476 return clone;
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultTreeSelectionModel.java1159 * Returns a clone of this object with the same selection.
1166 public Object clone() throws CloneNotSupportedException { method in class:DefaultTreeSelectionModel
1167 DefaultTreeSelectionModel clone = (DefaultTreeSelectionModel)
1168 super.clone();
1170 clone.changeSupport = null;
1174 clone.selection = new TreePath[selLength];
1175 System.arraycopy(selection, 0, clone.selection, 0, selLength);
1177 clone.listenerList = new EventListenerList();
1178 clone.listSelectionModel = (DefaultListSelectionModel)
1179 listSelectionModel.clone();
[all...]
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DCubicCurve2D.java1562 * @return a clone of this instance.
1567 public Object clone() { method in class:CubicCurve2D
1569 return super.clone();
H A DQuadCurve2D.java1388 * @return a clone of this instance.
1393 public Object clone() { method in class:QuadCurve2D
1395 return super.clone();
/openjdk7/jdk/src/share/classes/java/security/
H A DSignature.java873 * Returns a clone if the implementation is cloneable.
875 * @return a clone if the implementation is cloneable.
880 public Object clone() throws CloneNotSupportedException { method in class:Signature
882 return super.clone();
936 * Returns a clone if the delegate is cloneable.
938 * @return a clone if the delegate is cloneable.
943 public Object clone() throws CloneNotSupportedException { method in class:Signature.Delegate
946 SignatureSpi sigSpiClone = (SignatureSpi)sigSpi.clone();
/openjdk7/jdk/src/share/classes/java/text/
H A DDecimalFormatSymbols.java477 public Object clone() { method in class:DecimalFormatSymbols
479 return (DecimalFormatSymbols)super.clone();
H A DMessageFormat.java1071 * @return a clone of this instance.
1073 public Object clone() { method in class:MessageFormat
1074 MessageFormat other = (MessageFormat) super.clone();
1076 // clone arrays. Can't do with utility because of bug in Cloneable
1077 other.formats = (Format[]) formats.clone(); // shallow clone
1080 other.formats[i] = (Format)formats[i].clone();
1082 // for primitives or immutables, shallow clone is enough
1083 other.offsets = (int[]) offsets.clone();
1084 other.argumentNumbers = (int[]) argumentNumbers.clone();
[all...]
H A DRuleBasedBreakIterator.java512 public Object clone() { method in class:RuleBasedBreakIterator
513 RuleBasedBreakIterator result = (RuleBasedBreakIterator) super.clone();
515 result.text = (CharacterIterator) text.clone();
848 * you need to change it, clone it first.
1133 public Object clone() { method in class:RuleBasedBreakIterator.SafeCharIterator
1137 copy = (SafeCharIterator) super.clone();
1143 CharacterIterator copyOfBase = (CharacterIterator) base.clone();
/openjdk7/jdk/src/share/classes/java/util/
H A DArrayList.java328 * @return a clone of this <tt>ArrayList</tt> instance
330 public Object clone() { method in class:ArrayList
333 ArrayList<E> v = (ArrayList<E>) super.clone();
737 // Write out size as capacity for behavioural compatibility with clone()
765 // be like clone(), allocate array based upon size not capacity
H A DHashtable.java606 * @return a clone of the hashtable
608 public synchronized Object clone() { method in class:Hashtable
610 Hashtable<K,V> t = (Hashtable<K,V>) super.clone();
614 ? (Entry<K,V>) table[i].clone() : null;
1051 protected Object clone() { method in class:Hashtable.Entry
1053 (next==null ? null : (Entry<K,V>) next.clone()));
H A DIdentityHashMap.java699 public Object clone() { method in class:IdentityHashMap
701 IdentityHashMap<K,V> m = (IdentityHashMap<K,V>) super.clone();
703 m.table = table.clone();
795 // then clone the rest of table for use in future
H A DLinkedList.java995 return (LinkedList<E>) super.clone();
1007 public Object clone() { method in class:LinkedList
1008 LinkedList<E> clone = superClone();
1010 // Put clone into "virgin" state
1011 clone.first = clone.last = null;
1012 clone.size = 0;
1013 clone.modCount = 0;
1015 // Initialize clone with our elements
1017 clone
[all...]
H A DVector.java661 * Returns a clone of this vector. The copy will contain a
662 * reference to a clone of the internal data array, not a reference
665 * @return a clone of this vector
667 public synchronized Object clone() { method in class:Vector
670 Vector<E> v = (Vector<E>) super.clone();
1070 data = elementData.clone();
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArrayList.java280 * @return a clone of this list
282 public Object clone() { method in class:CopyOnWriteArrayList
284 CopyOnWriteArrayList c = (CopyOnWriteArrayList)(super.clone());
/openjdk7/hotspot/src/share/vm/opto/
H A DbuildOopMap.cpp113 void clone( OopFlow *flow, int max_size);
200 //------------------------------clone------------------------------------------
201 void OopFlow::clone( OopFlow *flow, int max_size ) { function in class:OopFlow
642 // from the free_list and clone data.
669 // Copy/clone over the data
670 flow->clone(flows[pred->_pre_order], max_reg);
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java102 this.rdns = (Vector)rdns.clone();
119 public Object clone() { method in class:LdapName
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java1265 * Creates a clone of this <code>RenderingHints</code> object
1268 * @return a clone of this instance.
1270 public Object clone() { method in class:RenderingHints
1273 rh = (RenderingHints) super.clone();
1275 rh.hintmap = (HashMap) hintmap.clone();
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DDataFlavor.java1316 * Returns a clone of this <code>DataFlavor</code>.
1317 * @return a clone of this <code>DataFlavor</code>
1320 public Object clone() throws CloneNotSupportedException { method in class:DataFlavor
1321 Object newObj = super.clone();
1323 ((DataFlavor)newObj).mimeType = (MimeType)mimeType.clone();
1326 } // clone()
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.cpp334 PerfDataList* clone = _all->clone();
335 return clone;
345 PerfDataList* clone = _sampled->clone();
346 return clone;
356 PerfDataList* clone = _constants->clone();
357 return clone;
600 PerfDataList* PerfDataList::clone() { function in class:PerfDataList
[all...]
/openjdk7/jdk/src/share/classes/sun/util/calendar/
H A DCalendarDate.java433 public Object clone() { method in class:CalendarDate
435 return super.clone();
H A DImmutableGregorianDate.java215 public Object clone() { method in class:ImmutableGregorianDate
216 return super.clone();
H A DZoneInfo.java674 zi = (ZoneInfo) zi.clone();
743 public Object clone() { method in class:ZoneInfo
744 ZoneInfo zi = (ZoneInfo) super.clone();
/openjdk7/jdk/test/java/security/Security/signedfirst/
H A Dexp.jar ... DigestException private void computeBlock () public java.lang.Object clone
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/xs/
H A DAbstractDateTimeDV.java1106 DateTimeData dt = (DateTimeData) this.clone();
1122 public Object clone() { method in class:AbstractDateTimeDV.DateTimeData

Completed in 222 milliseconds

<<111213141516