Searched refs:cellWidth (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.h46 jint cellWidth; member in struct:__anon796
75 jint cellWidth, jint cellHeight,
H A DAccelGlyphCache.c64 jint cellWidth, jint cellHeight,
82 gcinfo->cellWidth = cellWidth;
115 if ((glyph->width > cache->cellWidth) ||
128 x = cache->tail->x + cache->cellWidth;
130 if ((x + cache->cellWidth) > cache->width) {
63 AccelGlyphCache_Init(jint width, jint height, jint cellWidth, jint cellHeight, FlushFunc *func) argument
/openjdk7/jdk/src/share/demo/applets/SpreadSheet/
H A DSpreadSheet.java56 int cellWidth = 100; field in class:SpreadSheet
105 cellWidth - 2,
118 resize(columns * cellWidth + rowLabelWidth,
170 cx = (j * cellWidth) + 2 + rowLabelWidth;
270 cx = i * cellWidth;
278 cx + rowLabelWidth + (cellWidth / 2),
285 cx = (j * cellWidth) + 2 + rowLabelWidth;
329 selectedColumn = (x - rowLabelWidth) / cellWidth;
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java75 protected int cellWidth = -1; field in class:BasicListUI
586 int width = cellWidth * columnCount + insets.left + insets.right;
902 cellWidth = cellHeight = -1;
1007 int w = cellWidth;
1014 x = insets.left + column * cellWidth;
1016 x = list.getWidth() - insets.right - (column+1) * cellWidth;
1161 x = column * cellWidth;
1163 x = list.getWidth() - (column+1)*cellWidth - list.getInsets().right;
1236 if (cellWidth > 0) {
1243 col = (x - insets.left) / cellWidth;
[all...]

Completed in 34 milliseconds