Searched defs:clone (Results 176 - 200 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/openmbean/
H A DTabularDataSupport.java86 // field cannot be final because of clone method
659 * Returns a clone of this <code>TabularDataSupport</code> instance:
660 * the clone is obtained by calling <tt>super.clone()</tt>, and then cloning the underlying map.
661 * Only a shallow clone of the underlying map is made, i.e. no cloning of the indexes and row values is made as they are immutable.
665 TabularDataSupport and overrode Object clone(). It would not
666 override the new clone(). */
667 public Object clone() { method in class:TabularDataSupport
669 TabularDataSupport c = (TabularDataSupport) super.clone();
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleUnresolved.java268 * @return an independent clone.
270 public Object clone() { method in class:RoleUnresolved
/openjdk7/jdk/src/share/classes/javax/naming/
H A DCompositeName.java210 * methods such as clone(), getPrefix(), getSuffix().
334 public Object clone() { method in class:CompositeName
H A DCompoundName.java170 * methods such as clone(), getPrefix(), getSuffix().
272 * The clone and this compound name share the same syntax.
276 public Object clone() { method in class:CompoundName
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DBasicAttributes.java141 public Object clone() { method in class:BasicAttributes
144 attrset = (BasicAttributes)super.clone();
148 attrset.attrs = (Hashtable)attrs.clone();
/openjdk7/jdk/src/share/classes/javax/naming/ldap/
H A DLdapName.java139 // this.rdns = rdns.clone();
611 public Object clone() { method in class:LdapName
/openjdk7/hotspot/src/share/vm/libadt/
H A Dvectset.hpp58 VectorSet(const VectorSet &s) : Set(s._set_arena) {slamin(s);} // Set clone; deep-copy guts
59 Set &operator =(const Set &s); // Set clone; deep-copy guts
60 VectorSet &operator =(const VectorSet &s) // Set clone; deep-copy guts
63 Set &clone(void) const { return *(new VectorSet(*this)); } function in class:VectorSet
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/IPAcl/
H A DAclEntryImpl.java90 * @return a clone of this ACL entry.
92 public Object clone() { method in class:AclEntryImpl
/openjdk7/jdk/src/share/classes/com/sun/jndi/cosnaming/
H A DCNNameParser.java313 public Object clone() { method in class:CNNameParser.CNCompoundName
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeType.java108 parameters = (MimeTypeParameterList)mtpl.clone();
211 return (MimeTypeParameterList)parameters.clone();
340 * Returns a clone of this object.
341 * @return a clone of this object
344 public Object clone() { method in class:MimeType
347 newObj = (MimeType)super.clone();
350 newObj.parameters = (MimeTypeParameterList)parameters.clone();
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java94 result = (CharSet)(result.clone());
710 public Object clone() { method in class:CharSet
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DHmacCore.java79 this.md = (MessageDigest)other.md.clone();
81 this.k_ipad = (byte[])other.k_ipad.clone();
82 this.k_opad = (byte[])other.k_opad.clone();
236 public Object clone() throws CloneNotSupportedException { method in class:HmacCore
247 core = (HmacCore)base.core.clone();
271 public Object clone() throws CloneNotSupportedException { method in class:HmacCore.HmacSHA256
283 core = (HmacCore)base.core.clone();
307 public Object clone() throws CloneNotSupportedException { method in class:HmacCore.HmacSHA384
319 core = (HmacCore)base.core.clone();
343 public Object clone() throw method in class:HmacCore.HmacSHA512
[all...]
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDQTMarkerSegment.java87 protected Object clone() { method in class:DQTMarkerSegment
88 DQTMarkerSegment newGuy = (DQTMarkerSegment) super.clone();
93 newGuy.tables.add(table.clone());
143 newGuy = (Qtable) luma.clone();
271 protected Object clone() { method in class:DQTMarkerSegment.Qtable
274 newGuy = (Qtable) super.clone();
277 newGuy.data = (int []) data.clone();
H A DMarkerSegment.java90 // get the user object and clone it to the data
111 protected Object clone() { method in class:MarkerSegment
114 newGuy = (MarkerSegment) super.clone();
117 newGuy.data = (byte[]) data.clone();
H A DSOFMarkerSegment.java98 protected Object clone() { method in class:SOFMarkerSegment
99 SOFMarkerSegment newGuy = (SOFMarkerSegment) super.clone();
101 newGuy.componentSpecs = (ComponentSpec []) componentSpecs.clone();
104 (ComponentSpec) componentSpecs[i].clone();
252 protected Object clone() { method in class:SOFMarkerSegment.ComponentSpec
254 return super.clone();
H A DSOSMarkerSegment.java93 protected Object clone () { method in class:SOSMarkerSegment
94 SOSMarkerSegment newGuy = (SOSMarkerSegment) super.clone();
97 (ScanComponentSpec []) componentSpecs.clone();
100 (ScanComponentSpec) componentSpecs[i].clone();
213 protected Object clone() { method in class:SOSMarkerSegment.ScanComponentSpec
215 return super.clone();
/openjdk7/hotspot/src/share/vm/shark/
H A DsharkValue.cpp37 SharkValue* SharkNormalValue::clone() const { function in class:SharkNormalValue
40 SharkValue* SharkPHIValue::clone() const { function in class:SharkPHIValue
43 SharkValue* SharkAddressValue::clone() const { function in class:SharkAddressValue
/openjdk7/hotspot/test/compiler/6663848/
H A DTester.java255 protected Object clone() method in class:Tester_Class_1
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArrayIntMap.java136 public final int obtainIndex(char[] ch, int start, int length, boolean clone) { argument
153 if (clone) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/sourcemodel/
H A DPolicySourceModel.java283 protected PolicySourceModel clone() throws CloneNotSupportedException { method in class:PolicySourceModel
284 final PolicySourceModel clone = (PolicySourceModel) super.clone();
286 clone.rootNode = this.rootNode.clone();
288 clone.rootNode.setParentModel(clone);
293 return clone;
/openjdk7/jdk/src/share/classes/sun/security/krb5/
H A DEncryptedData.java86 public Object clone() { method in class:EncryptedData
H A DRealm.java61 public Object clone() { method in class:Realm
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/
H A DKrbCredInfo.java189 public Object clone() { method in class:KrbCredInfo
191 kcred.key = (EncryptionKey)key.clone();
194 kcred.prealm = (Realm)prealm.clone();
196 kcred.pname = (PrincipalName)pname.clone();
198 kcred.flags = (TicketFlags)flags.clone();
200 kcred.authtime = (KerberosTime)authtime.clone();
202 kcred.starttime = (KerberosTime)starttime.clone();
204 kcred.endtime = (KerberosTime)endtime.clone();
206 kcred.renewTill = (KerberosTime)renewTill.clone();
208 kcred.srealm = (Realm)srealm.clone();
[all...]
/openjdk7/jdk/src/share/classes/sun/security/krb5/internal/crypto/
H A Dcrc32.java47 public Object clone() { method in class:crc32
49 crc32 crc = (crc32)super.clone();
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD4.java97 this.state = base.state.clone();
101 // clone this object
102 public Object clone() { method in class:MD4

Completed in 292 milliseconds

1234567891011>>