/openjdk7/jdk/test/javax/swing/JComboBox/6632953/ |
H A D | bug6632953.java | 36 MetalComboBoxUI ui = new MetalComboBoxUI(); 37 ui.installUI(new JComboBox()); 38 ui.getBaseline(new JComboBox(), 0, 0); 39 ui.getBaseline(new JComboBox(), 1, 1); 40 ui.getBaseline(new JComboBox(), 2, 2); 41 ui.getBaseline(new JComboBox(), 3, 3); 42 ui.getBaseline(new JComboBox(), 4, 4);
|
/openjdk7/jdk/src/solaris/npt/ |
H A D | utf_md.c | 43 struct UtfInst *ui; local 46 ui = (struct UtfInst*)calloc(sizeof(struct UtfInst), 1); 47 ui->iconvToPlatform = (void *)-1; 48 ui->iconvFromPlatform = (void *)-1; 56 return ui; 61 return ui; 65 ui->iconvToPlatform = iconv_open(codeset, "UTF-8"); 66 if ( ui->iconvToPlatform == (void *)-1 ) { 69 ui->iconvFromPlatform = iconv_open("UTF-8", codeset); 70 if ( ui 80 utfTerminate(struct UtfInst *ui, char *options) argument [all...] |
/openjdk7/jdk/src/share/npt/ |
H A D | utf.h | 45 (struct UtfInst *ui, char *options); 47 (struct UtfInst *ui, jbyte *utf8, 50 (struct UtfInst *ui, char *str, int len, 53 (struct UtfInst *ui, jbyte *utf8, int len, 56 (struct UtfInst *ui, jchar *utf16, int len, 59 (struct UtfInst *ui, jchar *utf16, int len, 62 (struct UtfInst *ui, jbyte *string, int length); 64 (struct UtfInst *ui, jbyte *string, int length, 67 (struct UtfInst *ui, jbyte *string, int length); 69 (struct UtfInst *ui, jbyt [all...] |
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/ |
H A D | EditorCommands.java | 25 package sun.jvm.hotspot.ui;
|
H A D | EditorFactory.java | 25 package sun.jvm.hotspot.ui;
|
H A D | Editor.java | 25 package sun.jvm.hotspot.ui;
|
H A D | SAListener.java | 25 package sun.jvm.hotspot.ui; 45 import sun.jvm.hotspot.ui.action.*; 47 import com.sun.java.swing.ui.*; 49 import sun.jvm.hotspot.ui.tree.SimpleTreeNode;
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/ |
H A D | SynthDefaultLookup.java | 37 public Object getDefault(JComponent c, ComponentUI ui, String key) { argument 38 if (!(ui instanceof SynthUI)) { 39 Object value = super.getDefault(c, ui, key); 42 SynthContext context = ((SynthUI)ui).getContext(c);
|
/openjdk7/jdk/test/javax/swing/plaf/basic/BasicScrollPaneUI/ |
H A D | Test6632810.java | 38 BasicScrollPaneUI ui = new BasicScrollPaneUI(); 40 ui.installUI(new JScrollPane()); 43 ui.getBaseline(null, 1, 1); 61 ui.getBaseline(new JScrollPane(), width, height);
|
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/ |
H A D | GTKRegion.java | 39 protected GTKRegion(String name, String ui, boolean subregion) { argument 40 super(name, ui, subregion);
|
/openjdk7/jdk/test/javax/swing/JTabbedPane/6670274/ |
H A D | bug6670274.java | 39 TestTabbedPaneUI ui = new TestTabbedPaneUI(); 40 pane.setUI(ui); 46 check(ui, 0, 1); 49 check(ui, 0); 53 check(ui, 0, 2); 56 private static void check(TestTabbedPaneUI ui, int... indices) { argument 57 for(int i = 0; i < ui.getTabbedPane().getTabCount(); i++) { 59 View view = ui.getTextViewForTab(i);
|
/openjdk7/jdk/src/share/classes/sun/swing/ |
H A D | DefaultLookup.java | 92 public static Object get(JComponent c, ComponentUI ui, String key) { argument 125 return lookup.getDefault(c, ui, key); 131 public static int getInt(JComponent c, ComponentUI ui, String key, argument 133 Object iValue = get(c, ui, key); 141 public static int getInt(JComponent c, ComponentUI ui, String key) { argument 142 return getInt(c, ui, key, -1); 145 public static Insets getInsets(JComponent c, ComponentUI ui, String key, argument 147 Object iValue = get(c, ui, key); 155 public static Insets getInsets(JComponent c, ComponentUI ui, String key) { argument 156 return getInsets(c, ui, ke 159 getBoolean(JComponent c, ComponentUI ui, String key, boolean defaultValue) argument 169 getBoolean(JComponent c, ComponentUI ui, String key) argument 173 getColor(JComponent c, ComponentUI ui, String key, Color defaultValue) argument 183 getColor(JComponent c, ComponentUI ui, String key) argument 187 getIcon(JComponent c, ComponentUI ui, String key, Icon defaultValue) argument 196 getIcon(JComponent c, ComponentUI ui, String key) argument 200 getBorder(JComponent c, ComponentUI ui, String key, Border defaultValue) argument 209 getBorder(JComponent c, ComponentUI ui, String key) argument 213 getDefault(JComponent c, ComponentUI ui, String key) argument [all...] |
/openjdk7/jdk/src/windows/npt/ |
H A D | utf_md.c | 38 struct UtfInst *ui; local 43 ui = (struct UtfInst*)calloc(sizeof(struct UtfInst), 1); 52 ui->platformCodePage = atoi(strCodePage); 54 ui->platformCodePage = GetACP(); 56 return ui; 63 utfTerminate(struct UtfInst *ui, char *options) argument 65 (void)free(ui); 100 utf8ToPlatform(struct UtfInst *ui, jbyte *utf8, int len, char* output, int outputMaxLen) argument 124 plen = WideCharToMultiByte(ui->platformCodePage, 0, wstr, wlen, 139 utf8FromPlatform(struct UtfInst *ui, cha argument [all...] |
/openjdk7/jdk/src/share/classes/javax/swing/ |
H A D | JPanel.java | 136 return (PanelUI)ui; 143 * @param ui the PanelUI L&F object 152 public void setUI(PanelUI ui) { argument 153 super.setUI(ui); 181 if (count == 0 && ui != null) { 182 ui.installUI(this);
|
H A D | JSeparator.java | 115 return (SeparatorUI)ui; 121 * @param ui the SeparatorUI L&F object 129 public void setUI(SeparatorUI ui) { argument 130 super.setUI(ui); 165 if (count == 0 && ui != null) { 166 ui.installUI(this);
|
H A D | JSplitPane.java | 364 * @param ui the <code>SplitPaneUI</code> L&F object 372 public void setUI(SplitPaneUI ui) { argument 373 if ((SplitPaneUI)this.ui != ui) { 374 super.setUI(ui); 390 return (SplitPaneUI)ui; 750 SplitPaneUI ui = getUI(); 752 if (ui != null) { 753 ui.resetToPreferredSizes(this); 813 SplitPaneUI ui [all...] |
/openjdk7/jdk/test/javax/swing/JSlider/6794836/ |
H A D | bug6794836.java | 56 BasicSliderUI ui = (BasicSliderUI) slider.getUI(); 58 if (invokeMethod("getHighestValueLabel", ui) != maxLabel) { 62 if (invokeMethod("getLowestValueLabel", ui) != minLabel) { 69 private static Object invokeMethod(String name, BasicSliderUI ui) throws Exception { argument 74 return method.invoke(ui, null);
|
/openjdk7/jdk/test/javax/swing/JTree/8003830/ |
H A D | bug8003830.java | 52 BasicTreeUI ui = new NullReturningTreeUI(); 53 tree.setUI(ui); 54 BasicTreeUI.TreePageAction tpa = ui.new TreePageAction(0, "down");
|
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/ |
H A D | WindowsSplitPaneDivider.java | 53 public WindowsSplitPaneDivider(BasicSplitPaneUI ui) { argument 54 super(ui);
|
/openjdk7/jdk/test/javax/swing/JViewport/6953396/ |
H A D | bug6953396.java | 40 BasicViewportUI ui = new BasicViewportUI() { 56 viewport.setUI(ui);
|
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/tree/ |
H A D | SimpleTreeNode.java | 25 package sun.jvm.hotspot.ui.tree;
|
/openjdk7/jdk/src/share/classes/javax/print/ |
H A D | ServiceUIFactory.java | 117 * @param ui type in which the role is requested. 120 * @throws IllegalArgumentException if the role or ui is neither 124 public abstract Object getUI(int role, String ui) ; argument
|
/openjdk7/jdk/test/javax/swing/JSlider/6918861/ |
H A D | bug6918861.java | 43 HackedSynthSliderUI ui = new HackedSynthSliderUI(slider); 45 slider.setUI(ui); 47 if (ui.counter != 111) { 53 if (ui.counter != 0) {
|
/openjdk7/jdk/src/share/classes/javax/swing/plaf/multi/ |
H A D | MultiLookAndFeel.java | 225 ComponentUI ui; 229 ui = UIManager.getDefaults().getUI(target); 230 if (ui != null) { 231 uis.addElement(ui); 236 ui = auxiliaryLookAndFeels[i].getDefaults().getUI(target); 237 if (ui != null) { 238 uis.addElement(ui);
|
/openjdk7/jdk/test/javax/swing/JScrollBar/6542335/ |
H A D | bug6542335.java | 40 private static MyScrollBarUI ui; field in class:bug6542335 57 ui = new MyScrollBarUI(); 58 sb.setUI(ui); 79 thumbBounds[0] = new Rectangle(ui.getThumbBounds()); 93 Rectangle newThumbBounds = ui.getThumbBounds();
|