Searched defs:bounds (Results 76 - 82 of 82) sorted by relevance

1234

/openjdk7/jdk/src/share/native/sun/font/
H A DfreetypeScaler.c1294 jobject bounds; local
1303 bounds = (*env)->NewObject(env,
1306 return bounds;
1313 bounds = (*env)->NewObject(env,
1317 bounds = (*env)->NewObject(env,
1326 return bounds;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXComponentPeer.java118 XComponentPeer(Component target, long parentWindow, Rectangle bounds) { argument
119 super(target, parentWindow, bounds);
H A DXWindow.java140 XWindow(long parentWindow, Rectangle bounds) { argument
142 BOUNDS, bounds,
146 XWindow(Component target, long parentWindow, Rectangle bounds) { argument
148 BOUNDS, bounds,
997 Rectangle bounds = getBounds();
998 if (!bounds.getSize().equals(oldBounds.getSize())) {
1001 if (!bounds.getLocation().equals(oldBounds.getLocation())) {
1280 public void reshape(Rectangle bounds) { argument
1281 reshape(bounds.x, bounds
[all...]
/openjdk7/jdk/src/macosx/classes/sun/java2d/
H A DOSXSurfaceData.java52 private Rectangle fBounds; // bounds in user coordinates
64 public OSXSurfaceData(SurfaceType sType, ColorModel cm, GraphicsConfiguration config, Rectangle bounds) { argument
69 this.fBounds = new Rectangle(bounds.x, bounds.y, bounds.width, bounds.y + bounds.height);
238 // bounds info
989 Rectangle bounds = gp.getBounds();
990 setupGraphicsState(sg2d, kShape, bounds
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTreeUI.java122 // WARNING: Be careful with the bounds held by treeState. They are
527 Rectangle bounds) {
528 bounds = treeState.getBounds(path, bounds);
529 if (bounds != null) {
531 bounds.x += insets.left;
533 bounds.x = tree.getWidth() - (bounds.x + bounds.width) -
536 bounds
526 getPathBounds(TreePath path, Insets insets, Rectangle bounds) argument
1346 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1477 paintExpandControl(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
1516 paintRow(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
2459 getRepaintPathBounds(Rectangle bounds) argument
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DJCTree.java1914 * @param bounds bounds
1918 public List<JCExpression> bounds; field in class:JCTree.JCTypeParameter
1919 protected JCTypeParameter(Name name, List<JCExpression> bounds) { argument
1921 this.bounds = bounds;
1929 return bounds;
2176 JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds); argument
/openjdk7/jdk/src/share/classes/java/awt/
H A DComponent.java105 * invalidated, like after changing the bounds of components, or
815 * Should only be used in subclass getBounds to check that part of bounds
1994 * the top-left corner of the component's bounds in
2009 * the top-left corner of the component's bounds in the
2199 * Gets the bounds of this component in the form of a
2200 * <code>Rectangle</code> object. The bounds specify this
2203 * @return a rectangle indicating this component's bounds
2209 return bounds();
2217 public Rectangle bounds() { method in class:Component
2451 * Stores the bounds o
[all...]

Completed in 79 milliseconds

1234