Searched refs:clone (Results 176 - 200 of 1037) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/java/lang/
H A DObject.java159 * x.clone() != x</pre></blockquote>
163 * x.clone().getClass() == x.getClass()</pre></blockquote>
168 * x.clone().equals(x)</pre></blockquote>
172 * {@code super.clone}. If a class and all of its superclasses (except
174 * {@code x.clone().getClass() == x.getClass()}.
179 * by {@code super.clone} before returning it. Typically, this means
184 * the case that no fields in the object returned by {@code super.clone}
187 * The method {@code clone} for class {@code Object} performs a
192 * the return type of the {@code clone} method of an array type {@code T[]}
201 * {@code Cloneable}, so calling the {@code clone} metho
213 protected native Object clone() throws CloneNotSupportedException; method in class:Object
[all...]
/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DDESedeKeySpec.java98 return (byte[])this.key.clone();
/openjdk7/jdk/src/share/classes/javax/imageio/plugins/bmp/
H A DBMPImageWriteParam.java81 compressionTypes = BMPConstants.compressionTypeNames.clone();
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanConstructorInfo.java110 signature = signature.clone();
119 * <p>Returns a shallow clone of this instance. The clone is
120 * obtained by simply calling <tt>super.clone()</tt>, thus calling
122 * <tt>Object.clone()</tt>. No deeper cloning of any internal
128 public Object clone () { method in class:MBeanConstructorInfo
130 return super.clone() ;
154 return signature.clone();
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DAttributes.java177 Object clone(); method in interface:Attributes
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DBasicControl.java116 return value == null ? null : value.clone();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/pool/
H A DPoolCleaner.java44 this.pools = (Pool[]) pools.clone();
/openjdk7/hotspot/test/compiler/6833129/
H A DTest.java27 * @summary Object.clone() and Arrays.copyOf ignore coping with -XX:+DeoptimizeALot
40 int [] src_clone = src.clone();
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DAuthorizationData.java70 entry[i] = (AuthorizationDataEntry) new_entries[i].clone();
81 public Object clone() { method in class:AuthorizationData
89 (AuthorizationDataEntry) entry[i].clone();
182 return (AuthorizationDataEntry)entry[i].clone();
/openjdk7/jdk/src/share/classes/sun/security/pkcs11/wrapper/
H A DCK_AES_CTR_PARAMS.java49 this.cb = cb.clone();
/openjdk7/jdk/src/share/classes/sun/security/pkcs12/
H A DMacData.java103 this.digest = digest.clone();
133 this.digest = digest.clone();
170 return this.encoded.clone();
195 return this.encoded.clone();
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.java189 public Object clone() { method in class:AdaptableX509CertSelector
191 (AdaptableX509CertSelector)super.clone();
193 copy.startDate = (Date)startDate.clone();
197 copy.endDate = (Date)endDate.clone();
/openjdk7/jdk/test/java/util/EnumMap/
H A DProperEntrySetOnClone.java50 EnumMap<Test, String> map2 = map1.clone();
/openjdk7/jdk/test/java/util/TreeMap/
H A DClone.java41 TreeMap<String,Object> m2 = (TreeMap<String,Object>)m1.clone();
44 // iterate over the clone (m2) and we should get "one" and "three"
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DFileMatch.java210 return (lastModifiedAfter==null)?null:(Date)lastModifiedAfter.clone();
222 (lastModifiedAfter==null)?null:(Date)lastModifiedAfter.clone();
235 return (lastModifiedBefore==null)?null:(Date)lastModifiedBefore.clone();
247 (lastModifiedBefore==null)?null:(Date)lastModifiedBefore.clone();
/openjdk7/langtools/test/tools/javac/code/
H A DArrayClone.java33 /** The qualifying type in the code for array.clone() should be the array type. */
51 String match = "[ \t]+[0-9]+:[ \t]+invokevirtual[ \t]+#[0-9]+[ \t]+// Method \"\\[Ljava/lang/String;\".clone:\\(\\)Ljava/lang/Object;";
61 args.clone();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DNamespaceSupport.java482 : (HashMap) that.prefixTable.clone();
487 : (HashMap) that.uriTable.clone();
491 : (HashMap) that.elementNameTable.clone();
495 : (HashMap) that.attributeNameTable.clone();
501 prefixTable = (HashMap) that.prefixTable.clone();
502 uriTable = (HashMap) that.uriTable.clone();
503 elementNameTable = (HashMap) that.elementNameTable.clone();
504 attributeNameTable = (HashMap) that.attributeNameTable.clone();
513 : (ArrayList) that.declarations.clone();
712 prefixTable = (HashMap) prefixTable.clone();
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DDeprecated.java77 * references (shallow copy). Use clone() for a physical copy.
164 Deprecated c = (Deprecated)clone();
167 c.bytes = (byte[])bytes.clone();
H A DSynthetic.java171 Synthetic c = (Synthetic)clone();
174 c.bytes = (byte[])bytes.clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DFieldGenOrMethodGen.java130 public Object clone() { method in class:FieldGenOrMethodGen
132 return super.clone();
H A DLineNumberGen.java124 public Object clone() { method in class:LineNumberGen
126 return super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DCachedNodeListIterator.java99 ClonedNodeListIterator clone = new ClonedNodeListIterator(this);
100 return clone;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntStack.java204 * Returns clone of current IntStack
206 * @return clone of current IntStack
208 public Object clone() method in class:IntStack
211 return (IntStack) super.clone();
H A DObjectStack.java207 * Returns clone of current ObjectStack
209 * @return clone of current ObjectStack
211 public Object clone() method in class:ObjectStack
214 return (ObjectStack) super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DIteratorPool.java72 return (DTMIterator)m_orig.clone();
96 return (DTMIterator)m_orig.clone();

Completed in 184 milliseconds

1234567891011>>