Searched refs:clone (Results 476 - 500 of 1037) sorted by relevance

<<11121314151617181920>>

/openjdk7/hotspot/src/share/vm/adlc/
H A Ddfa.cpp333 Expr *total_cost = icost->clone(); // icost + cost
676 Expr *Expr::clone() const { function in class:Expr
1002 p->_cost_lb = cost->clone();
1003 p->_cost_ub = cost->clone();
1009 p->_cost_lb = cost->clone();
1013 p->_cost_ub = cost->clone();
1021 p->_cost_lb = cost->clone();
1025 p->_cost_ub = cost->clone();
1029 p->_cost_lb = cost->clone();
1030 p->_cost_ub = cost->clone();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DSAXImpl.java386 NodeValueIterator clone = (NodeValueIterator)super.clone();
387 clone._isRestartable = false;
388 clone._source = _source.cloneIterator();
389 clone._value = _value;
390 clone._op = _op;
391 return clone.reset();
1350 NamespaceWildcardIterator clone =
1351 (NamespaceWildcardIterator) super.clone();
1353 clone
[all...]
/openjdk7/jdk/src/share/classes/java/util/
H A DGregorianCalendar.java1521 GregorianCalendar gc = (GregorianCalendar) clone();
1591 GregorianCalendar gc = (GregorianCalendar) clone();
1700 BaseCalendar.Date d = (BaseCalendar.Date) date.clone();
1778 gc = (GregorianCalendar) gc.clone();
1818 gc = (GregorianCalendar) gc.clone();
1835 BaseCalendar.Date d = (BaseCalendar.Date) date.clone();
1843 gc = (GregorianCalendar) clone();
1880 gc = (GregorianCalendar) clone();
1941 public Object clone() method in class:GregorianCalendar
1943 GregorianCalendar other = (GregorianCalendar) super.clone();
[all...]
H A DTimeZone.java612 return (TimeZone) getDefaultRef().clone();
617 * method doesn't create a clone.
629 // Don't clone here.
790 * @return a clone of this <code>TimeZone</code>
792 public Object clone() method in class:TimeZone
795 TimeZone other = (TimeZone) super.clone();
H A DResourceBundle.java601 public Object clone() { method in class:ResourceBundle.CacheKey
603 CacheKey clone = (CacheKey) super.clone();
605 clone.loaderRef = new LoaderReference(loaderRef.get(),
606 referenceQueue, clone);
609 clone.cause = null;
610 return clone;
1397 CacheKey constKey = (CacheKey) cacheKey.clone();
1628 CacheKey key = (CacheKey) cacheKey.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DAttrImpl.java237 AttrImpl clone = (AttrImpl) super.cloneNode(deep);
240 if (!clone.hasStringValue()) {
243 clone.value = null;
247 // is a deep clone or not
250 clone.appendChild(child.cloneNode(true));
253 clone.isSpecified(true);
254 return clone;
/openjdk7/jdk/src/share/classes/java/text/
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...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DXMLCatalogResolver.java132 ? (String[]) fCatalogsList.clone() : null;
147 ? (String[]) catalogs.clone() : null;
537 fCatalogsList = (catalogs != null) ? (String[]) catalogs.clone() : null;
/openjdk7/jdk/src/share/classes/java/awt/image/
H A DAffineTransformOp.java108 this.xform = (AffineTransform) xform.clone();
151 this.xform = (AffineTransform)xform.clone();
519 return (AffineTransform) xform.clone();
H A DCropImageFilter.java82 Hashtable<Object,Object> p = (Hashtable<Object,Object>)props.clone();
H A DSinglePixelPackedSampleModel.java152 this.bitMasks = (int[]) bitMasks.clone();
250 return bitSizes.clone();
279 return (int[])bitOffsets.clone();
286 return (int[])bitMasks.clone();
/openjdk7/jdk/src/share/classes/java/security/
H A DUnresolvedPermission.java173 this.certs = certs.clone();
195 this.certs = certs.clone();
479 return (certs == null) ? null : certs.clone();
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DConnectorImpl.java55 defaults.put(argument.name(), (Argument)argument.clone());
209 public Object clone() { method in class:ConnectorImpl.ArgumentImpl
211 return super.clone();
213 // Object should always support clone
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DFieldOrMethod.java79 * references (shallow copy). Use clone() for a physical copy.
215 c = (FieldOrMethod)clone();
H A DInnerClass.java219 return (InnerClass)clone();
H A DLineNumberTable.java232 LineNumberTable c = (LineNumberTable)clone();
H A DLocalVariable.java257 return (LocalVariable)clone();
H A DLocalVariableTable.java188 LocalVariableTable c = (LocalVariableTable)clone();
H A DLocalVariableTypeTable.java135 LocalVariableTypeTable c = (LocalVariableTypeTable)clone();
H A DStackMapEntry.java184 return (StackMapEntry)clone();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xpath/regex/
H A DMatch.java55 public synchronized Object clone() { method in class:Match
/openjdk7/jaxp/src/javax/xml/datatype/
H A DXMLGregorianCalendar.java1061 public abstract Object clone(); method in class:XMLGregorianCalendar
/openjdk7/jdk/src/share/classes/javax/sound/midi/
H A DShortMessage.java437 * @return a clone of this instance.
439 public Object clone() { method in class:ShortMessage
/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DAudioFileFormat.java251 ret = (Map<String,Object>) (properties.clone());
/openjdk7/jdk/src/share/classes/sun/awt/datatransfer/
H A DClipboardTransferable.java149 return (DataFlavor[])flavors.clone();

Completed in 88 milliseconds

<<11121314151617181920>>