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

/openjdk7/jdk/test/java/awt/Toolkit/ScreenInsetsTest/
H A DScreenInsetsTest.java68 Rectangle fBounds = f.getBounds();
70 if (fBounds.x < gcBounds.x)
72 fBounds.width -= (gcBounds.x - fBounds.x) * 2; // width is decreased
73 fBounds.x = gcBounds.x;
75 if (fBounds.y < gcBounds.y)
77 fBounds.height -= (gcBounds.y - fBounds.y) * 2; // height is decreased
78 fBounds.y = gcBounds.y;
80 Insets expected = new Insets(fBounds
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java52 private Rectangle fBounds; // bounds in user coordinates field in class:OSXSurfaceData
69 this.fBounds = new Rectangle(bounds.x, bounds.y, bounds.width, bounds.y + bounds.height);
119 return new Rectangle(fBounds.x, fBounds.y, fBounds.width, fBounds.height - fBounds.y);
127 fBounds.reshape(x, y, w, y + h);
751 setupGraphicsState(sg2d, primitiveType, sg2d.font, 0, 0, fBounds.width, fBounds
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DImageView.java106 private Rectangle fBounds; field in class:ImageView
138 fBounds = new Rectangle();
353 fBounds.setBounds(rect);
609 if (container != null && fBounds != null) {
610 container.repaint(delay, fBounds.x, fBounds.y, fBounds.width,
611 fBounds.height);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTreeUI.java326 protected Rectangle fBounds, fVisibleRect; field in class:AquaTreeUI.TreeArrowMouseInputHandler
357 fBounds = treeState.getBounds(fTrackingPath, boundsBuffer);
358 fBounds.x += fInsets.left;
359 fBounds.y += fInsets.top;
448 paintHorizontalPartOfLeg(g, fPathBounds, fInsets, fBounds, fTrackingPath, fTrackingRow, fIsExpanded, fHasBeenExpanded, fIsLeaf);
450 paintHorizontalPartOfLeg(g, fPathBounds, fInsets, fBounds, fTrackingPath, fTrackingRow, fIsExpanded, fHasBeenExpanded, fIsLeaf);
452 paintExpandControl(g, fPathBounds, fInsets, fBounds, fTrackingPath, fTrackingRow, fIsExpanded, fHasBeenExpanded, fIsLeaf);

Completed in 49 milliseconds