Searched refs:copy (Results 51 - 75 of 385) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/sun/font/
H A DSunLayoutEngine.java13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
140 LayoutEngineKey copy = key.copy();
141 e = new SunLayoutEngine(copy);
142 cache.put(copy, e);
/openjdk7/hotspot/src/cpu/x86/vm/
H A DjavaFrameAnchor_x86.hpp12 * 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
48 void copy(JavaFrameAnchor* src) { function
/openjdk7/hotspot/src/cpu/zero/vm/
H A DjavaFrameAnchor_zero.hpp13 * version 2 for more details (a copy is included in the LICENSE file that
16 * You should have received a copy of the GNU General Public License version
49 void copy(JavaFrameAnchor* src) { function
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/model/
H A DCAdapter.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
61 * @param copy
62 * true to copy the adapter class into the user package,
66 public CAdapter(Class<? extends XmlAdapter> adapter, boolean copy) { argument
67 super(getRef(adapter,copy),NavigatorImpl.theInstance);
72 static NClass getRef( final Class<? extends XmlAdapter> adapter, boolean copy ) {
73 if(copy) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/util/
H A DCharArray.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
40 public CharArray(char[] _ch, int _start, int _length, boolean copy) { argument
41 set(_ch, _start, _length, copy);
44 public final void set(char[] _ch, int _start, int _length, boolean copy) { argument
45 if (copy) {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/util/
H A DMimeHeadersUtil.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
38 public static MimeHeaders copy(MimeHeaders headers) { method in class:MimeHeadersUtil
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/pipe/helper/
H A DPipeAdapter.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
70 this.t = cloner.copy(that.t);
77 public Pipe copy(PipeCloner cloner) {
96 this.next = ((PipeCloner)cloner).copy(that.next);
120 public PipeAdapter copy(TubeCloner cloner) { method in class:PipeAdapter
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DAdaptableX509CertSelector.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
190 AdaptableX509CertSelector copy =
193 copy.startDate = (Date)startDate.clone();
197 copy.endDate = (Date)endDate.clone();
200 return copy;
/openjdk7/jdk/test/lib/testlibrary/
H A DClassFileInstaller.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 Files.copy(is, p, StandardCopyOption.REPLACE_EXISTING);
/openjdk7/jdk/test/com/sun/jdi/sde/
H A DInstallSDE.java84 copy(4 + 2 + 2); // magic min/maj version
88 // copy old constant pool return index of SDE symbol, if found
109 copy(2 + 2 + 2); // access, this, super
115 copy(interfaceCount * 2);
124 // copy the class attributes, return true if SDE attr found (not copied)
143 copy(6); // access, name, descriptor
167 copy(len);
219 void copy(int count) { method in class:InstallSDE
241 // copy const pool index zero not in class file
248 copy(
[all...]
/openjdk7/hotspot/src/share/vm/opto/
H A Dcoalesce.cpp12 * 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
138 int PhaseChaitin::clone_projs( Block *b, uint idx, Node *con, Node *copy, uint &maxlrg ) {
147 kills->set_req( 0, copy );
294 // insert 2 copies into the same block. They copy L161->L128 and L128->L132.
296 // can get used by the second copy. This cannot happen in the SSA model;
303 void PhaseAggressiveCoalesce::insert_copy_with_overlap( Block *b, Node *copy, uint dst_name, uint src_name ) { argument
306 // I am about to clobber the dst_name, so the copy must be inserted
322 // Since the copy uses src_name, I have to come before any kill.
342 uint idx = copy
391 Node *copy = n->in(k); local
424 Node *copy; local
458 Node *copy; local
516 Node *copy = new (C) MachSpillCopyNode( inp, *rm, *rm ); local
[all...]
/openjdk7/jdk/src/share/classes/javax/imageio/plugins/jpeg/
H A DJPEGQTable.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
132 private JPEGQTable(int[] table, boolean copy) { argument
133 qTable = (copy) ? Arrays.copyOf(table, table.length) : table;
139 * A copy is made of the the input array.
155 * Returns a copy of the current quantization table as an array
157 * @return A copy of the current quantization table.
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_ValueSet.hpp12 * 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
44 ValueSet* copy();
60 inline ValueSet* ValueSet::copy() { function in class:ValueSet
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/ver1_1/
H A DFaultElement1_1Impl.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
74 FaultElement1_1Impl copy =
76 return replaceElementWithSOAPElement(this,copy);
/openjdk7/jdk/test/java/lang/instrument/ilib/
H A DClassDump.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
64 c.copy(4 + 2 + 2); // magic min/maj version
66 // copy old constant pool
71 c.copy(2 + 2 + 2); // access, this, super
74 c.copy(interfaceCount * 2);
79 // copy the class attributes
90 c.copy(6); // access, name, descriptor
133 c.copy(2); // name
138 c.copy(le
[all...]
/openjdk7/jdk/test/java/util/Vector/
H A DSimpleSerialization.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
69 private static String getFailureText(final Object orig, final Object copy) { argument
77 printObject(pw, copy).println();
/openjdk7/jdk/test/javax/swing/JColorChooser/
H A DTest4165217.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
46 Color after = copy(chooser).getColor();
53 private static JColorChooser copy(JColorChooser chooser) { method in class:Test4165217
/openjdk7/jdk/test/sun/misc/ClassLoaderUtil/
H A DTest.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 static File copy (File src, String destDir) throws Exception { method in class:Test
56 file = copy (file, destPath);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/messaging/saaj/soap/
H A DSOAPFactoryImpl.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
142 SOAPElement copy = createElement(
147 Document ownerDoc = copy.getOwnerDocument();
153 copy.setAttributeNodeNS(importedAttr);
161 copy.appendChild(imported);
164 return copy;
/openjdk7/jdk/src/share/classes/java/util/
H A DArrays.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
588 // If list is already sorted, just copy from src to dest. This is an
772 // If list is already sorted, just copy from src to dest. This is an
2202 * so the copy has the specified length. For all indices that are
2203 * valid in both the original array and the copy, the two arrays will
2205 * copy but not the original, the copy will contain <tt>null</tt>.
2211 * @param newLength the length of the copy to be returned
2212 * @return a copy o
[all...]
/openjdk7/jdk/src/macosx/bundle/appbundler/src/com/oracle/appbundler/
H A DAppBundlerTask.java15 * version 2 for more details (a copy is included in the LICENSE file that
18 * You should have received a copy of the GNU General Public License version
283 copy(getClass().getResource(EXECUTABLE_NAME), executableFile);
289 copy(runtime, new File(plugInsDirectory, runtime.getName()));
297 copy(entry, new File(classesDirectory, name));
299 copy(entry, new File(javaDirectory, name));
305 copy(nativeLibrary, new File(javaDirectory, nativeLibrary.getName()));
310 copy(getClass().getResource(DEFAULT_ICON_NAME), new File(resourcesDirectory,
313 copy(icon, new File(resourcesDirectory, icon.getName()));
464 private static void copy(UR method in class:AppBundlerTask
470 private static void copy(File source, File destination) throws IOException { method in class:AppBundlerTask
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/
H A DDeferredTransportPipe.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
84 this.transport = cloner.copy(that.transport);
114 context.getCodec().copy(),
138 public DeferredTransportPipe copy(TubeCloner cloner) { method in class:DeferredTransportPipe
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DScanManagerConfig.java288 * Creates a copy of this object, with the specified name.
289 * @param newname the name of the copy.
290 * @return A copy of this object.
292 public ScanManagerConfig copy(String newname) { method in class:ScanManagerConfig
293 return copy(newname,this);
299 copy(String newname, ScanManagerConfig other) { method in class:ScanManagerConfig
/openjdk7/hotspot/src/os_cpu/bsd_x86/vm/
H A Dbsd_x86_32.s12 # 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
109 # copy from low to high
120 # copy prefix
133 # copy aligned dwords
136 # copy aligned dwords
148 # copy suffix
158 # copy from high to low
171 # copy dwords, aligned or not
181 # copy dword
[all...]
/openjdk7/hotspot/src/os_cpu/linux_x86/vm/
H A Dlinux_x86_32.s12 # 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
88 # copy from low to high
99 # copy prefix
112 # copy aligned dwords
115 # copy aligned dwords
127 # copy suffix
137 # copy from high to low
150 # copy dwords, aligned or not
160 # copy dword
[all...]

Completed in 73 milliseconds

1234567891011>>