Searched refs:setBounds (Results 76 - 100 of 244) sorted by relevance

12345678910

/openjdk7/jdk/test/java/awt/Frame/InvisibleOwner/
H A DInvisibleOwner.java49 helperFrame.setBounds(F_X - 10, F_Y - 10, F_W + 20, F_H + 20);
/openjdk7/jdk/test/java/awt/Multiscreen/LocationRelativeToTest/
H A DLocationRelativeToTest.java74 f2.setBounds(gcBounds.x + 100, gcBounds.y + 100,
/openjdk7/jdk/test/java/awt/TextField/ScrollSelectionTest/
H A DScrollSelectionTest.java74 frame.setBounds (400, 0, 300, 300);
/openjdk7/jdk/test/java/awt/Toolkit/ScreenInsetsTest/
H A DScreenInsetsTest.java61 f.setBounds(gcBounds.x + 100, gcBounds.y + 100, 320, 240);
/openjdk7/jdk/src/share/demo/jfc/Metalworks/
H A DMetalworksHelp.java62 setBounds(200, 25, 400, 400);
/openjdk7/jdk/test/javax/swing/JMenuItem/ShortcutNotDiplayed/
H A DShortcutNotDisplayedTest.java95 testFrame.setBounds(100, 100, 600, 180);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalComboBoxUI.java271 arrowButton.setBounds(MetalUtils.isLeftToRight(comboBox)
281 arrowButton.setBounds( insets.left, insets.top,
289 editor.setBounds(cvb);
H A DMetalInternalFrameTitlePane.java281 closeButton.setBounds(x, y, buttonWidth+2, getHeight()-4);
286 closeButton.setBounds(x, y, buttonWidth, buttonHeight);
294 maxButton.setBounds(x, y, buttonWidth, buttonHeight);
302 iconButton.setBounds(x, y, buttonWidth, buttonHeight);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DComponentView.java117 c.setBounds(alloc.x, alloc.y, alloc.width, alloc.height);
408 public void setBounds(int x, int y, int w, int h) { method in class:ComponentView.Invalidator
409 super.setBounds(x, y, w, h);
/openjdk7/jdk/test/java/awt/Mixing/
H A DJButtonInGlassPane.java69 button.setBounds(100,100,100,100);
83 jbutton.setBounds(50,50,100,100);
109 jbutton.setBounds(50,50,120,120);
H A DOpaqueTest.java99 heavy.setBounds(30, 30, 200, 200);
100 light.setBounds(10, 10, 50, 50);
107 f.setBounds(50, 50, 400, 400);
H A DOverlappingButtons.java98 heavy.setBounds(30, 30, 200, 200);
99 light.setBounds(10, 10, 50, 50);
106 f.setBounds(50, 50, 400, 400);
/openjdk7/jdk/test/java/awt/Modal/WsDisabledStyle/CloseBlocker/
H A DCloseBlocker.java105 dialog.setBounds(200, 200, 200, 200);
111 active.setBounds(200, 400, 200, 200);
124 nonactive.setBounds(400, 400, 200, 200);
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServer.java123 modal_d.setBounds(0, 100, 200, 50);
167 dummy.setBounds(0, VERTICAL_POSITION, 100, 100);
170 f.setBounds(300, VERTICAL_POSITION, 800, 300);
/openjdk7/jdk/src/share/classes/java/awt/
H A DBorderLayout.java816 c.setBounds(left, top, right - left, d.height);
822 c.setBounds(left, bottom - d.height, right - left, d.height);
828 c.setBounds(right - d.width, top, d.width, bottom - top);
834 c.setBounds(left, top, d.width, bottom - top);
838 c.setBounds(left, top, right - left, bottom - top);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicSplitPaneDivider.java919 leftButton.setBounds(extraX + oneTouchOffset, y,
921 rightButton.setBounds(extraX + oneTouchOffset +
942 leftButton.setBounds(x, extraY + oneTouchOffset,
944 rightButton.setBounds(x, extraY + oneTouchOffset +
950 leftButton.setBounds(-5, -5, 1, 1);
951 rightButton.setBounds(-5, -5, 1, 1);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSpinnerUI.java583 private void setBounds(final Component c, final int x, final int y, final int width, final int height) { method in class:AquaSpinnerUI.SpinnerLayout
585 c.setBounds(x, y, width, height);
615 setBounds(editor, editorX, insets.top, editorWidth, availHeight);
616 setBounds(nextButton, buttonsX, insets.top, buttonsWidth, nextHeight);
617 setBounds(previousButton, buttonsX, previousY, buttonsWidth, previousHeight);
618 setBounds(painter, buttonsX, painterTop, buttonsWidth, painterD.height);
H A DAquaInternalFrameManager.java106 desktopIcon.setBounds(r.x, r.y, r.width, r.height);
H A DAquaOptionPaneUI.java140 children[i].setBounds(xLocation, yLocation, maxSize.width, maxSize.height);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJRootPane.java995 layeredPane.setBounds(i.left, i.top, w, h);
998 glassPane.setBounds(i.left, i.top, w, h);
1004 menuBar.setBounds(0, 0, w, mbd.height);
1008 contentPane.setBounds(0, contentY, w, h - contentY);
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java299 setBounds(target.getBounds());
507 public void setBounds(Rectangle r) { method in class:LWComponentPeer
508 setBounds(r.x, r.y, r.width, r.height, SET_BOUNDS);
515 public void setBounds(int x, int y, int w, int h, int op) { method in class:LWComponentPeer
516 setBounds(x, y, w, h, op, true, false);
519 protected void setBounds(int x, int y, int w, int h, int op, boolean notify, method in class:LWComponentPeer
541 delegateContainer.setBounds(0, 0, w, h);
542 delegate.setBounds(delegateContainer.getBounds());
549 platformComponent.setBounds(locationInWindow.x, locationInWindow.y, w,
/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java89 public void setBounds(int x, int y, int width, int height, int op){}; method in class:StubComponentPeer
185 * DEPRECATED: Replaced by setBounds(int, int, int, int).
/openjdk7/jdk/test/java/awt/EventDispatchThread/LoopRobustness/
H A DLoopRobustness.java98 lr.setBounds(100, 100, 300, 100);
/openjdk7/jdk/test/java/awt/Focus/ActualFocusedWindowTest/
H A DActualFocusedWindowBlockingTest.java123 w.setBounds(100, y, 400, 150);
/openjdk7/jdk/test/java/awt/Focus/NonFocusableWindowTest/
H A DNoEventsTest.java79 jumpingFrame.setBounds(DEF_LEFT, DEF_TOP, DEF_WIDTH, DEF_HEIGHT);
191 setBounds(NoEventsTest.DEF_LEFT + DEF_WIDTH*col, DEF_TOP + DEF_HEIGHT*row, DEF_WIDTH, DEF_HEIGHT);
217 setBounds(NoEventsTest.DEF_LEFT + NoEventsTest.DEF_WIDTH*col, NoEventsTest.DEF_TOP + NoEventsTest.DEF_HEIGHT*row, NoEventsTest.DEF_WIDTH, NoEventsTest.DEF_HEIGHT);
240 setBounds(NoEventsTest.DEF_LEFT + NoEventsTest.DEF_WIDTH*col, NoEventsTest.DEF_TOP + NoEventsTest.DEF_HEIGHT*row, NoEventsTest.DEF_WIDTH, NoEventsTest.DEF_HEIGHT);

Completed in 1049 milliseconds

12345678910