Searched defs:layout (Results 1 - 25 of 67) sorted by relevance

123

/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Layout/src/com/sun/hotspot/igv/layout/
H A DPort.java24 package com.sun.hotspot.igv.layout;
H A DCluster.java24 package com.sun.hotspot.igv.layout;
H A DLayoutManager.java24 package com.sun.hotspot.igv.layout;
H A DLink.java24 package com.sun.hotspot.igv.layout;
H A DVertex.java24 package com.sun.hotspot.igv.layout;
/openjdk7/jdk/test/javax/swing/JTabbedPane/6416920/
H A Dbug6416920.java27 * @summary Ensures that selected tab is painted properly in the scroll tab layout
41 public AccessibleTabbedPaneLayout layout = new AccessibleTabbedPaneLayout(); field in class:bug6416920
50 test.layout.padSelectedTab(SwingConstants.TOP, 0);
53 "in the scroll tab layout under WindowsLookAndFeel " +
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/oops/
H A DBitData.java44 public BitData(DataLayout layout) { argument
45 super(layout);
H A DBranchData.java44 public BranchData(DataLayout layout) { argument
45 super(layout);
46 //assert(layout.tag() == DataLayout.branchDataTag, "wrong type");
H A DCounterData.java42 public CounterData(DataLayout layout) { argument
43 super(layout);
H A DVirtualCallData.java39 public VirtualCallData(DataLayout layout) { argument
40 super(layout);
41 //assert(layout.tag() == DataLayout.virtualCallDataTag, "wrong type");
H A DArrayData.java62 ArrayData(DataLayout layout) { argument
63 super(layout);
H A DJumpData.java45 public JumpData(DataLayout layout) { argument
46 super(layout);
47 //assert(layout.tag() == DataLayout.jumpDataTag ||
48 // layout.tag() == DataLayout.branchDataTag, "wrong type");
H A DMultiBranchData.java48 public MultiBranchData(DataLayout layout) { argument
49 super(layout);
50 //assert(layout.tag() == DataLayout.multiBranchDataTag, "wrong type");
H A DReceiverTypeData.java45 public ReceiverTypeData(DataLayout layout) { argument
46 super(layout);
47 //assert(layout.tag() == DataLayout.receiverTypeDataTag ||
48 // layout.tag() == DataLayout.virtualCallDataTag, "wrong type");
H A DRetData.java48 public RetData(DataLayout layout) { argument
49 super(layout);
50 //assert(layout.tag() == DataLayout.retDataTag, "wrong type");
/openjdk7/jdk/src/share/classes/java/awt/
H A DPanel.java34 * The default layout manager for a panel is the
35 * <code>FlowLayout</code> layout manager.
51 * Creates a new panel using the default layout manager.
52 * The default layout manager for all panels is the
60 * Creates a new panel with the specified layout manager.
61 * @param layout the layout manager for this panel.
64 public Panel(LayoutManager layout) { argument
65 setLayout(layout);
/openjdk7/hotspot/src/cpu/x86/vm/
H A Druntime_x86_32.cpp72 // Capture info about frame layout
73 enum layout { enum
76 // will override any oopMap setting for it. We must therefore force the layout
/openjdk7/jdk/test/java/beans/XMLEncoder/
H A Djava_awt_BorderLayout.java53 BorderLayout layout = new BorderLayout();
54 update(layout, BorderLayout.EAST);
55 update(layout, BorderLayout.WEST);
56 update(layout, BorderLayout.NORTH);
57 update(layout, BorderLayout.SOUTH);
58 return layout;
63 BorderLayout layout = getObject();
64 update(layout, BorderLayout.CENTER);
65 return layout;
77 private static void update(BorderLayout layout, Strin argument
[all...]
H A Djava_awt_GridBagLayout.java48 GridBagLayout layout = new GridBagLayout();
49 update(layout, "1", 1, 1);
50 update(layout, "2", 2, 2);
51 update(layout, "3", 3, 3);
52 return layout;
57 GridBagLayout layout = new GridBagLayout();
58 update(layout, "11", 1, 1);
59 update(layout, "12", 1, 2);
60 update(layout, "21", 2, 1);
61 update(layout, "2
89 update(GridBagLayout layout, String id, int x, int y) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/CardTest/
H A DCardTest.java64 Panel create(LayoutManager layout) { argument
68 p.setLayout(layout);
193 return "Demonstrates the different types of layout managers.";
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJPanel.java74 * Creates a new JPanel with the specified layout manager and buffering
77 * @param layout the LayoutManager to use
82 public JPanel(LayoutManager layout, boolean isDoubleBuffered) { argument
83 setLayout(layout);
90 * Create a new buffered JPanel with the specified layout manager
92 * @param layout the LayoutManager to use
94 public JPanel(LayoutManager layout) { argument
95 this(layout, true);
114 * and a flow layout.
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DLineView.java108 * Lays out the children. If the layout span has changed,
122 protected void layout(int width, int height) { method in class:LineView
123 super.layout(Integer.MAX_VALUE - 1, height);
130 * of layout to determine the desired span of the children. The
141 * (which is what the layout of the children is based upon).
H A DNoFramesView.java109 * invoke the superclass to perform layout.
111 protected void layout(int width, int height) { method in class:NoFramesView
115 super.layout(width, height);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DSlotLayout.java30 import org.netbeans.api.visual.layout.Layout;
31 import org.netbeans.api.visual.layout.LayoutFactory;
60 public void layout(Widget widget) { method in class:SlotLayout
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/
H A DLabeledComponent.java74 LabeledComponent.layout(container);
77 public static void layout(Container container) { method in class:LabeledComponent

Completed in 273 milliseconds

123