Searched refs:bounds (Results 176 - 200 of 230) sorted by relevance

12345678910

/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DInfer.java227 List<Type> bounds = types.getBounds((TypeVar)t);
230 for (Type bound : bounds) {
259 /** Instantiate undetermined type variable to the lub of all its lower bounds.
277 // bounds can cause lobounds that are above hibounds.
289 .setMessage("incompatible.upper.bounds",
333 // check bounds
353 //step 2 - replace synthetic vars in their bounds
386 // set up lower bounds constraints for undetvars
494 // check that inferred bounds conform to their bounds
[all...]
H A DAttr.java538 if (!tvar.bounds.isEmpty()) {
539 List<Type> bounds = List.of(attribType(tvar.bounds.head, env));
540 for (JCExpression bound : tvar.bounds.tail)
541 bounds = bounds.prepend(attribType(bound, env));
542 types.setBounds(a, bounds.reverse());
544 // if no bounds are given, assume a single bound of
1881 //bounds (JLS 15.12.2.8).
2984 if (tree.bounds
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/opengl/
H A DOGLTextRenderer.c44 * The following constants define the inner and outer bounds of the
162 * The current bounds of the "cached destination" texture, in destination
163 * coordinate space. The width/height of these bounds will not exceed the
164 * OGLTR_CACHED_DEST_WIDTH/HEIGHT values defined above. These bounds are
180 * The bounds of the previously rendered LCD glyph, in destination
181 * coordinate space. We use these bounds to determine whether the glyph
698 * the rectangle defined by bounds.
700 #define INTERSECTS(gx1, gy1, gx2, gy2, bounds) \
701 ((bounds.x2 > (gx1)) && (bounds
[all...]
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/ui/
H A DAnnotatedMemoryPanel.java137 Rectangle2D bounds = GraphicsUtilities.getStringBounds(unmappedAddrString, g);
138 lineHeight = (int) bounds.getHeight();
139 addrWidth = (int) bounds.getWidth();
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicListUI.java593 Rectangle bounds = getCellBounds(list, lastRow);
595 if (bounds != null) {
596 height = bounds.y + bounds.height + insets.bottom;
992 * Gets the bounds of the specified model index, returning the resulting
993 * bounds, or null if <code>index</code> is not valid.
1083 Rectangle bounds = getCellBounds(list, row, row);
1084 return bounds.y;
2629 Rectangle bounds = getCellBounds(list, firstIndex, lastIndex);
2631 if (bounds !
[all...]
H A DBasicComboPopup.java848 Rectangle bounds = new Rectangle( 0, 0, size.width - 1, size.height - 1 );
849 if ( !bounds.contains( e.getPoint() ) ) {
1205 * on the combo box location and the enclosing screen bounds. If
/openjdk7/jdk/src/share/classes/javax/swing/plaf/synth/
H A DSynthGraphicsUtils.java137 * @param iconR Rectangle to place icon bounds in
314 * @param bounds Bounds of the text to be drawn.
318 Rectangle bounds, int mnemonicIndex) {
319 paintText(ss, g, text, bounds.x, bounds.y, mnemonicIndex);
317 paintText(SynthContext ss, Graphics g, String text, Rectangle bounds, int mnemonicIndex) argument
H A DSynthTableUI.java316 Rectangle bounds = table.getBounds();
318 // into the table's bounds
319 bounds.x = bounds.y = 0;
323 // when the clip doesn't intersect our bounds at all
324 !bounds.intersects(clip)) {
339 // This should never happen (as long as our bounds intersect the clip,
345 // (We could also get -1 if our bounds don't intersect the clip,
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaSpinnerUI.java507 final Rectangle bounds = getBounds();
508 painter.paint(g, spinner, 0, 0, bounds.width, bounds.height);
/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DAccessibleHTML.java135 * Returns the bounds the root View will be rendered in.
565 * Checks whether the specified point is within this object's bounds,
607 * object's bounds in the coordinate space of the screen; null if
630 * Gets the bounds of this object in the form of a Rectangle object.
631 * The bounds specify this object's width, height, and location
634 * @return A rectangle indicating this component's bounds; null if
643 * Sets the bounds of this object in the form of a Rectangle object.
644 * The bounds specify this object's width, height, and location
647 * @param r rectangle indicating this component's bounds
715 Rectangle bounds
[all...]
/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/share/classes/sun/java2d/loops/
H A DGeneralRenderer.java372 int[] bounds = gl.getBounds();
373 clip.clipBoxToBounds(bounds);
374 int cx1 = bounds[0];
375 int cy1 = bounds[1];
376 int cx2 = bounds[2];
377 int cy2 = bounds[3];
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeTranslator.java372 tree.bounds = translate(tree.bounds);
H A DTreeScanner.java280 scan(tree.bounds);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/models/
H A DXSDFACM.java180 * Array of lower bounds for all the for elements (or wildcards)
188 * Array of upper bounds for all the for elements (or wildcards)
630 // Init counters and bounds for a{n,m} algorithm
631 int[] bounds = (int[]) leaf.getUserData();
632 if (bounds != null) {
634 fElemMapCounterLowerBound[fElemMapSize] = bounds[0];
635 fElemMapCounterUpperBound[fElemMapSize] = bounds[1];
1210 * (or a+) to check the n and m bounds.
1211 * Returns <code>null</code> if validation of bounds is
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DFixedHeightLayoutCache.java173 * Returns a rectangle giving the bounds needed to draw path.
245 * returned object is exactly at x, y you should get the bounds for
527 * Returns the bounds for the given node. If <code>childIndex</code>
528 * is -1, the bounds of <code>parent</code> are returned, otherwise
529 * the bounds of the node at <code>childIndex</code> are returned.
539 // Getting bounds for parent
552 Rectangle bounds = getNodeDimensions(value, row, level,
555 if(bounds == null)
561 placeIn.x = bounds.x;
564 placeIn.width = bounds
[all...]
/openjdk7/jdk/src/share/classes/sun/applet/
H A DAppletProps.java209 Rectangle fRect = parent.bounds();
/openjdk7/jdk/src/solaris/native/sun/java2d/loops/
H A Dvis_ByteGray_Mask.c357 pRasInfo->bounds.x1, pRasInfo->bounds.y1,
358 pRasInfo->bounds.x2, pRasInfo->bounds.y2,
/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServer.java174 public abstract Process startClient(Rectangle bounds[], long window); argument
/openjdk7/jdk/src/share/classes/javax/swing/
H A DJComponent.java1764 * bounds of those insets. Borders should be used (rather
3097 Rectangle bounds = parent.getBounds();
3099 dx += bounds.x;
3100 dy += bounds.y;
3117 * outside of the component's bounds and mouse motion
3147 * bounds and the mouse button continues to be held down; otherwise
4213 * Stores the bounds of this component into "return value"
4220 * @param rv the return value, modified to the component's bounds
4223 * component's bounds
4331 * rectangular bounds
[all...]
/openjdk7/jdk/src/share/native/sun/java2d/loops/
H A DLoopMacros.h2013 xlong += IntToLong(pSrcInfo->bounds.x1); \
2014 ylong += IntToLong(pSrcInfo->bounds.y1); \
2038 cx = pSrcInfo->bounds.x1; \
2039 cw = pSrcInfo->bounds.x2-cx; \
2041 cy = pSrcInfo->bounds.y1; \
2042 ch = pSrcInfo->bounds.y2-cy; \
2090 cx = pSrcInfo->bounds.x1; \
2091 cw = pSrcInfo->bounds.x2-cx; \
2093 cy = pSrcInfo->bounds.y1; \
2094 ch = pSrcInfo->bounds
[all...]
H A DAnyByteBinary.h190 jint srcx1 = (SRCINFO)->bounds.x1; \
191 jint dstx1 = (DSTINFO)->bounds.x1; \
646 jint srcx1 = pSrcInfo->bounds.x1; \
647 jint dstx1 = pDstInfo->bounds.x1; \
799 jint x1 = pRasInfo->bounds.x1; \
H A DGraphicsPrimitiveMgr.h520 SurfaceDataBounds *bounds);
547 void GrPrim_RefineBounds(SurfaceDataBounds *bounds, jint transX, jint transY,
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/View/src/com/sun/hotspot/igv/view/
H A DDiagramScene.java695 Rectangle bounds = this.getScrollPane().getBounds();
696 if (curWidth < bounds.width) {
697 offx = (bounds.width - curWidth) / 2;
700 if (curHeight < bounds.height) {
701 offy = (bounds.height - curHeight) / 2;
/openjdk7/jdk/src/share/classes/javax/swing/text/
H A DJTextComponent.java1887 * bounds, the method enforces these constraints silently, and
2778 * index into the string. The bounds are returned in local
2825 Shape bounds = rootView.modelToView(i,
2829 rect = (bounds instanceof Rectangle) ?
2830 (Rectangle)bounds : bounds.getBounds();
3551 throw new BadLocationException("Location out of bounds", index);
3707 Shape bounds = rootView.modelToView(startIndex,
3711 rect = (bounds instanceof Rectangle) ?
3712 (Rectangle)bounds
[all...]

Completed in 124 milliseconds

12345678910