Searched refs:bounds (Results 51 - 75 of 230) sorted by relevance

12345678910

/openjdk7/langtools/test/tools/apt/mirror/type/
H A DWildcardTyp.java139 Collection<ReferenceType> bounds = w.getLowerBounds();
140 int num = bounds.size();
144 res.add((num > 0) ? bounds.iterator().next() : null);
161 Collection<ReferenceType> bounds = w.getUpperBounds();
162 int num = bounds.size();
166 res.add((num > 0) ? bounds.iterator().next() : null);
/openjdk7/jdk/src/solaris/native/sun/java2d/x11/
H A DX11TextRenderer_md.c209 SurfaceDataBounds *bounds, ImageRef *glyphs, jint totalGlyphs)
243 xgcv.ts_x_origin = bounds->x1;
244 xgcv.ts_y_origin = bounds->y1;
249 cy1 = bounds->y1;
250 while (cy1 < bounds->y2) {
252 if (cy2 > bounds->y2) cy2 = bounds->y2;
254 cx1 = bounds->x1;
255 while (cx1 < bounds->x2) {
257 if (cx2 > bounds
207 AWTDrawGlyphList(JNIEnv *env, jobject xtr, jlong dstData, jlong gc, SurfaceDataBounds *bounds, ImageRef *glyphs, jint totalGlyphs) argument
[all...]
/openjdk7/jdk/src/windows/native/sun/java2d/windows/
H A DGDIBlitLoops.cpp67 srcInfo.bounds.x1 = srcx;
68 srcInfo.bounds.y1 = srcy;
69 srcInfo.bounds.x2 = srcx + width;
70 srcInfo.bounds.y2 = srcy + height;
87 // Intersect the source and dest rects. Note that the source blit bounds
88 // will be adjusted to the surfaces's bounds if needed.
89 SurfaceData_IntersectBlitBounds(&(srcInfo.bounds), &dstBounds,
92 srcx = srcInfo.bounds.x1;
93 srcy = srcInfo.bounds.y1;
96 width = srcInfo.bounds
[all...]
H A DGDIWindowSurfaceData.cpp144 ::GetClientRect(wsdo->window, &info->bounds);
146 ::OffsetRect(&info->bounds, wsdo->insets.left, wsdo->insets.top);
250 SurfaceDataBounds *bounds,
266 RECT rView ={bounds->x1, bounds->y1, bounds->x2, bounds->y2};
499 "GDIWindowSurfaceData: bounds changed");
537 SurfaceDataBounds *bounds,
577 bounds
249 GDIWinSD_CheckMonitorArea(GDIWinSDOps *wsdo, SurfaceDataBounds *bounds, HDC hDC) argument
536 GDIWinSD_SimpleClip(JNIEnv *env, GDIWinSDOps *wsdo, SurfaceDataBounds *bounds, HDC hDC) argument
704 SurfaceDataBounds *bounds = &pRasInfo->bounds; local
[all...]
/openjdk7/jdk/src/macosx/classes/sun/lwawt/macosx/
H A DCRobot.java154 * @param bounds the rect to capture in screen coordinates
158 public int [] getRGBPixels(final Rectangle bounds) { argument
159 int c[] = new int[bounds.width * bounds.height];
160 getScreenPixels(bounds, c);
/openjdk7/jdk/src/share/native/sun/awt/image/
H A DDataBufferNative.c43 lockInfo->bounds.x1 = x;
44 lockInfo->bounds.y1 = y;
45 lockInfo->bounds.x2 = x + 1;
46 lockInfo->bounds.y2 = y + 1;
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Graph/src/com/sun/hotspot/igv/graph/
H A DBlock.java39 private Rectangle bounds; field in class:Block
72 this.bounds = r;
76 return bounds;
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTesterClient.java45 public static void startClient(Rectangle bounds[], long window) throws Throwable { argument
47 getMethod("getTester", new Class[] {bounds.getClass(), Long.TYPE});
48 final Object tester = m_getTester.invoke(null, new Object[] {bounds, window});
H A DRunTestXEmbed.java48 public Process startClient(Rectangle bounds[], long window) { argument
52 for (int i = 0; i < bounds.length; i++) {
53 buf.append(" " + bounds[i].x);
54 buf.append(" " + bounds[i].y);
55 buf.append(" " + bounds[i].width);
56 buf.append(" " + bounds[i].height);
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DMaskFill.c64 rasInfo.bounds.x1 = x;
65 rasInfo.bounds.y1 = y;
66 rasInfo.bounds.x2 = x + w;
67 rasInfo.bounds.y2 = y + h;
72 if (rasInfo.bounds.x2 > rasInfo.bounds.x1 &&
73 rasInfo.bounds.y2 > rasInfo.bounds.y1)
78 jint width = rasInfo.bounds.x2 - rasInfo.bounds
[all...]
H A DFillParallelogram.c80 GrPrim_Sg2dGetClip(env, sg2d, &rasInfo.bounds);
81 SurfaceData_IntersectBoundsXYXY(&rasInfo.bounds, ix1, iy1, ix2, iy2);
82 if (rasInfo.bounds.y2 <= rasInfo.bounds.y1 ||
83 rasInfo.bounds.x2 <= rasInfo.bounds.x1)
92 ix1 = rasInfo.bounds.x1;
93 iy1 = rasInfo.bounds.y1;
94 ix2 = rasInfo.bounds.x2;
95 iy2 = rasInfo.bounds
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
H A DWildcardTypeImpl.java50 * Return the upper bounds of this wildcard type argument
52 * Return an empty array if no such bounds are explicitly given.
59 * Return the lower bounds of this wildcard type argument
61 * Return an empty array if no such bounds are explicitly given.
104 List<Type> bounds = getExtendsBounds(wildThing);
105 if (bounds.nonEmpty()) {
108 bounds = getSuperBounds(wildThing);
109 if (bounds.nonEmpty()) {
114 for (Type b : bounds) {
H A DTypeVariableImpl.java55 * Return the bounds of this type variable.
57 public com.sun.javadoc.Type[] bounds() { method in class:TypeVariableImpl
103 List<Type> bounds = getBounds(v, env);
104 if (bounds.nonEmpty()) {
106 for (Type b : bounds) {
116 * Get the bounds of a type variable as listed in the "extends" clause.
/openjdk7/jdk/test/javax/swing/JPopupMenu/6800513/
H A Dbug6800513.java95 Rectangle bounds = Util.invokeOnEDT(new Callable<Rectangle>() {
105 robot.mouseMove(bounds.x + bounds.width / 2, bounds.y + bounds.height / 2);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaPainter.java145 final Rectangle bounds) {
146 if (bounds.width <= 0 || bounds.height <= 0) {
156 final int imgW = bounds.width * scale;
157 final int imgH = bounds.height * scale;
167 imgW, imgH, 0, 0, bounds.width, bounds.height);
171 g.drawImage(img, bounds.x, bounds.y, bounds
143 paintFromSingleCachedImage(final Graphics2D g, final JRSUIControl control, final JRSUIState controlState, final Rectangle bounds) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DGraphicComponent.java163 Rectangle2D bounds = graphic.getBounds();
165 float width = (float) bounds.getWidth() +
168 return new Rectangle2D.Float((float) bounds.getX(),
169 (float) bounds.getY(),
171 (float) bounds.getHeight());
203 Rectangle2D.Float bounds = new Rectangle2D.Float();
204 bounds.setRect(visualBounds);
205 return bounds;
282 Rectangle2D bounds = graphic.getBounds();
286 charBounds.setRect(bounds);
[all...]
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/
H A DBoundedZoomAction.java97 Rectangle bounds = new Rectangle(scene.getBounds());
118 bounds.width /= zoomMultiplier;
119 bounds.height /= zoomMultiplier;
130 bounds.width *= zoomMultiplier;
131 bounds.height *= zoomMultiplier;
146 bounds.width /= zoomMultiplier;
147 bounds.height /= zoomMultiplier;
158 bounds.width *= zoomMultiplier;
159 bounds.height *= zoomMultiplier;
173 scene.resolveBounds(scene.getLocation(), bounds);
[all...]
/openjdk7/jdk/src/macosx/native/sun/awt/
H A Dawt_DrawingSurface.m60 dsi->bounds.x = JNFGetIntField(env, target, jf_x);
61 dsi->bounds.y = JNFGetIntField(env, target, jf_y);
62 dsi->bounds.width = JNFGetIntField(env, target, jf_width);
63 dsi->bounds.height = JNFGetIntField(env, target, jf_height);
66 dsi->clip = &(dsi->bounds);
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/gtk/
H A DGTKGraphicsUtils.java86 * @param bounds Bounds of the text to be drawn.
90 Rectangle bounds, int mnemonicIndex) {
106 // The "bounds" parameter encompasses only the actual text;
121 int x = bounds.x - totalFocus;
122 int y = bounds.y - totalFocus;
123 int w = bounds.width + (2 * totalFocus);
124 int h = bounds.height + (2 * totalFocus);
133 super.paintText(context, g, text, bounds, mnemonicIndex);
89 paintText(SynthContext context, Graphics g, String text, Rectangle bounds, int mnemonicIndex) argument
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXMenuBarPeer.java246 //We need maximum height before calculating item's bounds
256 //Calculate bounds
277 Rectangle bounds = new Rectangle(nextOffset, BAR_SPACING_TOP, itemWidth, itemHeight);
278 //text should be centered vertically in menu item's bounds
282 item.map(bounds, textOrigin);
284 Rectangle bounds = new Rectangle(nextOffset, BAR_SPACING_TOP, 0, 0);
425 Rectangle bounds = item.getBounds();
429 g.fillRect(bounds.x, bounds.y, bounds
[all...]
/openjdk7/langtools/test/tools/javac/processing/model/element/
H A DTypeParamBounds.java56 // For each type parameter of Gen, compare its bounds with the
57 // bounds that are expected.
61 List<? extends TypeMirror> bounds = tparam.getBounds();
64 if (bounds.size() != expected.length)
67 for (TypeMirror bound : bounds) {
83 // The names of the bounds of each type parameter of Gen.
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotation.java115 Rectangle2D bounds = GraphicsUtilities.getStringBounds(s, g);
116 width = Math.max(width, (int) bounds.getWidth());
117 height += (int) bounds.getHeight();
118 heights.add(new Integer((int) bounds.getHeight()));
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DHighlighter.java120 * @param bounds the bounding box for the highlight
123 public void paint(Graphics g, int p0, int p1, Shape bounds, JTextComponent c); argument
/openjdk7/jdk/src/share/classes/java/awt/im/spi/
H A DInputMethod.java249 * @param bounds client window's {@link
250 * java.awt.Component#getBounds bounds} on the screen; or null if
253 public void notifyClientWindowChange(Rectangle bounds); argument
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsComboBoxUI.java250 * @param bounds Region to paint current value to
255 public void paintCurrentValue(Graphics g, Rectangle bounds, argument
259 bounds.x += 2;
260 bounds.y += 2;
261 bounds.width -= 4;
262 bounds.height -= 4;
264 bounds.x += 1;
265 bounds.y += 1;
266 bounds.width -= 2;
267 bounds
319 paintCurrentValueBackground(Graphics g, Rectangle bounds, boolean hasFocus) argument
[all...]

Completed in 48 milliseconds

12345678910