Searched defs:show (Results 51 - 68 of 68) sorted by relevance

123

/openjdk7/jdk/test/java/awt/Component/isLightweightCrash/
H A DStubPeerCrash.java167 public void show(){}; method in class:StubComponentPeer
/openjdk7/jdk/test/java/net/URI/
H A DTest.java542 static void show(String prefix, URISyntaxException x) { method in class:Test
571 show(s, (URISyntaxException)exc);
608 static void show(String n, String v) { method in class:Test
614 static void show(String n, String v, String vd) { method in class:Test
616 show(n, v);
625 public static void show(URI u) { method in class:Test
626 show("opaque", "" + u.isOpaque());
627 show("scheme", u.getScheme());
628 show("ssp", u.getRawSchemeSpecificPart(), u.getSchemeSpecificPart());
629 show("authorit
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXEmbedChildProxyPeer.java291 public void show() { method in class:XEmbedChildProxyPeer
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJInternalFrame.java1734 public void show() { method in class:JInternalFrame
1752 super.show();
H A DJPopupMenu.java136 private static final boolean VERBOSE = false; // show reuse hits/misses
137 private static final boolean DEBUG = false; // show bad params, misc.
808 * <code>PopupMenuUI</code> that has had <code>show</code> invoked on
811 * <code>show</code> the new one.
840 newPopup.show();
924 public void show(Component invoker, int x, int y) { method in class:JPopupMenu
926 System.out.println("in JPopupMenu.show " );
H A DRepaintManager.java152 // example, if we paint a component and show it and the buffer has
158 // way we don't try to show garbage to the screen.
1322 * If possible this will show a previously rendered portion of
1328 boolean show(Container c, int x, int y, int w, int h) { method in class:RepaintManager
1329 return getPaintManager().show(c, x, y, w, h);
1494 public boolean show(Container c, int x, int y, int w, int h) { method in class:RepaintManager.PaintManager
H A DSwingUtilities.java1809 public void show() { method in class:SwingUtilities.SharedOwnerFrame
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboPopup.java202 * Implementation of ComboPopup.show().
204 public void show() { method in class:BasicComboPopup
208 show( comboBox, location.x, location.y );
347 // comboBox.firePopupMenuWillBecomeVisible() is called from BasicComboPopup.show() method
1128 show();
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java1138 public void show(final Figure f) { method in class:DiagramScene
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWWindowPeer.java220 super.show();
223 public void show() { method in class:WWindowPeer
H A DWComponentPeer.java120 show();
126 public void show() { method in class:WComponentPeer
788 show(); // the wnd starts hidden
/openjdk7/jdk/test/java/awt/Graphics2D/RenderClipTest/
H A DRenderClipTest.java685 show(imgref, imgtst);
698 public static void show(BufferedImage imgref, BufferedImage imgtst) { method in class:RenderClipTest
/openjdk7/jdk/src/share/classes/java/awt/
H A DWindow.java238 * @see #show
336 * the beginning of show() and to false at the end of show().
338 * @see #show()
1029 public void show() { method in class:Window
1042 super.show();
1047 child.show();
1095 * with a call to {@code show}.
1097 * @see #show
1132 * <code>pack</code> or <code>show</cod
[all...]
H A DComponent.java1264 * @see Window#show
1603 show(b);
1611 public void show() { method in class:Component
1649 public void show(boolean b) { method in class:Component
1651 show();
2518 * its pixels, allowing the pixels underneath it to "show through".
4188 public void show() { method in class:Component.FlipBufferStrategy
4354 public void show() { method in class:Component.BltBufferStrategy
4365 * and FlipSubRegionBufferStrategy) may have region-specific show
4482 public void show(in method in class:Component.FlipSubRegionBufferStrategy
4512 public void show(int x1, int y1, int x2, int y2) { method in class:Component.BltSubRegionBufferStrategy
4554 public void show() { method in class:Component.SingleBufferStrategy
[all...]
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_DnDDT.cpp417 rtrp->dropTarget->RegisterTarget(rtrp->show);
424 void AwtDropTarget::RegisterTarget(WORD show) { argument
429 RegisterTargetRec rtr = { this, show };
438 if (show) {
457 if (res == S_OK) m_registered = show;
H A Dawt_Frame.cpp394 MsgRouting AwtFrame::WmShowWindow(BOOL show, UINT status) argument
407 if (!IsEmbeddedFrame() && show == TRUE && status == 0) {
426 return AwtWindow::WmShowWindow(show, status);
712 // in order to show the candidate window just below the input method window.
723 // to show in "normal" state regardless of whatever stale
H A Dawt_Window.cpp936 bool show = false; local
942 show = true;
947 show = true;
950 show = true;
954 if (show && (!::IsWindowVisible(warningWindow) ||
959 if (!show && ::IsWindowVisible(warningWindow)) {
1653 MsgRouting AwtWindow::WmShowWindow(BOOL show, UINT status) argument
1664 if (!show && IsSimpleWindow() && hwndSelf == AwtComponent::GetFocusedWindow() &&
1674 if (show && (status == SW_PARENTOPENING)) {
1679 return AwtCanvas::WmShowWindow(show, statu
[all...]
H A Dawt_Component.cpp2046 MsgRouting AwtComponent::WmShowWindow(BOOL show, UINT status) argument

Completed in 132 milliseconds

123