Searched defs:cellInfo (Results 1 - 4 of 4) sorted by relevance

/openjdk7/jdk/src/windows/native/sun/java2d/d3d/
H A DD3DGlyphCache.cpp140 CacheCellInfo *cellInfo = AccelGlyphCache_AddGlyph(pGlyphCache, glyph); local
141 if (cellInfo != NULL) {
146 cellInfo->x, cellInfo->y,
160 cellInfo->leftOff = pixelsTouchedL < threshold ? 1 : 0;
161 cellInfo->rightOff = pixelsTouchedR < threshold ? -1 : 0;
163 cellInfo->leftOff = 0;
164 cellInfo->rightOff = 0;
/openjdk7/jdk/src/share/native/sun/font/
H A DAccelGlyphCache.c93 * stored in the glyph's cellInfo field; otherwise, its cellInfo field is
318 AccelGlyphCache_AddCellInfo(GlyphInfo *glyph, CacheCellInfo *cellInfo) argument
320 // assert (glyph != NULL && cellInfo != NULL)
323 glyph, cellInfo);
325 cellInfo->glyphInfo = glyph;
326 cellInfo->nextGCI = glyph->cellInfo;
327 glyph->cellInfo = cellInfo;
335 AccelGlyphCache_RemoveCellInfo(GlyphInfo *glyph, CacheCellInfo *cellInfo) argument
400 CacheCellInfo *cellInfo = glyph->cellInfo; local
[all...]
H A Dfontscalerdefs.h108 void *cellInfo; member in struct:GlyphInfo
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java1761 TableCellElementInfo cellInfo = getCell(r, c);
1762 if (cellInfo != null) {
1763 return cellInfo.getAccessible();
2081 TableCellElementInfo cellInfo = getCell(r, 0);
2082 if (cellInfo.isHeaderCell()) {
2083 View v = cellInfo.getView();
2107 TableCellElementInfo cellInfo = getCell(0, c);
2108 if (cellInfo.isHeaderCell()) {
2109 View v = cellInfo.getView();
2124 public void addRowHeader(TableCellElementInfo cellInfo, in argument
2142 addHeader(TableCellElementInfo cellInfo, int rowNumber) argument
[all...]

Completed in 38 milliseconds