Searched refs:bounds (Results 201 - 225 of 230) sorted by relevance

12345678910

/openjdk7/jdk/src/share/classes/javax/swing/text/html/
H A DMap.java390 bounds = null;
/openjdk7/jdk/src/share/native/sun/awt/image/
H A DBufImgSurfaceData.c189 SurfaceData_IntersectBounds(&pRasInfo->bounds, &bisdo->rasbounds);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/tree/
H A DTreeCopier.java367 List<JCExpression> bounds = copy(t.bounds, p);
368 return M.at(t.pos).TypeParameter(t.name, bounds);
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
H A DPretty.java1183 if (tree.bounds.nonEmpty()) {
1185 printExprs(tree.bounds, " & ");
H A DTreeMaker.java444 public JCTypeParameter TypeParameter(Name name, List<JCExpression> bounds) { argument
445 JCTypeParameter tree = new JCTypeParameter(name, bounds);
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXBaseMenuWindow.java202 * given bounds of item with submenu and
416 Rectangle bounds = null;
440 bounds = menuWindowToShow.getParentMenuWindow().getSubmenuBounds(submenuToShow.getBounds(), dim);
441 menuWindowToShow.show(bounds);
667 //Window should be moved if it's outside top-left screen bounds
696 //Window should be moved if it's outside bottom-left screen bounds
725 //Window should be moved if it's outside top-left screen bounds
754 //Window should be moved if it's outside top-right screen bounds
H A DXChoicePeer.java630 * in order to keep actual bounds of the choice
673 * in order to keep actual bounds of the choice
766 // Reset bounds(we'll set them later), set overrideRedirect
771 // Generally, bounds should be:
987 Rectangle bounds = getBounds();
988 if (!helper.isInVertSB(bounds, local.x, local.y)) {
H A DXEmbedCanvasPeer.java321 Rectangle bounds = getClientBounds();
322 xembedLog.finer("Child resized: " + bounds);
328 // setBounds(my_bounds.x, my_bounds.y, bounds.width, bounds.height, SET_BOUNDS);
H A DXComponentPeer.java118 XComponentPeer(Component target, long parentWindow, Rectangle bounds) { argument
119 super(target, parentWindow, bounds);
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DCheck.java517 /** Check that a type is within some bounds.
570 * @param noBounds True if type bounds are illegal here.
782 // bounds (for upper and lower bound
783 // calculations). So we create new bounds where
802 List<Type> bounds = bounds_buf.toList();
804 while (args.nonEmpty() && bounds.nonEmpty()) {
807 !bounds.head.isErroneous() &&
808 !checkExtends(actual, bounds.head)) {
812 bounds = bounds
[all...]
H A DResolve.java355 // Check type arguments are within bounds
359 List<Type> bounds = types.subst(types.getBounds((TypeVar)formals.head),
361 for (; bounds.nonEmpty(); bounds = bounds.tail)
362 if (!types.isSubtypeUnchecked(actuals.head, bounds.head, warn))
363 throw inapplicableMethodException.setMessage("explicit.param.do.not.conform.to.bounds",actuals.head, bounds);
/openjdk7/jdk/src/share/classes/javax/swing/plaf/basic/
H A DBasicTableUI.java1761 Rectangle bounds = table.getBounds();
1763 // into the table's bounds
1764 bounds.x = bounds.y = 0;
1768 // when the clip doesn't intersect our bounds at all
1769 !bounds.intersects(clip)) {
1783 // This should never happen (as long as our bounds intersect the clip,
1789 // (We could also get -1 if our bounds don't intersect the clip,
/openjdk7/jdk/src/solaris/native/sun/awt/
H A Dawt_GraphicsEnv.c1434 jobject bounds = NULL;
1444 bounds = (*env)->NewObject(env, clazz, mid, fbrects[screen].x,
1450 bounds = (*env)->NewObject(env, clazz, mid, 0, 0,
1461 return bounds;
/openjdk7/jdk/src/macosx/native/sun/java2d/opengl/
H A DCGLSurfaceData.m318 * bounds in the given OGLSDOps. Returns JNI_TRUE if the operation was
344 NSRect surfaceBounds = [v bounds];
/openjdk7/jdk/src/share/classes/sun/print/
H A DPathGraphics.java382 * longer axis of the bounds.
426 * longer axis of the bounds.
906 Rectangle2D bounds = font.getStringBounds(str, gvFrc);
907 float strAdvanceX = (float)bounds.getWidth();
1726 /* if src area is beyond the bounds of the image, we must clip it.
/openjdk7/jdk/src/share/classes/java/math/
H A DBigDecimal.java395 // use array bounds checking to handle too-long, len == 0,
3488 long[] bounds = THRESHOLDS_TABLE;
3489 if (n < tab.length && n < bounds.length) {
3493 if (Math.abs(val) <= bounds[n])
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/jvm/
H A DClassWriter.java407 List<Type> bounds = types.getBounds(tvar);
408 if ((bounds.head.tsym.flags() & INTERFACE) != 0) {
411 for (List<Type> l = bounds; l.nonEmpty(); l = l.tail) {
H A DCRTable.java507 sr.mergeWith(csp(tree.bounds));
H A DClassReader.java844 List<Type> bounds = List.nil();
852 bounds = bounds.prepend(sigToType());
855 types.setBounds(tvar, bounds.reverse(), st);
/openjdk7/jdk/src/macosx/native/sun/awt/
H A DAWTView.m232 if ([self mouse: localPoint inRect: [self bounds]]) {
1335 NSRect viewBounds = [view bounds];
/openjdk7/jdk/src/share/demo/java2d/J2DBench/src/j2dbench/tests/
H A DRenderTests.java393 Rectangle2D bounds = new Rectangle2D.Float(0, 0, size, size);
394 return new TexturePaint(img, bounds);
/openjdk7/jdk/src/share/classes/sun/swing/
H A DFilePane.java245 Rectangle bounds = list.getCellBounds(i, i);
246 list.repaint(bounds);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/corba/
H A DAnyImpl.java493 } catch (Bounds bounds) { // impossible
/openjdk7/jdk/src/macosx/classes/sun/lwawt/
H A DLWWindowPeer.java59 // Window bounds reported by the native system (as opposed to
60 // regular bounds inherited from LWComponentPeer which are
144 // bounds when the window is shown, see 4868278
405 // Get updated bounds, so we don't have to handle 'op' here manually
598 public void setMaximizedBounds(Rectangle bounds) { argument
691 // First, update peer's bounds
874 // check if we receive mouseEvent from outside the window's bounds

Completed in 138 milliseconds

12345678910