Searched defs:clone (Results 126 - 150 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapAttribute.java55 public Object clone() { method in class:LdapAttribute
57 attr.values = (Vector)values.clone();
164 //if we need to remove props, we must do it to a clone
168 secureEnv = (Hashtable)realEnv.clone();
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DFastShortMessage.java130 * @return a clone of this instance.
132 public Object clone() { method in class:FastShortMessage
/openjdk7/jdk/src/share/classes/java/awt/
H A DBufferCapabilities.java135 public Object clone() { method in class:BufferCapabilities
137 return super.clone();
/openjdk7/jdk/src/share/classes/java/awt/datatransfer/
H A DMimeTypeParameterList.java297 * @return a clone of this object
300 public Object clone() { method in class:MimeTypeParameterList
303 newObj = (MimeTypeParameterList)super.clone();
306 newObj.parameters = (Hashtable)parameters.clone();
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DFileTreeCreator.java43 public DirAttributes clone() { method in class:FileTreeCreator.DirAttributes
44 return new DirAttributes((HashSet<BuildConfig>)this.ignores.clone(), (HashSet<BuildConfig>)this.disablePch.clone());
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
H A DDHTMarkerSegment.java94 protected Object clone() { method in class:DHTMarkerSegment
95 DHTMarkerSegment newGuy = (DHTMarkerSegment) super.clone();
100 newGuy.tables.add(table.clone());
208 protected Object clone() { method in class:DHTMarkerSegment.Htable
211 newGuy = (Htable) super.clone();
214 newGuy.numCodes = (short []) numCodes.clone();
217 newGuy.values = (short []) values.clone();
/openjdk7/jdk/test/java/net/URLConnection/
H A DHandleContentTypeWithAttrs.java107 myHttpServer n = (myHttpServer)clone();
211 public Object clone() { method in class:myHttpServer
213 return super.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();
H A DHostAddress.java70 public Object clone() { method in class:HostAddress
74 new_hostAddress.address = address.clone();
207 address = new_address.clone();
H A DHostAddresses.java80 addresses[i] = (HostAddress)new_addresses[i].clone();
113 public Object clone() { method in class:HostAddresses
119 (HostAddress)addresses[i].clone();
H A DPAData.java69 pADataValue = new_pADataValue.clone();
73 public Object clone() { method in class:PAData
138 return ((pADataValue == null) ? null : pADataValue.clone());
/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DDigestBase.java42 * . public abstract Object clone();
93 this.buffer = base.buffer.clone();
214 public abstract Object clone(); method in class:DigestBase
H A DSHA2.java87 this.state = base.state.clone();
91 public Object clone() { method in class:SHA2
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DForwardState.java238 * Note that this is a SMART clone. Not all fields are fully copied,
242 public Object clone() { method in class:ForwardState
244 ForwardState clonedState = (ForwardState) super.clone();
246 /* clone checkers, if cloneable */
248 forwardCheckers.clone();
254 li.set((PKIXCertPathChecker)checker.clone());
264 = (HashSet<GeneralNameInterface>)subjectNamesTraversed.clone();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBitArray.java121 repn = ba.repn.clone();
170 return repn.clone();
214 public Object clone() { method in class:BitArray
/openjdk7/jdk/src/share/classes/sun/text/normalizer/
H A DUCharacterIterator.java284 * If it is not possible to clone the iterator, returns null.
288 public Object clone() throws CloneNotSupportedException{ method in class:UCharacterIterator
289 return super.clone();
/openjdk7/jdk/test/java/text/BreakIterator/
H A DMirroredBreakIterator.java48 public Object clone() { method in class:MirroredBreakIterator
50 return super.clone();
52 throw new RuntimeException("clone failed", e);
/openjdk7/jdk/test/java/util/BitSet/
H A DStickySize.java36 equal(expectedSize, clone(s).size());
39 equal(clone(s), serialClone(s));
63 equalClones(clone(s), 8*64);
71 static BitSet clone(BitSet s) { method in class:StickySize
72 return (BitSet) s.clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DAttribute.java285 public Object clone() { method in class:Attribute
289 o = super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DCodeExceptionGen.java203 public Object clone() { method in class:CodeExceptionGen
205 return super.clone();
H A DLocalVariableGen.java282 public Object clone() { method in class:LocalVariableGen
284 return super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/runtime/
H A DHashtable.java45 protected Object clone() { method in class:HashtableEntry
50 entry.next = (next != null) ? (HashtableEntry)next.clone() : null;
/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/com/sun/org/apache/xml/internal/serializer/
H A DNamespaceMappings.java294 * This method makes a clone of this object.
297 public Object clone() throws CloneNotSupportedException { method in class:NamespaceMappings
298 NamespaceMappings clone = new NamespaceMappings();
299 clone.m_nodeStack = (Stack) m_nodeStack.clone();
300 clone.m_namespaces = (HashMap) m_namespaces.clone();
301 clone.count = count;
302 return clone;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DIntVector.java411 * Returns clone of current IntVector
413 * @return clone of current IntVector
415 public Object clone() method in class:IntVector

Completed in 75 milliseconds

1234567891011>>