Searched defs:copy (Results 126 - 150 of 205) sorted by relevance

123456789

/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DConstructor.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
129 * ReflectAccess) which returns a copy of this Constructor. The copy's
132 Constructor<T> copy() { method in class:Constructor
H A DMethod.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
140 * ReflectAccess) which returns a copy of this Method. The copy's
143 Method copy() { method in class:Method
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.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
770 * specified by the {@link Files#copy(Path,Path,CopyOption[])} method
775 * the path to the file to copy
779 * options specifying how the copy should be done
782 * if the array contains a copy option that is not supported
802 public abstract void copy(Path source, Path target, CopyOption... options) method in class:FileSystemProvider
818 * if the array contains a copy option that is not supported
/openjdk7/hotspot/src/share/vm/classfile/
H A DstackMapFrame.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
117 static StackMapFrame* copy(StackMapFrame* smf) { function in class:StackMapFrame
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramViewModel.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
72 public DiagramViewModel copy() { method in class:DiagramViewModel
/openjdk7/hotspot/src/share/vm/adlc/
H A Dfilebuff.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
106 //------------------------------copy-------------------------------------------
107 // Deep copy a FileBuffRegion
108 FileBuffRegion *FileBuffRegion::copy() { function in class:FileBuffRegion
111 if( _next ) br->_next = _next->copy();
141 nr->_next = _next; // Structure copy "this" guy to "nr"
142 *this = *br; // Structure copy "br" over "this".
/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/api/message/
H A DHeaderList.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
972 * Creates a copy.
979 public static HeaderList copy(HeaderList original) { method in class:HeaderList
H A DMessage.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
460 Message msg = copy();
615 * Creates a copy of a {@link Message}.
628 * To enable efficient copy operations, there's a few restrictions on
632 * <li>The original and the copy may not be
635 * Note that it's OK for the original and the copy to be processed
638 * <li>The copy has the same 'life scope'
639 * as the original (this allows shallower copy, such as
657 * create an idential copy o
670 public abstract Message copy(); method in class:Message
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/
H A DRequestContext.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
98 * the code outside this class can safely use is {@link #copy()},
317 // fallback mode, simply copy map in a slow way
336 public RequestContext copy() { method in class:RequestContext
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/
H A DXMLHTTPBindingCodec.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
214 public MimeCodec copy() { method in class:XMLHTTPBindingCodec
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/stream/
H A DStreamMessage.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
377 public Message copy() { method in class:StreamMessage
418 return new StreamMessage(envelopeTag, headerTag, attachmentSet, HeaderList.copy(headers), bodyTag, clone, soapVersion);
420 throw new WebServiceException("Failed to copy a message",e);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/client/
H A DHttpTransportPipe.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
110 * Copy constructor for {@link Tube#copy(TubeCloner)}.
113 this(that.codec.copy(), that.binding);
139 // userHeaders may not be modifiable like SingletonMap, just copy them
368 public HttpTransportPipe copy(TubeCloner cloner) { method in class:HttpTransportPipe
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.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
275 public void copy(Path source, Path target, CopyOption... options) method in class:WindowsFileSystemProvider
278 WindowsFileCopy.copy(WindowsPath.toWindowsPath(source),
/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/jdk/test/java/lang/instrument/ilib/
H A DClassReaderWriter.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
143 void copy(int count) { method in class:ClassReaderWriter
214 // copy const pool
223 copy(2);
231 copy(4);
235 copy(8);
/openjdk7/jdk/test/java/nio/file/spi/
H A DTestProvider.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
118 public void copy(Path source, Path target, CopyOption... options) method in class:TestProvider
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/api/
H A DJavacTrees.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
318 JCTree body = copier.copy((JCTree)tree, (JCTree) path.getLeaf());
326 JCExpression expr = copier.copy((JCExpression)tree, (JCTree) path.getLeaf());
354 * Makes a copy of a tree, noting the value resulting from copying a particular leaf.
364 public <T extends JCTree> T copy(T t, JCTree leaf) { method in class:JavacTrees.Copier
365 T t2 = super.copy(t, leaf);
/openjdk7/langtools/src/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
34 * Creates a copy of a tree, using a given TreeMaker.
50 public <T extends JCTree> T copy(T tree) { method in class:TreeCopier
51 return copy(tree, null);
55 public <T extends JCTree> T copy(T tree, P p) { method in class:TreeCopier
61 public <T extends JCTree> List<T> copy(List<T> trees) { method in class:TreeCopier
62 return copy(trees, null);
65 public <T extends JCTree> List<T> copy(List<T> trees, P p) { method in class:TreeCopier
70 lb.append(copy(tre
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DListBuffer.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
105 private void copy() { method in class:ListBuffer
130 if (shared) copy();
/openjdk7/jdk/src/share/demo/nio/zipfs/
H A DDemo.java75 copy, // <java Demo copy zipfile src dst> enum constant in enum:Demo.Action
76 // copy entry src to dst inside zipfile
79 // copy an external src file into zipfile
83 // copy an external src file into zipfile
87 // copy zipfile entry src" out to file dst
95 // copy path from zipfile zfsrc to zipfile
184 case copy:
187 Files.copy(src, dst);
192 Files.copy(sr
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipFileSystemProvider.java191 public void copy(Path src, Path target, CopyOption... options) method in class:ZipFileSystemProvider
194 toZipPath(src).copy(toZipPath(target), options);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinflate.c13 * 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
44 * - Unroll direct copy to three copies per loop in inffast.c
61 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used
70 * - Unroll last copy for window match in inflate_fast()
352 unsigned copy, dist; local
371 /* copy state->wsize or less output bytes into the circular window */
372 copy = out - strm->avail_out;
373 if (copy >= state->wsize) {
380 if (dist > copy) dis
589 unsigned copy; /* number of stored or match bytes to copy */ local
[all...]
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystemProvider.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
250 public void copy(Path source, Path target, CopyOption... options) method in class:UnixFileSystemProvider
253 UnixCopyFile.copy(UnixPath.toUnixPath(source),
/openjdk7/jdk/test/sun/security/pkcs11/KeyStore/
H A DBasic.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
212 testnum = Basic.copy(testnum);
218 testnum = Basic.copy(testnum);
220 // setAttribute, pkey, sign, skey, copy
225 testnum = Basic.copy(testnum);
234 } else if ("copy".equals(test)) {
235 Basic.copy(1);
309 private static int copy(int testnum) throws Exception { method in class:Basic

Completed in 130 milliseconds

123456789