Searched refs:clone (Results 276 - 300 of 1037) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/javax/crypto/spec/
H A DSecretKeySpec.java98 this.key = (byte[])key.clone();
184 return (byte[])this.key.clone();
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DSimpleClientId.java57 this.passwd = (byte[]) ((byte[])passwd).clone();
59 this.passwd = (char[]) ((char[])passwd).clone();
/openjdk7/jdk/src/share/classes/com/sun/crypto/provider/
H A DDESKey.java81 return (byte[])this.key.clone();
129 key = (byte[])key.clone();
H A DDESedeKey.java81 return (byte[])this.key.clone();
130 key = (byte[])key.clone();
H A DPBEKey.java75 return (byte[])this.key.clone();
124 key = (byte[])key.clone();
/openjdk7/jdk/src/windows/classes/sun/net/dns/
H A DResolverConfigurationImpl.java119 return (List)searchlist.clone();
128 return (List)nameservers.clone();
/openjdk7/jdk/src/share/classes/sun/security/util/
H A DBigInt.java56 public BigInt(byte[] data) { places = data.clone(); }
139 public byte[] toByteArray() { return places.clone(); }
/openjdk7/jdk/test/java/security/cert/CertPathBuilder/targetConstraints/
H A DBuildOddSel.java80 public Object clone() { method in class:BuildOddSel.OddSel
82 return super.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/reflect/generics/repository/
H A DConstructorRepository.java100 return paramTypes.clone(); // return cached result
118 return exceptionTypes.clone(); // return cached result
/openjdk7/jdk/src/share/classes/java/util/
H A DTreeSet.java472 public Object clone() { method in class:TreeSet
473 TreeSet<E> clone = null;
475 clone = (TreeSet<E>) super.clone();
480 clone.m = new TreeMap<>(m);
481 return clone;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DConcurrentSkipListSet.java94 * safety, which entails some ugliness in clone()
160 public ConcurrentSkipListSet<E> clone() { method in class:ConcurrentSkipListSet
161 ConcurrentSkipListSet<E> clone = null;
163 clone = (ConcurrentSkipListSet<E>) super.clone();
164 clone.setMap(new ConcurrentSkipListMap(m));
169 return clone;
474 // Support for resetting map in clone
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/jpeg/
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/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/javax/security/auth/kerberos/
H A DKerberosTicket.java277 this.asn1Encoding = asn1Encoding.clone();
294 this.flags = flags.clone();
327 this.clientAddresses = clientAddresses.clone();
453 return (flags == null? null: flags.clone());
463 return (authTime == null) ? null : (Date)authTime.clone();
473 return (startTime == null) ? null : (Date)startTime.clone();
482 return (Date) endTime.clone();
492 return (renewTill == null) ? null: (Date)renewTill.clone();
502 return (clientAddresses == null) ? null: clientAddresses.clone();
513 return asn1Encoding.clone();
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DperfData.cpp334 PerfDataList* clone = _all->clone();
335 return clone;
345 PerfDataList* clone = _sampled->clone();
346 return clone;
356 PerfDataList* clone = _constants->clone();
357 return clone;
600 PerfDataList* PerfDataList::clone() { function in class:PerfDataList
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
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/jdk/src/share/classes/javax/swing/text/html/
H A DOptionListModel.java464 * Returns a clone of the receiver with the same selection.
467 * @return a clone of the receiver
470 * and (b) define a <code>clone</code> method
472 public Object clone() throws CloneNotSupportedException { method in class:OptionListModel
473 OptionListModel clone = (OptionListModel)super.clone();
474 clone.value = (BitSet)value.clone();
475 clone.listenerList = new EventListenerList();
476 return clone;
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DCodeSource.java89 this.certs = certs.clone();
108 this.signers = signers.clone();
186 return certs.clone();
198 return certs.clone();
220 return signers.clone();
225 return signers.clone();
581 this.signers = ((CodeSigner[])ois.readObject()).clone();
/openjdk7/jdk/src/share/classes/javax/management/
H A DMBeanInfo.java261 * <p>Returns a shallow clone of this instance.
262 * The clone is obtained by simply calling <tt>super.clone()</tt>,
264 * implemented by <tt>Object.clone()</tt>.
267 * <p>Since this class is immutable, the clone method is chiefly of
271 public Object clone () { method in class:MBeanInfo
273 return super.clone() ;
316 return as.clone();
358 return os.clone();
397 return cs.clone();
[all...]
/openjdk7/jdk/src/share/classes/sun/security/x509/
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/java/security/cert/
H A DX509CertSelector.java384 this.subjectKeyID = subjectKeyID.clone();
445 this.authorityKeyID = authorityKeyID.clone();
465 certificateValid = (Date)certValid.clone();
486 this.privateKeyValid = (Date)privateKeyValid.clone();
569 subjectPublicKeyBytes = key.clone();
593 this.keyUsage = keyUsage.clone();
799 // clone because byte arrays are modifiable
800 addSubjectAlternativeNameInternal(type, name.clone());
1044 ncBytes = bytes.clone();
1251 // clone becaus
2614 public Object clone() { method in class:X509CertSelector
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DKeyIndex.java124 _nodes = (IntegerArray)other._nodes.clone();
158 nodes = (IntegerArray)nodes.clone();
211 _nodes = (nodes != null) ? (IntegerArray) nodes.clone() : null;
587 * Creates a deep copy of this {@link HeapNode}. The clone is not
593 KeyIndexHeapNode clone =
596 clone._nodes = _nodes;
597 clone._position = _position;
598 clone._markPosition = _markPosition;
600 return clone;
720 result = (IntegerArray)nodes.clone();
[all...]
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
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

Completed in 136 milliseconds

<<11121314151617181920>>