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

1234

/openjdk7/jdk/test/java/awt/xembed/server/
H A DTestXEmbedServerJava.java77 public Process startClient(Rectangle[] bounds, long window) { argument
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);
H A DTestXEmbedServer.java174 public abstract Process startClient(Rectangle bounds[], long window); argument
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DTypeVariable.java33 * A type variable may have explicit bounds, as in
42 * Return the bounds of this type variable.
44 * Return an empty array if there are no explicit bounds.
46 * @return the bounds of this type variable.
48 Type[] bounds(); method in interface:TypeVariable
/openjdk7/jdk/src/solaris/native/sun/font/
H A DX11TextRenderer.c48 SurfaceDataBounds *bounds, ImageRef *glyphs, jint totalGlyphs);
61 SurfaceDataBounds bounds; local
62 Region_GetBounds(env, clip, &bounds);
67 if (!RefineBounds(gbv, &bounds)) {
72 &bounds, gbv->glyphs, gbv->numGlyphs);
/openjdk7/jdk/src/windows/native/sun/windows/
H A Dawt_Win32GraphicsConfig.cpp91 jobject bounds = NULL; local
98 bounds = env->NewObject(clazz, mid,
104 // 4910760 - don't return a null bounds, return the bounds of the
106 bounds = env->NewObject(clazz, mid,
115 return bounds;
/openjdk7/langtools/src/share/classes/com/sun/tools/javadoc/
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/src/share/classes/sun/reflect/generics/tree/
H A DFormalTypeParameter.java33 private FieldTypeSignature[] bounds; field in class:FormalTypeParameter
37 bounds = bs;
42 * Returns a formal type parameter with the requested name and bounds.
44 * @param bs - the bounds of the type variable to be created by this method.
45 * @return a formal type parameter with the requested name and bounds
51 public FieldTypeSignature[] getBounds(){return bounds;}
/openjdk7/jdk/src/share/native/sun/java2d/pipe/
H A DRegion.h69 SurfaceDataBounds bounds; member in struct:__anon931
90 * This function retrieves the bounds from a Java Region object and
102 * Intersect the specified SurfaceDataBounds with the bounds of
104 * subsequently honor those bounds.
107 SurfaceData_IntersectBounds(&(pRgnInfo)->bounds, pDstBounds)
110 * Intersect the specified bounding coordinates with the bounds of
112 * subsequently honor those bounds.
115 SurfaceData_IntersectBoundsXYXY(&(pRgnInfo)->bounds, x1, y1, x2, y2)
118 * Test whether the bounds of the specified RegionData structure
121 * Note that this test only checks the overall bounds o
[all...]
/openjdk7/jdk/src/share/classes/java/awt/peer/
H A DRobotPeer.java112 * @param bounds the screen area to capture the RGB values from
118 int[] getRGBPixels(Rectangle bounds); argument
H A DFramePeer.java91 * Sets the bounds of the frame when it becomes maximized.
93 * @param bounds the maximized bounds of the frame
97 void setMaximizedBounds(Rectangle bounds); argument
120 * @return the bounds of an embedded frame
/openjdk7/jdk/src/share/classes/com/sun/java/swing/plaf/windows/
H A DWindowsTextUI.java92 * @param bounds the bounding box for the highlight
95 public void paint(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c) { argument
96 Rectangle alloc = bounds.getBounds();
161 * @param bounds the bounding box of the view, which is not
168 Shape bounds, JTextComponent c, View view) {
186 // Contained in view, can just use bounds.
188 if (bounds instanceof Rectangle) {
189 alloc = (Rectangle)bounds;
192 alloc = bounds.getBounds();
213 bounds);
167 paintLayer(Graphics g, int offs0, int offs1, Shape bounds, JTextComponent c, View view) argument
[all...]
/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/src/macosx/classes/com/apple/laf/
H A DAquaHighlighter.java85 public void paint(final Graphics g, final int offs0, final int offs1, final Shape bounds, final JTextComponent c) { argument
87 super.paint(g, offs0, offs1, bounds, c);
90 public Shape paintLayer(final Graphics g, final int offs0, final int offs1, final Shape bounds, final JTextComponent c, final View view) { argument
92 return super.paintLayer(g, offs0, offs1, bounds, c, view);
/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/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/sun/awt/
H A DSunGraphicsCallback.java41 protected void constrainGraphics(Graphics g, Rectangle bounds) { argument
43 ((ConstrainableGraphics)g).constrain(bounds.x, bounds.y, bounds.width, bounds.height);
45 g.translate(bounds.x, bounds.y);
47 g.clipRect(0, 0, bounds.width, bounds.height);
50 public final void runOneComponent(Component comp, Rectangle bounds, argument
[all...]
/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/java/awt/font/
H A DGlyphMetrics.java65 * components of the advance, the visual bounds, and the left and right
79 * The bounds is the smallest rectangle that completely contains the
80 * outline of the glyph. The bounds rectangle is relative to the
82 * origin to the left of its bounds rectangle. If the left-side bearing is
84 * right-side bearing is the distance from the right side of the bounds
87 * origin. Note that the bounds does not necessarily enclose all the pixels
126 * The bounds of the associated glyph.
128 private Rectangle2D.Float bounds; field in class:GlyphMetrics
176 * @param bounds the black box bounds o
179 GlyphMetrics(float advance, Rectangle2D bounds, byte glyphType) argument
198 GlyphMetrics(boolean horizontal, float advanceX, float advanceY, Rectangle2D bounds, byte glyphType) argument
[all...]
/openjdk7/jdk/src/windows/classes/sun/awt/windows/
H A DWRobotPeer.java63 public int [] getRGBPixels(Rectangle bounds) { argument
64 int pixelArray[] = new int[bounds.width*bounds.height];
65 getRGBPixels(bounds.x, bounds.y, bounds.width, bounds.height, pixelArray);
/openjdk7/jdk/src/share/native/sun/awt/splashscreen/
H A Djava_awt_SplashScreen.c105 jobject bounds = NULL; local
121 bounds = (*env)->NewObject(env, clazz, mid, splash->x, splash->y,
124 bounds = NULL;
130 return bounds;
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DGenericsFactory.java51 * may be empty (but not <tt>null</tt>). If <tt>bounds</tt> is
54 * @param bounds An array of abstract syntax trees representing
58 * or any of the elements of <tt>bounds</tt> are <tt>null</tt>.
61 FieldTypeSignature[] bounds);
78 * bounds on the corresponding formal.
60 makeTypeVariable(String name, FieldTypeSignature[] bounds) argument
/openjdk7/jdk/src/share/classes/sun/reflect/generics/reflectiveObjects/
H A DTypeVariableImpl.java44 // upper bounds - evaluated lazily
45 private Type[] bounds; field in class:TypeVariableImpl
47 // The ASTs for the bounds. We are required to evaluate the bounds
49 // for the bounds. This also neatly solves the
50 // problem with F-bounds - you can't reify them before the formal
65 // accessor for ASTs for bounds. Must not be called after
66 // bounds have been evaluated, because we might throw the ASTs
69 // check that bounds were not evaluated yet
70 assert(bounds
[all...]
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DXContentWindow.java71 private XContentWindow(XDecoratedPeer parentFrame, Rectangle bounds) { argument
72 super((Component)parentFrame.getTarget(), parentFrame.getShell(), bounds);
111 // Bounds of content window are of the same size as bounds of Java window and with
118 if (insLog.isLoggable(PlatformLogger.FINE)) insLog.fine("Setting content bounds {0}, old bounds {1}",
137 public void handleResize(Rectangle bounds) { argument
138 AWTAccessor.getComponentAccessor().setSize((Component)target, bounds.width, bounds.height);

Completed in 89 milliseconds

1234