Searched defs:clone (Results 201 - 225 of 380) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/security/provider/
H A DMD5.java75 this.state = base.state.clone();
79 // clone this object
80 public Object clone() { method in class:MD5
H A DSHA5.java110 this.state = base.state.clone();
278 public Object clone() { method in class:SHA5.SHA512
303 public Object clone() { method in class:SHA5.SHA384
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DReverseState.java324 // Make sure we do a clone here, because we're probably
327 nc = (NameConstraintsExtension) nc.clone();
367 * Note that this is a SMART clone. Not all fields are fully copied,
371 public Object clone() { method in class:ReverseState
373 ReverseState clonedState = (ReverseState) super.clone();
375 /* clone checkers, if cloneable */
377 (ArrayList<PKIXCertPathChecker>)userCheckers.clone();
383 li.set((PKIXCertPathChecker)checker.clone());
389 clonedState.nc = (NameConstraintsExtension) nc.clone();
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralSubtrees.java120 public Object clone() { method in class:GeneralSubtrees
H A DNameConstraintsExtension.java356 (GeneralSubtrees)newExcluded.clone() : null;
374 (GeneralSubtrees)newPermitted.clone() : null;
385 excluded = (GeneralSubtrees)newExcluded.clone();
602 public Object clone() { method in class:NameConstraintsExtension
605 (NameConstraintsExtension) super.clone();
608 newNCE.permitted = (GeneralSubtrees) permitted.clone();
611 newNCE.excluded = (GeneralSubtrees) excluded.clone();
/openjdk7/jdk/src/share/classes/sun/text/
H A DCompactByteArray.java263 public Object clone() method in class:CompactByteArray
266 CompactByteArray other = (CompactByteArray) super.clone();
267 other.values = (byte[])values.clone();
268 other.indices = (short[])indices.clone();
269 if (hashes != null) other.hashes = (int[])hashes.clone();
H A DIntHashtable.java135 public Object clone () method in class:IntHashtable
137 IntHashtable result = (IntHashtable) super.clone();
138 values = (int[]) values.clone();
139 keyList = (int[])keyList.clone();
/openjdk7/jdk/test/javax/management/monitor/
H A DDerivedGaugeMonitorTest.java102 public Object clone() throws CloneNotSupportedException { method in class:DerivedGaugeMonitorTest.MyThings
103 final MyThings other = (MyThings)super.clone();
120 return (Things) things.clone();
/openjdk7/jdk/src/share/classes/sun/net/
H A DProgressSource.java202 public Object clone() throws CloneNotSupportedException { method in class:ProgressSource
203 return super.clone();
/openjdk7/jdk/src/share/classes/sun/rmi/rmic/newrmic/jrmp/
H A DRemoteClass.java124 return remoteInterfaces.clone();
139 return remoteMethods.clone();
562 return exceptionTypes.clone();
613 Method merged = clone();
624 protected Method clone() { method in class:RemoteClass.Method
626 return (Method) super.clone();
/openjdk7/jdk/src/share/classes/sun/rmi/transport/
H A DLiveRef.java109 public Object clone() { method in class:LiveRef
111 LiveRef newRef = (LiveRef) super.clone();
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/util/
H A DIntegerArray.java53 public Object clone() { method in class:IntegerArray
54 final IntegerArray clone = new IntegerArray(_free > 0 ? _free : 1);
55 System.arraycopy(_array, 0, clone._array, 0, _free);
56 clone._free = _free;
57 return clone;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMIterator.java313 * @return A clone of this iteration that has been reset.
320 * Get a clone of this iterator, but don't reset the iteration in the
323 * @return A clone of this object.
327 public Object clone() throws CloneNotSupportedException; method in interface:DTMIterator
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DNodeVector.java84 * @return A clone of this
88 public Object clone() throws CloneNotSupportedException method in class:NodeVector
91 NodeVector clone = (NodeVector) super.clone();
93 if ((null != this.m_map) && (this.m_map == clone.m_map))
95 clone.m_map = new int[this.m_map.length];
97 System.arraycopy(this.m_map, 0, clone.m_map, 0, this.m_map.length);
100 return clone;
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
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/xpath/internal/axes/
H A DAxesWalker.java89 public Object clone() throws CloneNotSupportedException method in class:AxesWalker
93 AxesWalker clone = (AxesWalker) super.clone();
95 //clone.setCurrentNode(clone.m_root);
97 // clone.m_isFresh = true;
99 return clone;
103 * Do a deep clone of this walker, including next and previous walkers.
104 * If the this AxesWalker is on the clone list, don't clone bu
[all...]
H A DFilterExprWalker.java146 public Object clone() throws CloneNotSupportedException method in class:FilterExprWalker
149 FilterExprWalker clone = (FilterExprWalker) super.clone();
151 // clone.m_expr = (Expression)((Expression)m_expr).clone();
153 clone.m_exprObj = (XNodeSet) m_exprObj.clone();
155 return clone;
224 /** The result of executing m_expr. Needs to be deep cloned on clone op. */
H A DPredicatedNodeTest.java88 public Object clone() throws CloneNotSupportedException method in class:PredicatedNodeTest
92 PredicatedNodeTest clone = (PredicatedNodeTest) super.clone();
95 && (this.m_proximityPositions == clone.m_proximityPositions))
97 clone.m_proximityPositions = new int[this.m_proximityPositions.length];
100 clone.m_proximityPositions, 0,
104 if(clone.m_lpi == this)
105 clone.m_lpi = (LocPathIterator)clone;
107 return clone;
[all...]
H A DUnionPathIterator.java277 * @return A clone of this iterator that holds the same node position.
281 public Object clone() throws CloneNotSupportedException method in class:UnionPathIterator
284 UnionPathIterator clone = (UnionPathIterator) super.clone();
289 clone.m_iterators = new DTMIterator[n];
293 clone.m_iterators[i] = (DTMIterator)m_iterators[i].clone();
297 return clone;
/openjdk7/jaxp/src/javax/xml/datatype/
H A DXMLGregorianCalendar.java1061 public abstract Object clone(); method in class:XMLGregorianCalendar
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DInterfaceEntry.java59 _derivedFromNames = (Vector)that._derivedFromNames.clone ();
60 _derivedFrom = (Vector)that._derivedFrom.clone ();
61 _methods = (Vector)that._methods.clone ();
62 _allMethods = (Vector)that._allMethods.clone ();
63 forwardedDerivers = (Vector)that.forwardedDerivers.clone ();
64 _contained = (Vector)that._contained.clone ();
68 protected InterfaceEntry (SymtabEntry that, IDLID clone) argument
70 super (that, clone);
97 public Object clone () method in class:InterfaceEntry
100 } // clone
[all...]
H A DSymtabEntry.java71 SymtabEntry (SymtabEntry that, IDLID clone) argument
79 _repID = (RepositoryID)clone.clone ();
98 _repID = (RepositoryID)that._repID.clone ();
116 /** This is a shallow copy clone */
117 public Object clone () method in class:SymtabEntry
120 } // clone
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DConnectorImpl.java265 defaults.put(argument.name(), argument.clone());
414 public Object clone() { method in class:ConnectorImpl.ArgumentImpl
416 return super.clone();
418 // Object should always support clone
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/runtime/ia64/
H A DIA64Frame.java69 public Object clone() { method in class:IA64Frame
/openjdk7/jdk/src/share/classes/javax/swing/plaf/nimbus/
H A DNimbusStyle.java1038 public RuntimeState clone() { method in class:NimbusStyle.RuntimeState
1039 RuntimeState clone = new RuntimeState(state, stateName);
1040 clone.backgroundPainter = backgroundPainter;
1041 clone.foregroundPainter = foregroundPainter;
1042 clone.borderPainter = borderPainter;
1043 clone.defaults.putAll(defaults);
1044 return clone;

Completed in 115 milliseconds

1234567891011>>