Searched defs:moved (Results 1 - 7 of 7) sorted by relevance
/openjdk7/jdk/test/com/sun/net/httpserver/ |
H A D | FileServerHandler.java | 102 moved (t); 144 void moved (HttpExchange t) throws IOException { method in class:FileServerHandler
|
/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/ |
H A D | ExtraButtonDrag.java | 21 volatile static boolean moved = false; field in class:ExtraButtonDrag 37 moved = true; 85 if (!moved || dragged) { 86 throw new RuntimeException("Test failed."+ tk +" Button = " +(i+1) + " moved = "+moved +" : dragged = " +dragged); 89 if (moved || !dragged) { 90 throw new RuntimeException("Test failed."+ tk +" Button = " +(i+1) + " moved = "+moved +" : dragged = " +dragged); 94 if (moved || !dragged){ 113 moved [all...] |
/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/ |
H A D | MouseAdapterUnitTest.java | 51 static boolean moved = false; field in class:MouseAdapterUnitTest 79 public void mouseMoved(MouseEvent e){moved = true;} 157 if ( !moved){ 206 System.out.println("moved = "+moved);
|
/openjdk7/hotspot/src/share/vm/opto/ |
H A D | memnode.cpp | 2338 Node* moved = init->capture_store(this, offset, phase, can_reshape); local 2341 if (moved != NULL) { 3144 // Here are all the checks a Store must pass before it can be moved into
|
H A D | library_call.cpp | 3602 Node* moved = generate_min_max(vmIntrinsics::_min, orig_tail, length); local 3616 original, start, newcopy, intcon(0), moved, 4516 // (6) length must not be negative (moved to generate_arraycopy()).
|
/openjdk7/hotspot/src/share/vm/prims/ |
H A D | jvmtiTagMap.cpp | 3349 int moved = 0; local 3398 // if the object has moved then re-hash it and move its 3416 moved++; 3442 pre_total, post_total, freed, moved);
|
/openjdk7/jdk/src/share/classes/java/awt/ |
H A D | Component.java | 1204 * is moved from one frame to another, the toolkit it uses may change. 2256 boolean moved = (this.x != x) || (this.y != y); 2257 if (!resized && !moved) { 2281 moved = (oldX != this.x) || (oldY != this.y); 2284 // the window is really resized or moved, otherwise some 2298 notifyNewBounds(resized, moved); 2334 private void notifyNewBounds(boolean resized, boolean moved) { argument 2344 if (moved) { 2358 if (moved) { 4856 // Filtering needs to really be moved t [all...] |
Completed in 78 milliseconds