Searched defs:tempRect (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/swing/
H A DTablePrintable.java136 private final Rectangle tempRect = new Rectangle(0, 0, 0, 0); field in class:TablePrintable
341 tempRect.x = 0;
342 tempRect.y = 0;
343 tempRect.width = imgWidth;
344 tempRect.height = availableSpace;
345 g2d.clip(tempRect);
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DBoxView.java71 tempRect = new Rectangle();
420 tempRect.x = x + getOffset(X_AXIS, i);
421 tempRect.y = y + getOffset(Y_AXIS, i);
422 tempRect.width = getSpan(X_AXIS, i);
423 tempRect.height = getSpan(Y_AXIS, i);
424 int trx0 = tempRect.x, trx1 = trx0 + tempRect.width;
425 int try0 = tempRect.y, try1 = try0 + tempRect.height;
433 paintChild(g, tempRect,
1187 Rectangle tempRect; field in class:BoxView
[all...]

Completed in 33 milliseconds