Searched refs:preferredHeight (Results 1 - 11 of 11) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXCustomCursor.java48 static Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument
54 //Dimension d = new Dimension(Math.abs(preferredWidth), Math.abs(preferredHeight));
63 XlibWrapper.XQueryBestCursor(display,root_window, Math.abs(preferredWidth),Math.abs(preferredHeight),XlibWrapper.larg1,XlibWrapper.larg2);
H A DXToolkit.java1085 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument
1087 java.lang.Math.max(1,preferredWidth), java.lang.Math.max(1,preferredHeight));
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCCustomCursor.java114 public static Dimension getBestCursorSize(final int preferredWidth, final int preferredHeight) { argument
122 final Dimension d = new Dimension(Math.max(1, Math.abs(preferredWidth)), Math.max(1, Math.abs(preferredHeight)));
H A DLWCToolkit.java243 public Dimension getBestCursorSize(final int preferredWidth, final int preferredHeight) throws HeadlessException { argument
244 return CCustomCursor.getBestCursorSize(preferredWidth, preferredHeight);
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DVariableHeightLayoutCache.java1031 protected int preferredHeight; field in class:VariableHeightLayoutCache.TreeStateNode
1168 return preferredHeight;
1184 return (preferredHeight != 0);
1366 preferredWidth = preferredHeight = 0;
1371 preferredWidth = preferredHeight = 0;
1378 preferredHeight = getRowHeight();
1380 preferredHeight = bounds.height;
1389 preferredHeight = 0;
/openjdk7/jdk/src/share/classes/sun/awt/
H A DHToolkit.java230 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
H A DHeadlessToolkit.java252 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/motif/
H A DMToolkit.java560 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument
562 //java.lang.Math.max(1,preferredWidth), java.lang.Math.max(1,preferredHeight));
/openjdk7/jdk/src/share/classes/java/awt/
H A DToolkit.java1503 * @param preferredHeight the preferred cursor height the component would like
1513 int preferredHeight) throws HeadlessException {
1519 getBestCursorSize(preferredWidth, preferredHeight);
1512 getBestCursorSize(int preferredWidth, int preferredHeight) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java104 private int preferredHeight; field in class:BasicListUI
538 * <td>If the visible row count is greater than zero, the preferredHeight
549 * <td>If the visible row count is greater than zero, the preferredHeight
590 height = preferredHeight;
1396 * <code>preferredHeight</code> and potentially <code>cellHeight</code>
1410 preferredHeight = insets.top + insets.bottom;
1469 preferredHeight = rowsPerColumn * cellHeight + insets.top +
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWToolkit.java737 public Dimension getBestCursorSize(int preferredWidth, int preferredHeight) { argument

Completed in 70 milliseconds