Searched refs:moved (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/test/java/awt/Mouse/MouseModifiersUnitTest/
H A DExtraButtonDrag.java21 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/src/share/classes/java/util/
H A DPriorityQueue.java487 * A queue of elements that were moved from the unvisited portion of
535 E moved = PriorityQueue.this.removeAt(lastRet);
537 if (moved == null)
542 forgetMeNot.add(moved);
601 E moved = (E) queue[s];
603 siftDown(i, moved);
604 if (queue[i] == moved) {
605 siftUp(i, moved);
606 if (queue[i] != moved)
607 return moved;
[all...]
/openjdk7/jdk/test/com/sun/jdi/
H A DRedefineChangeClassOrder.sh74 // moved after the Foo2 code below which causes things to be
/openjdk7/jdk/test/com/sun/net/httpserver/
H A DFileServerHandler.java102 moved (t);
144 void moved (HttpExchange t) throws IOException { method in class:FileServerHandler
/openjdk7/jdk/src/share/demo/jvmti/hprof/
H A DREADME.txt39 moved to a package that didn't cause classload errors due to
/openjdk7/jdk/test/java/awt/MouseAdapter/MouseAdapterUnitTest/
H A DMouseAdapterUnitTest.java51 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/jdk/src/share/classes/java/util/concurrent/
H A DPriorityBlockingQueue.java622 E moved = (E) array[n];
626 siftDownComparable(i, moved, array, n);
628 siftDownUsingComparator(i, moved, array, n, cmp);
629 if (array[i] == moved) {
631 siftUpComparable(i, moved, array);
633 siftUpUsingComparator(i, moved, array, cmp);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java668 * Called by the {@code PlatformWindow} when this window is moved/resized by
675 final boolean moved;
679 moved = (x != sysX) || (y != sysY);
688 if (!moved && !resized && !invalid) {
701 if (moved || invalid) {
1021 * the window is moved to another screen by user.
1032 // is moved by user, graphicsDevice is updated in notifyReshape().
H A DLWComponentPeer.java533 boolean moved = (oldBounds.x != x) || (oldBounds.y != y);
535 if (!moved && !resized) {
556 if (moved) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java1204 * 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...]
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiTagMap.cpp3349 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/hotspot/src/share/vm/opto/
H A Dmemnode.cpp2338 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 Dlibrary_call.cpp3602 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()).

Completed in 427 milliseconds