Searched refs:move (Results 26 - 50 of 56) sorted by relevance

123

/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java272 public void move(Path source, Path target, CopyOption... options) throws IOException { method in class:PassThroughFileSystem.PassThroughProvider
273 Files.move(unwrap(source), unwrap(target), options);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DUnixFileSystemProvider.java259 public void move(Path source, Path target, CopyOption... options) method in class:UnixFileSystemProvider
262 UnixCopyFile.move(UnixPath.toUnixPath(source),
H A DUnixCopyFile.java116 // a move requires that all attributes be copied but only fail if
365 // move file from source to target
366 static void move(UnixPath source, UnixPath target, CopyOption... options) method in class:UnixCopyFile
395 // move using rename or copy+delete
H A DUnixSecureDirectoryStream.java225 * Rename/move file in this directory to another (open) directory
228 public void move(Path fromObj, SecureDirectoryStream<Path> dir, Path toObj) method in class:UnixSecureDirectoryStream
/openjdk7/jdk/src/share/classes/sun/awt/
H A DOrientableFlowLayout.java288 c.move(x + (width - cDim.width)/2, y);
/openjdk7/jdk/src/share/classes/java/nio/file/spi/
H A DFileSystemProvider.java807 * manner specified by the {@link Files#move} method except that both the
811 * the path to the file to move
815 * options specifying how the move should be done
838 public abstract void move(Path source, Path target, CopyOption... options) method in class:FileSystemProvider
/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_LinearScan_x86.cpp379 // move stack slot to the top of stack and then pop it
456 // move "preserve" to bottom of stack so that all other stack slots can be popped
490 // move from fpu register to xmm register (necessary for operations that
497 // move from fpu-register to fpu-register:
522 // move from fpu-register to memory
535 // move from memory/constant to fpu register
573 // this is quite the same as a move from fpu-register to fpu-register
938 LIR_Op1* move = new LIR_Op1(lir_move, LIR_OprFact::doubleConst(0), LIR_OprFact::double_fpu(reg)->make_fpu_stack_offset()); local
940 instrs->instructions_list()->push(move);
943 move
[all...]
/openjdk7/hotspot/src/os_cpu/solaris_sparc/vm/
H A Dsolaris_sparc.s31 !! The reader might be tempted to move this service to .il.
/openjdk7/jdk/test/demo/zipfs/
H A DZipFSTester.java139 Files.move(dst2, dst3);
144 // copyback + move
147 Files.move(dst, dst4);
158 // move (existing entry)
162 Files.move(dst5, dst6);
428 Files.move(srcPath, dstPath);
/openjdk7/jdk/src/share/classes/java/nio/file/
H A DFiles.java1236 * <p> By default, this method attempts to move the file to the target
1241 * invoked to move an empty directory. In some implementations a directory
1244 * empty when only the special entries exist. When invoked to move a
1250 * IOException}). To move a <i>file tree</i> may involve copying rather
1268 * <td> The move is performed as an atomic file system operation and all
1271 * fails by throwing an {@link IOException}. If the move cannot be
1282 * <p> Where the move requires that the file be copied then the {@link
1286 * copied. When the move is performed as a non-atomic operation, and a {@code
1297 * Files.move(source, source.resolveSibling("newname"));
1299 * Alternatively, suppose we want to move
1339 public static Path move(Path source, Path target, CopyOption... options) method in class:Files
[all...]
/openjdk7/jdk/src/share/classes/java/awt/
H A DRectangle.java486 move(x, y);
498 public void move(int x, int y) { method in class:Rectangle
507 * @param dx the distance to move this <code>Rectangle</code>
509 * @param dy the distance to move this <code>Rectangle</code>
524 // newv+width, but we may move newv to prevent
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/wsdl/parser/
H A DInternalizer.java91 move(jaxwsBinding, targetNodes);
430 private void move(Element bindings, Map<Element, Node> targetNodes) { method in class:Internalizer
442 move(item, targetNodes);
450 // move this node under the target
468 * @param target XML wsdl element under which the declaration should move.
473 //if there is @node on decl and has a child element jaxb:bindings, move it under the target
515 // finally move the declaration to the target node.
527 * to the decl node itself so that this move won't change
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsFileSystemProvider.java284 public void move(Path source, Path target, CopyOption... options) method in class:WindowsFileSystemProvider
287 WindowsFileCopy.move(WindowsPath.toWindowsPath(source),
H A DWindowsFileCopy.java247 // copy security attributes. If this fail it doesn't cause the move
258 static void move(WindowsPath source, WindowsPath target, CopyOption... options) method in class:WindowsFileCopy
437 // copy security attributes. If this fails it doesn't cause the move
/openjdk7/hotspot/src/share/vm/memory/
H A Ddump.cpp473 static void mark_and_move(oop obj, MoveMarkedObjects* move) { argument
474 if (mark_object(obj)) move->do_object(obj);
483 static void mark_and_move_for_policy(order_policy policy, oop obj, MoveMarkedObjects* move) { argument
484 if (SharedOptimizeColdStartPolicy >= policy) mark_and_move(obj, move);
1096 // Phase 1b: move commonly used symbols referenced by oop fields.
1103 // Phase 1c: move known names and signatures.
1110 // Phase 1d: move the remaining symbols by scanning the whole SymbolTable.
1127 // Phase 2: move commonly used read-only objects to the read-only space.
1145 // Phase 3: move String character arrays to the read-only space.
1153 // Phase 4: move rea
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/HierarchicalLayout/src/com/sun/hotspot/igv/hierarchicallayout/
H A DOldHierarchicalLayoutManager.java567 relFrom.move(relFrom.x + from.x, relFrom.y + from.y);
572 relTo.move(relTo.x + to.x, relTo.y + to.y);
640 relFrom.move(relFrom.x + from.x, relFrom.y + from.y);
647 relTo.move(relTo.x + to.x, relTo.y + to.y);
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstructionList.java631 * not be located withing this range. If you want to move something to the start of
639 public void move(InstructionHandle start, InstructionHandle end, InstructionHandle target) { method in class:InstructionList
696 public void move(InstructionHandle ih, InstructionHandle target) { method in class:InstructionList
697 move(ih, ih, target);
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIRGenerator.hpp119 // class used to move value of phi operand to phi function
140 void move(ResolveNode* src, ResolveNode* dest);
150 void move(LIR_Opr src, LIR_Opr dest);
582 gen()->lir()->move(_result, _new_result);
H A Dc1_LIR.hpp1981 void move(LIR_Opr src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, src, dst, dst->type(), lir_patch_none, info)); } function in class:LIR_List
1982 void move(LIR_Address* src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, LIR_OprFact::address(src), dst, src->type(), lir_patch_none, info)); } function in class:LIR_List
1983 void move(LIR_Opr src, LIR_Address* dst, CodeEmitInfo* info = NULL) { append(new LIR_Op1(lir_move, src, LIR_OprFact::address(dst), dst->type(), lir_patch_none, info)); } function in class:LIR_List
1988 move(src, dst, info);
1995 move(src, dst, info);
2206 void move(int index, LIR_Opr src, LIR_Opr dst, CodeEmitInfo* info = NULL) { append(index, new LIR_Op1(lir_move, src, dst, dst->type(), lir_patch_none, info)); } function in class:LIR_InsertionBuffer
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A Dir.idl100 void move (
/openjdk7/corba/src/share/classes/org/omg/CORBA/
H A Dir.idl101 void move (
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletViewer.java76 move(x, y);
199 move(x, y);
/openjdk7/jdk/src/share/classes/sun/font/
H A DLayoutPathImpl.java210 // if zero length move or line, ignore
224 // if multiple disconnected move, just update position, leave advance alone
780 void move() { method in class:LayoutPathImpl.SegmentPath.Segment
781 if (LOGMAP) LOG.format("s(%d) move\n", ix);
879 s.move();
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXScrollPanePeer.java313 c.move(sx, sy);
/openjdk7/jdk/src/share/native/sun/awt/libpng/
H A DCHANGES3348 The main change is to move the transform tests (READ_TRANSFORMS,
3419 Reversed earlier 1.5.3 change of transformation order; move png_expand_16

Completed in 207 milliseconds

123