Searched refs:cellHeight (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h47 jint cellHeight; member in struct:__anon796
75 jint cellWidth, jint cellHeight,
H A DAccelGlyphCache.c64 jint cellWidth, jint cellHeight,
83 gcinfo->cellHeight = cellHeight;
116 (glyph->height > cache->cellHeight))
132 y += cache->cellHeight;
133 if ((y + cache->cellHeight) > cache->height) {
63 AccelGlyphCache_Init(jint width, jint height, jint cellWidth, jint cellHeight, FlushFunc *func) argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DGridBagLayout.java1620 int cellHeight = r.height;
1650 alignOnBaseline(constraints, r, cellY, cellHeight);
1656 alignOnBaseline(constraints, r, cellY, cellHeight);
1662 alignOnBaseline(constraints, r, cellY, cellHeight);
1666 alignAboveBaseline(constraints, r, cellY, cellHeight);
1672 alignAboveBaseline(constraints, r, cellY, cellHeight);
1678 alignAboveBaseline(constraints, r, cellY, cellHeight);
1682 alignBelowBaseline(constraints, r, cellY, cellHeight);
1688 alignBelowBaseline(constraints, r, cellY, cellHeight);
1694 alignBelowBaseline(constraints, r, cellY, cellHeight);
1776 alignOnBaseline(GridBagConstraints cons, Rectangle r, int cellY, int cellHeight) argument
1911 alignAboveBaseline(GridBagConstraints cons, Rectangle r, int cellY, int cellHeight) argument
1943 alignBelowBaseline(GridBagConstraints cons, Rectangle r, int cellY, int cellHeight) argument
1963 centerVertically(GridBagConstraints cons, Rectangle r, int cellHeight) argument
[all...]
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java57 int cellHeight = 15; field in class:SpreadSheet
106 cellHeight - 2);
116 inputArea = new SpreadSheetInput(null, this, d.width - 2, cellHeight - 1,
119 (rows + 3) * cellHeight + titleHeight);
171 cy = ((i + 1) * cellHeight) + 2 + titleHeight;
255 g.fillRect(0, cellHeight, d.width, cellHeight);
258 cy = (i + 2) * cellHeight;
268 cy = (rows + 3) * cellHeight + (cellHeight /
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java74 protected int cellHeight = -1; field in class:BasicListUI
902 cellWidth = cellHeight = -1;
1018 y += cellHeight * row;
1019 h = cellHeight;
1024 y += (cellHeight * row);
1095 return cellHeight;
1100 return (cellHeights == null) ? cellHeight :
1118 int row = (cellHeight == 0) ? 0 :
1119 ((y0 - insets.top) / cellHeight);
1318 * Recompute the value of cellHeight o
[all...]
H A DBasicTabbedPaneUI.java689 int cellHeight = maxTabHeight - tabInsets.top - tabInsets.bottom;
691 (cellHeight - pref.height) / 2 + tabInsets.top;
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTabbedPaneCopyFromBasicUI.java658 final int cellHeight = maxTabHeight - tabInsets.top - tabInsets.bottom;
659 return c.getBaseline(pref.width, pref.height) + (cellHeight - pref.height) / 2 + tabInsets.top;

Completed in 66 milliseconds