Searched refs:tempRect (Results 1 - 5 of 5) sorted by relevance

/openjdk7/jdk/src/solaris/classes/sun/awt/
H A DX11GraphicsEnvironment.java364 Rectangle unionRect, tempRect;
392 tempRect = getUsableBounds(gds[i]);
395 (tempRect.width / 2) + tempRect.x > center.x - 1 &&
396 (tempRect.height / 2) + tempRect.y > center.y - 1 &&
397 (tempRect.width / 2) + tempRect.x < center.x + 1 &&
398 (tempRect.height / 2) + tempRect
[all...]
/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...]
H A DCompositeView.java329 Rectangle tempRect = new Rectangle();
346 tempRect.setBounds(alloc);
347 childAllocation(counter, tempRect);
348 retRect.add(tempRect);
H A DParagraphView.java598 tempRect.x = x + getOffset(X_AXIS, 0);
599 tempRect.y = y + getOffset(Y_AXIS, 0);
600 tempRect.width = getSpan(X_AXIS, 0) - firstLineIndent;
601 tempRect.height = getSpan(Y_AXIS, 0);
602 if (tempRect.intersects(clip)) {
603 tempRect.x = tempRect.x - firstLineIndent;
604 paintChild(g, tempRect, 0);

Completed in 41 milliseconds