Searched refs:clone (Results 326 - 350 of 1037) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DPrinterStateReason.java406 return (String[])myStringTable.clone();
413 return (EnumSyntax[])myEnumValueTable.clone();
/openjdk7/jdk/src/share/classes/javax/swing/text/html/parser/
H A DTagStack.java81 inclusions = (BitSet)inclusions.clone();
89 exclusions = (BitSet)exclusions.clone();
/openjdk7/jdk/src/share/classes/java/awt/geom/
H A DPoint2D.java386 * @return a clone of this instance.
391 public Object clone() { method in class:Point2D
393 return super.clone();
/openjdk7/jdk/src/share/classes/java/security/
H A DSignatureSpi.java376 * Returns a clone if the implementation is cloneable.
378 * @return a clone if the implementation is cloneable.
383 public Object clone() throws CloneNotSupportedException { method in class:SignatureSpi
385 return super.clone();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCertStore.java121 this.params = (CertStoreParameters) params.clone();
370 return (params == null ? null : (CertStoreParameters) params.clone());
H A DTrustAnchor.java271 * Decode the name constraints and clone them if not null.
278 ncBytes = bytes.clone();
312 return ncBytes == null ? null : ncBytes.clone();
/openjdk7/jdk/src/share/classes/javax/management/relation/
H A DRoleResult.java178 roleList.add((Role)(currRole.clone()));
202 unresolvedRoleList.add((RoleUnresolved)(currRoleUnres.clone()));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DDOMHeader.java113 Node clone = header.getOwnerDocument().importNode(node,true);
114 header.appendChild(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 DSHA.java69 this.state = base.state.clone();
76 public Object clone() { method in class:SHA
/openjdk7/jdk/test/java/security/Security/signedfirst/
H A Dexp.jar ... DigestException private void computeBlock () public java.lang.Object 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/Arrays/
H A DCorrect.java45 array2 = (Object[])array1.clone();
55 array2 = (Object[])array1.clone();
/openjdk7/jdk/src/share/classes/sun/jvmstat/perfdata/monitor/protocol/local/
H A DLocalMonitoredVm.java151 registered = (ArrayList)listeners.clone();
172 registered = cast(listeners.clone());
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DWildcardTypeImpl.java137 return upperBounds.clone(); // return cached bounds
179 return lowerBounds.clone(); // return cached bounds
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DResultRecord.java175 return (actions == null)?null:actions.clone();
183 this.actions = (actions == null)?null:actions.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DNodeSet.java157 * does not support the clone() operation.
162 NodeSet clone = (NodeSet) clone();
164 clone.reset();
166 return clone;
843 * @return A clone of this
847 public Object clone() throws CloneNotSupportedException method in class:NodeSet
850 NodeSet clone = (NodeSet) super.clone();
852 if ((null != this.m_map) && (this.m_map == clone
[all...]
H A DVariableStack.java55 * Returns a clone of this variable stack.
57 * @return a clone of this variable stack.
61 public synchronized Object clone() throws CloneNotSupportedException method in class:VariableStack
64 VariableStack vs = (VariableStack) super.clone();
66 // I *think* I can get away with a shallow clone here?
67 vs._stackFrames = (XObject[]) _stackFrames.clone();
68 vs._links = (int[]) _links.clone();
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/classfile/
H A DLineNumber.java162 return (LineNumber)clone();
H A DPMGClass.java77 * references (shallow copy). Use clone() for a physical copy.
190 return (PMGClass)clone();
H A DSourceFile.java78 * references (shallow copy). Use clone() for a physical copy.
174 return (SourceFile)clone();
H A DStackMapType.java158 return (StackMapType)clone();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/dv/dtd/
H A DDTDDVFactoryImpl.java58 return (Hashtable)fBuiltInTypes.clone();
H A DXML11DTDDVFactoryImpl.java62 Hashtable toReturn = (Hashtable)fBuiltInTypes.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DSimpleXMLSchema.java54 (Grammar[]) fGrammars.clone() : ZERO_LENGTH_GRAMMAR_ARRAY;

Completed in 164 milliseconds

<<11121314151617181920>>