Searched refs:bounds (Results 126 - 150 of 230) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/swing/plaf/metal/
H A DMetalTreeUI.java216 Insets insets, Rectangle bounds,
222 super.paintHorizontalPartOfLeg(g, clipBounds, insets, bounds,
215 paintHorizontalPartOfLeg(Graphics g, Rectangle clipBounds, Insets insets, Rectangle bounds, TreePath path, int row, boolean isExpanded, boolean hasBeenExpanded, boolean isLeaf) argument
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthLookAndFeel.java344 Rectangle bounds) {
345 paintRegion(state, g, bounds);
349 Rectangle bounds) {
354 if (bounds == null) {
361 x = bounds.x;
362 y = bounds.y;
363 width = bounds.width;
364 height = bounds.height;
343 updateSubregion(SynthContext state, Graphics g, Rectangle bounds) argument
348 paintRegion(SynthContext state, Graphics g, Rectangle bounds) argument
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteIndexed.c120 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
131 DstWriteXDither = pDstInfo->bounds.x1 & 7; \
168 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
182 DstWriteXDither = pDstInfo->bounds.x1 & 7; \
229 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3; \
240 DstWriteXDither = pDstInfo->bounds.x1 & 7; \
471 DstWriteYDither = (pDstInfo->bounds.y1 & 7) << 3;
492 DstWriteXDither = pDstInfo->bounds.x1 & 7;
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DWindowDimensions.java36 * If isClient is true, the bounds represent the client window area.
44 * If isClient is true, the bounds represent the client window area.
49 throw new IllegalArgumentException("Client bounds can't be null");
58 * If isClient is true, the bounds represent the client window area.
66 * If isClient is true, the bounds represent the client window area.
69 public WindowDimensions(Rectangle bounds, boolean isClient) { argument
70 this(bounds, null, isClient);
84 // Calculate client bounds
164 return "[" + loc + ", " + size + "(" +(isClientSizeSet?"client":"bounds") + ")+" + insets + "]";
H A DXWarningWindow.java244 Rectangle bounds = getBounds();
247 paint(g, 0, 0, bounds.width, bounds.height);
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...]
H A DXDecoratedPeer.java79 Rectangle bounds = (Rectangle)params.get(BOUNDS);
80 dimensions = new WindowDimensions(bounds, getRealInsets(), false);
138 Rectangle bounds = getShellBounds();
139 int nw = (bounds.width < minWidth) ? minWidth : bounds.width;
140 int nh = (bounds.height < minHeight) ? minHeight : bounds.height;
141 if (nw != bounds.width || nh != bounds.height) {
593 // Set location always sets bounds locatio
[all...]
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/motif/
H A DMotifComboBoxUI.java177 public void paintCurrentValue(Graphics g,Rectangle bounds,boolean hasFocus) { argument
192 currentValuePane.paintComponent(g,c,comboBox,bounds.x,bounds.y,
193 bounds.width,d.height);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/dynamicany/
H A DDynUnionImpl.java131 } catch (Bounds bounds) {
141 } catch (Bounds bounds) {
151 } catch (Bounds bounds) {
H A DDynEnumImpl.java100 } catch (Bounds bounds) {
/openjdk7/jdk/src/share/classes/sun/awt/
H A DEmbeddedFrame.java414 Rectangle bounds = getBoundsPrivate();
415 return new Point(bounds.x, bounds.y);
455 * Gets the bounds of this embedded frame as a rectangle specifying the
471 * @return a rectangle indicating this embedded frame's bounds
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DJavaTextAccessibility.m288 NSRect bounds;
289 bounds.origin.x = values[0];
290 bounds.origin.y = [[[[self view] window] screen] frame].size.height - values[1] - values[3]; //values[1] is y-coord from top-left of screen. Flip. Account for the height (values[3]) when flipping
291 bounds.size.width = values[2];
292 bounds.size.height = values[3];
293 NSValue *result = [NSValue valueWithRect:bounds];
H A DAWTSurfaceLayers.m80 CGFloat newY = windowLayer.bounds.size.height - rect.origin.y - rect.size.height;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DRangeSlider.java185 Rectangle bounds = metrics.getStringBounds(curS, g).getBounds();
186 if (bounds.width < endX - startX && bounds.height < barStartY) {
188 g.drawString(curS, startX + (endX - startX) / 2 - bounds.width / 2, barStartY / 2 + bounds.height / 2);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicComboBoxUI.java1206 public void paintCurrentValue(Graphics g,Rectangle bounds,boolean hasFocus) { argument
1249 int x = bounds.x, y = bounds.y, w = bounds.width, h = bounds.height;
1251 x = bounds.x + padding.left;
1252 y = bounds.y + padding.top;
1253 w = bounds.width - (padding.left + padding.right);
1254 h = bounds.height - (padding.top + padding.bottom);
1263 public void paintCurrentValueBackground(Graphics g,Rectangle bounds,boolea argument
[all...]
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJList.java1046 Rectangle bounds = getCellBounds(first, first);
1047 if (bounds != null) {
1048 SwingUtilities.computeIntersection(r.x, r.y, r.width, r.height, bounds);
1049 if (bounds.width == 0 || bounds.height == 0) {
1079 Rectangle bounds = getCellBounds(location, location);
1081 if (bounds != null) {
1082 SwingUtilities.computeIntersection(r.x, r.y, r.width, r.height, bounds);
1083 if (bounds.width == 0 || bounds
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/util/
H A DRichDiagnosticFormatter.java533 List<Type> bounds = bound != null ?
539 boolean boundErroneous = bounds.head == null ||
540 bounds.head.tag == NONE ||
541 bounds.head.tag == ERROR;
545 (boundErroneous ? ".1" : ""), t, bounds,
549 visit(bounds);
/openjdk7/jdk/src/windows/classes/sun/java2d/d3d/
H A DD3DScreenUpdateManager.java287 Rectangle bounds = AWTAccessor.getComponentAccessor().getBounds(target);
291 peer.handlePaint(0, 0, bounds.width, bounds.height);
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Data/src/com/sun/hotspot/igv/data/
H A DInputBlock.java43 private Rectangle bounds; field in class:InputBlock
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11PMBlitLoops.c269 srcInfo.bounds.x1 = 0;
270 srcInfo.bounds.y1 = 0;
271 srcInfo.bounds.x2 = width;
272 srcInfo.bounds.y2 = height;
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIWindowSurfaceData.h207 RECT bounds; member in struct:__anon1083
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWComponentPeer.java76 // peer's fields (e.g. bounds, background, font, etc.)
106 private final Rectangle bounds = new Rectangle(); field in class:LWComponentPeer
523 oldBounds = new Rectangle(bounds);
525 bounds.x = x;
526 bounds.y = y;
529 bounds.width = w;
530 bounds.height = h;
565 return bounds.getBounds();
572 return new Rectangle(bounds.width, 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/sun/awt/im/
H A DCompositionArea.java206 Rectangle2D bounds = composedTextLayout.getBounds();
218 int newWidth = (req==null) ? PASSIVE_WIDTH : (int)bounds.getWidth() + WIDTH_MARGIN;
/openjdk7/jdk/src/macosx/native/com/apple/laf/
H A DJRSUIController.m162 CGRect bounds = CGRectMake(x, y, w, h);
163 JRSUIControlDraw(gRenderer, control, cgRef, bounds);
248 CGRect bounds = CGRectMake(x, y, w, h);
251 return JRSUIControlGetHitPart(gRenderer, control, bounds, point);

Completed in 65 milliseconds

12345678910