Searched refs:clone (Results 51 - 75 of 1037) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DModelMBeanOperationInfo.java346 public Object clone () method in class:ModelMBeanOperationInfo
351 "clone()", "Entry");
377 return((Descriptor) operationDescriptor.clone());
448 Descriptor clone;
451 clone = new DescriptorSupport();
454 clone = (Descriptor) in.clone();
458 if (defaulted && clone.getFieldValue("name")==null) {
459 clone.setField("name", this.getName());
462 if (defaulted && clone
[all...]
H A DModelMBeanConstructorInfo.java301 public Object clone () method in class:ModelMBeanConstructorInfo
306 "clone()", "Entry");
332 return((Descriptor)consDescriptor.clone());
407 Descriptor clone;
410 clone = new DescriptorSupport();
413 clone = (Descriptor) in.clone();
417 if (defaulted && clone.getFieldValue("name")==null) {
418 clone.setField("name", this.getName());
421 if (defaulted && clone
[all...]
H A DModelMBeanNotificationInfo.java227 public Object clone () { method in class:ModelMBeanNotificationInfo
231 "clone()", "Entry");
263 return((Descriptor)notificationDescriptor.clone());
341 Descriptor clone;
344 clone = new DescriptorSupport();
347 clone = (Descriptor) in.clone();
351 if (defaulted && clone.getFieldValue("name")==null) {
352 clone.setField("name", this.getName());
355 if (defaulted && clone
[all...]
H A DModelMBeanAttributeInfo.java379 return((Descriptor)attrDescriptor.clone());
412 public Object clone() method in class:ModelMBeanAttributeInfo
417 "clone()", "Entry");
453 Descriptor clone;
456 clone = new DescriptorSupport();
459 clone = (Descriptor) in.clone();
463 if (defaulted && clone.getFieldValue("name")==null) {
464 clone.setField("name", this.getName());
467 if (defaulted && clone
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DStepIterator.java78 final StepIterator clone = (StepIterator) super.clone();
79 clone._source = _source.cloneIterator();
80 clone._iterator = _iterator.cloneIterator();
81 clone._iterator.setRestartable(true); // must be restartable
82 clone._isRestartable = false;
83 return clone.reset();
H A DSortingIterator.java101 final SortingIterator clone = (SortingIterator) super.clone();
102 clone._source = _source.cloneIterator();
103 clone._factory = _factory; // shared between clones
104 clone._data = _data; // shared between clones
105 clone._free = _free;
106 clone._current = _current;
107 clone.setRestartable(false);
108 return clone.reset();
H A DForwardPositionIterator.java75 final ForwardPositionIterator clone =
76 (ForwardPositionIterator) super.clone();
77 clone._source = _source.cloneIterator();
78 clone._isRestartable = false;
79 return clone.reset();
H A DMatchingIterator.java76 final MatchingIterator clone = (MatchingIterator) super.clone();
77 clone._source = _source.cloneIterator();
78 clone._isRestartable = false;
79 return clone.reset();
90 // iterator is not a clone
H A DNthIterator.java52 final NthIterator clone = (NthIterator) super.clone();
53 clone._source = _source.cloneIterator(); // resets source
54 clone._isRestartable = false;
55 return clone;
H A DMultiValuedNodeHeapIterator.java70 * Creates a deep copy of this {@link HeapNode}. The clone is not
76 HeapNode clone;
79 clone = (HeapNode) super.clone();
86 clone._node = _node;
87 clone._markedNode = _node;
89 return clone;
156 MultiValuedNodeHeapIterator clone =
157 (MultiValuedNodeHeapIterator)super.clone();
162 clone
[all...]
H A DNodeIteratorBase.java145 final NodeIteratorBase clone = (NodeIteratorBase)super.clone();
146 clone._isRestartable = false;
147 return clone.reset();
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java59 _exceptionNames = (Vector)that._exceptionNames.clone ();
60 _exceptions = (Vector)that._exceptions.clone ();
61 _contexts = (Vector)that._contexts.clone ();
62 _parameters = (Vector)that._parameters.clone ();
66 protected MethodEntry (InterfaceEntry that, IDLID clone) argument
68 super (that, clone);
75 public Object clone () method in class:MethodEntry
78 } // clone
H A DStructEntry.java63 _members = (Vector)that._members.clone ();
64 _contained = (Vector)that._contained.clone ();
67 protected StructEntry (SymtabEntry that, IDLID clone) argument
69 super (that, clone);
76 public Object clone () method in class:StructEntry
79 } // clone
H A DParameterEntry.java65 protected ParameterEntry (SymtabEntry that, IDLID clone) argument
67 super (that, clone);
74 public Object clone () method in class:ParameterEntry
77 } // clone
/openjdk7/jdk/src/share/classes/java/security/
H A DSignedObject.java194 return this.signature.clone();
224 verificationEngine.update(this.content.clone());
225 return verificationEngine.verify(this.signature.clone());
242 signingEngine.update(this.content.clone());
243 this.signature = signingEngine.sign().clone();
254 content = ((byte[])fields.get("content", null)).clone();
255 signature = ((byte[])fields.get("signature", null)).clone();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DEncryptedPrivateKeyInfo.java80 this.encoded = (byte[])encoded.clone();
89 this.encryptedData = (byte[])encryptedData.clone();
104 return (byte[])this.encryptedData.clone();
113 if (this.encoded != null) return (byte[])this.encoded.clone();
128 return (byte[])this.encoded.clone();
/openjdk7/jdk/src/share/classes/com/sun/jmx/snmp/
H A DSnmpNull.java114 * Performs a clone action. This provides a workaround for the
116 * @return The SnmpValue clone.
119 return (SnmpValue) clone() ;
124 * @return The object clone.
126 final synchronized public Object clone() { method in class:SnmpNull
129 newclone = (SnmpNull) super.clone() ;
/openjdk7/jdk/test/java/util/LinkedHashSet/
H A DBasic.java47 Set intersection = clone(s1);
49 Set diff1 = clone(s1); diff1.removeAll(s2);
50 Set diff2 = clone(s2); diff2.removeAll(s1);
51 Set union = clone(s1); union.addAll(s2);
99 static Set clone(Set s) throws Exception { method in class:Basic
100 Set clone;
102 clone = (method==0 ? (Set) ((LinkedHashSet)s).clone() :
105 if (!s.equals(clone))
107 if (!s.containsAll(clone))
[all...]
/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...]
/openjdk7/jdk/src/share/classes/javax/print/attribute/standard/
H A DMediaName.java102 return (String[])myStringTable.clone();
110 return (EnumSyntax[])myEnumValueTable.clone();
H A DPDLOverrideSupported.java91 return (String[])myStringTable.clone();
98 return (EnumSyntax[])myEnumValueTable.clone();
/openjdk7/jdk/src/share/classes/java/security/cert/
H A DCollectionCertStoreParameters.java120 public Object clone() { method in class:CollectionCertStoreParameters
122 return super.clone();
/openjdk7/jdk/src/share/classes/javax/management/remote/
H A DNotificationResult.java92 this.targetedNotifications = (targetedNotifications.length == 0 ? targetedNotifications : targetedNotifications.clone());
125 return targetedNotifications.length == 0 ? targetedNotifications : targetedNotifications.clone();
/openjdk7/langtools/test/tools/javac/generics/
H A DArrayClone.java27 * @summary The clone method on arrays should be strongly typed
38 String[] args2 = args.clone();
45 int[] b = a.clone();
/openjdk7/jdk/test/java/util/Collections/
H A DCheckedSetBash.java47 Set intersection = clone(s1);
49 Set diff1 = clone(s1); diff1.removeAll(s2);
50 Set diff2 = clone(s2); diff2.removeAll(s1);
51 Set union = clone(s1); union.addAll(s2);
99 static Set clone(Set s) { method in class:CheckedSetBash
100 Set clone = newSet();
102 clone.addAll(arrayList);
103 if (!s.equals(clone))
105 if (!s.containsAll(clone))
107 if (!clone
[all...]

Completed in 434 milliseconds

1234567891011>>