Searched refs:copy (Results 1 - 25 of 627) sorted by relevance

1234567891011>>

/openjdk9/jdk/test/java/util/AbstractList/
H A DFailFastIterator.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
39 List copy = new ArrayList(orig);
41 ListIterator i = copy.listIterator();
43 copy.remove(99);
44 copy.add(new Integer(99));
49 if (!copy.equals(orig))
53 ListIterator i = copy.listIterator();
55 copy.remove(99);
56 copy
[all...]
/openjdk9/jdk/src/jdk.crypto.cryptoki/share/classes/sun/security/pkcs11/wrapper/
H A DCK_DATE.java104 CK_DATE copy = null;
106 copy = (CK_DATE) super.clone();
112 copy.year = this.year.clone();
113 copy.month = this.month.clone();
114 copy.day = this.day.clone();
116 return copy;
/openjdk9/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/api/pipe/
H A DTubeCloner.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
48 * {@link Tube}s implementing the {@link Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)} method
49 * shall use {@link #copy(Tube)} method.
60 return new PipeClonerImpl().copy(p);
69 * Invoked by a {@link Tube#copy(com.sun.xml.internal.ws.api.pipe.TubeCloner)} implementation
70 * to copy a reference to another pipe.
90 public abstract <T extends Tube> T copy(T t); method in class:TubeCloner
93 * This method must be called from within the copy constructor
94 * to notify that the copy wa
102 add(Tube original, Tube copy) argument
[all...]
H A DPipeClonerImpl.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
60 * {@link Pipe} version of {@link #copy(Tube)}
63 public <T extends Pipe> T copy(T p) { method in class:PipeClonerImpl
66 r = p.copy(this);
67 // the pipe must puts its copy to the map by itself
77 public void add(Pipe original, Pipe copy) { argument
79 assert original!=null && copy!=null;
80 master2copy.put(original,copy);
86 public void add(AbstractTubeImpl original, AbstractTubeImpl copy) { argument
91 add(Tube original, Tube copy) argument
99 public <T extends Tube> T copy(T t) { method in class:PipeClonerImpl
[all...]
H A DPipeCloner.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
47 return new PipeClonerImpl().copy(p);
56 * {@link Pipe} version of {@link #copy(Tube)}
59 public abstract <T extends Pipe> T copy(T p); method in class:PipeCloner
65 public abstract void add(Pipe original, Pipe copy); argument
/openjdk9/corba/src/java.corba/share/classes/org/omg/CORBA/
H A DPolicyOperations.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
60 * Returns a copy of the {@code Policy} object. The copy does not retain
63 * @return a copy of the {@code Policy} object
65 org.omg.CORBA.Policy copy (); method in interface:PolicyOperations
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/spi/copyobject/
H A DObjectCopier.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
28 /** Provides an interface for a variety of means to copy an arbitrary
30 * copy of obj, preserving all aliasing across all objects reachable
32 * cannot copy obj for some reason. Note that a trivial implementation
37 Object copy( Object obj ) throws ReflectiveCopyException ; method in interface:ObjectCopier
/openjdk9/nashorn/src/jdk.scripting.nashorn/share/classes/jdk/nashorn/internal/runtime/regexp/joni/
H A DOptEnvironment.java2 * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
29 void copy(final OptEnvironment other) { method in class:OptEnvironment
30 mmd.copy(other.mmd);
H A DNodeOptInfo.java2 * Permission is hereby granted, free of charge, to any person obtaining a copy of
5 * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
32 exb.mmd.copy(mmd);
33 expr.mmd.copy(mmd);
34 map.mmd.copy(mmd);
46 public void copy(final NodeOptInfo other) { method in class:NodeOptInfo
47 length.copy(other.length);
48 anchor.copy(other.anchor);
49 exb.copy(other.exb);
50 exm.copy(othe
[all...]
/openjdk9/langtools/test/tools/javac/TryWithResources/
H A DTwrAndTypeVariables.java13 void copy(S s, T t) throws Exception { method in class:TwrAndTypeVariables
19 public static <S> void copy(S s) throws Exception { method in class:TwrAndTypeVariables
H A DT7164542.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
34 void copy(S s, T t, int size) throws Exception { method in class:T7164542
/openjdk9/corba/src/java.corba/share/classes/com/sun/corba/se/impl/copyobject/
H A DFallbackObjectCopierImpl.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
46 public Object copy( Object src ) throws ReflectiveCopyException method in class:FallbackObjectCopierImpl
49 return first.copy( src ) ;
52 return second.copy( src ) ;
H A DReferenceObjectCopierImpl.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
32 public Object copy( Object obj ) method in class:ReferenceObjectCopierImpl
/openjdk9/jdk/src/java.base/share/classes/java/security/cert/
H A DPKIXRevocationChecker.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
192 * DER-encoded OCSP response for that certificate. A deep copy of
200 Map<X509Certificate, byte[]> copy = new HashMap<>(responses.size());
202 copy.put(e.getKey(), e.getValue().clone());
204 this.ocspResponses = copy;
214 * DER-encoded OCSP response for that certificate. A deep copy of
219 Map<X509Certificate, byte[]> copy = new HashMap<>(ocspResponses.size());
221 copy.put(e.getKey(), e.getValue().clone());
223 return copy;
[all...]
/openjdk9/langtools/test/tools/javac/lambda/
H A DT8056014.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
42 foo(l.get(0).copy(1));
43 foo(c.get(0).copy(1));
51 public B copy(long j) { method in class:B
57 public <T> T copy(int i) { method in class:S
/openjdk9/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
37 * Creates a copy of a tree, using a given TreeMaker.
53 public <T extends JCTree> T copy(T tree) { method in class:TreeCopier
54 return copy(tree, null);
58 public <T extends JCTree> T copy(T tree, P p) { method in class:TreeCopier
64 public <T extends JCTree> List<T> copy(List<T> trees) { method in class:TreeCopier
65 return copy(trees, null);
68 public <T extends JCTree> List<T> copy(List<T> trees, P p) { method in class:TreeCopier
73 lb.append(copy(tre
[all...]
/openjdk9/jdk/test/java/security/SecureRandom/
H A DSerializedSeedTest.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
62 SecureRandom copy = deserializedCopy(orig);
65 check(orig, copy, false, mech);
71 copy = deserializedCopy(orig);
74 check(orig, copy, !isDRBG(mech), mech);
80 copy = deserializedCopy(orig);
83 check(orig, copy, !isDRBG(mech), mech);
90 copy = deserializedCopy(orig);
95 check(orig, copy, fals
151 check(SecureRandom orig, SecureRandom copy, boolean equal, String mech) argument
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/phases/
H A DLIRSuites.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
50 this(other.getPreAllocationOptimizationStage().copy(), other.getAllocationStage().copy(), other.getPostAllocationOptimizationStage().copy());
101 public LIRSuites copy() { method in class:LIRSuites
102 return new LIRSuites(preAllocOptStage.copy(), allocStage.copy(), postAllocStage.copy());
/openjdk9/jdk/src/java.base/share/classes/sun/security/provider/
H A DMD2.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
62 MD2 copy = (MD2) super.clone();
63 copy.X = copy.X.clone();
64 copy.C = copy.C.clone();
65 copy.cBytes = new byte[16];
66 return copy;
/openjdk9/jdk/src/jdk.rmic/share/classes/sun/tools/tree/
H A DLocalMember.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
68 * Used by copyInline to record the original of this copy.
120 * Make a copy of this field, which is an argument to a method
124 * fresh copy.
127 LocalMember copy = new LocalMember(where, clazz, modifiers, type, name);
128 copy.readcount = this.readcount;
129 copy.writecount = this.writecount;
131 copy.originalOfCopy = this;
137 copy
[all...]
/openjdk9/jdk/src/java.desktop/unix/classes/sun/awt/X11/
H A DXWrapperBase.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
66 long copy = XlibWrapper.unsafe.allocateMemory(getDataSize());
67 XlibWrapper.unsafe.copyMemory(getPData(), copy, getDataSize());
68 return new XEvent(copy);
/openjdk9/jdk/test/java/security/SignedObject/
H A DCopy.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
33 * @summary Checks if a signed object is a copy of an original object
65 Object copy = so.getObject();
66 if (!original.equals(copy)) {
68 + "to original one: " + copy);
72 * The signed object is a copy of an original one.
73 * Once the copy is made, further manipulation
74 * of the original object shouldn't has any effect on the copy.
77 copy
[all...]
/openjdk9/jdk/src/java.base/share/classes/sun/security/ssl/
H A DAuthenticator.java14 * version 2 for more details (a copy is included in the LICENSE file that
17 * You should have received a copy of the GNU General Public License version
222 byte[] copy = block.clone();
229 System.arraycopy(sequence, 0, copy, 0, sequence.length);
233 copy[8] = type;
235 copy[copy.length - 2] = (byte)(length >> 8);
236 copy[copy.length - 1] = (byte)(length);
244 return copy;
[all...]
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases/src/org/graalvm/compiler/phases/tiers/
H A DSuites.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
74 public Suites copy() { method in class:Suites
75 return new Suites(highTier.copy(), midTier.copy(), lowTier.copy());
/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/util/
H A DValueSet.java12 * version 2 for more details (a copy is included in the LICENSE file that
15 * You should have received a copy of the GNU General Public License version
35 public abstract S copy(); method in class:ValueSet

Completed in 342 milliseconds

1234567891011>>