/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
IncludeOverlayTest.java | 18 import org.eclipse.swt.graphics.Rectangle; 31 checkSubtract(new Rectangle(0, 0, 100, 80), Collections.<Rectangle> emptyList()); 33 checkSubtract(new Rectangle(0, 0, 100, 80), Arrays.asList(new Rectangle(50, 50, 20, 20))); 35 checkSubtract(new Rectangle(0, 0, 100, 80), Arrays.asList(new Rectangle(50, 50, 20, 20), 36 new Rectangle(90, 90, 10, 10))); 38 checkSubtract(new Rectangle(0, 0, 100, 80), Arrays.asList(new Rectangle(50, 50, 20, 20) [all...] |
/external/qemu/distrib/sdl-1.2.15/docs/man3/ |
SDL_GetClipRect.3 | 3 SDL_GetClipRect \- Gets the clipping rectangle for a surface\&. 11 Gets the clipping rectangle for a surface\&. When this surface is the destination of a blit, only the area within the clip rectangle is drawn into\&. 13 The rectangle pointed to by \fBrect\fR will be filled with the clipping rectangle of the surface\&.
|
SDL_SetClipRect.3 | 3 SDL_SetClipRect \- Sets the clipping rectangle for a surface\&. 11 Sets the clipping rectangle for a surface\&. When this surface is the destination of a blit, only the area within the clip rectangle will be drawn into\&. 13 The rectangle pointed to by \fBrect\fR will be clipped to the edges of the surface so that the clip rectangle for a surface can never fall outside the edges of the surface\&. 15 If \fBrect\fR is \fBNULL\fP the clipping rectangle will be set to the full size of the surface\&.
|
SDL_FillRect.3 | 3 SDL_FillRect \- This function performs a fast fill of the given rectangle with some color 11 This function performs a fast fill of the given rectangle with \fBcolor\fR\&. If \fBdstrect\fR is \fBNULL\fP, the whole surface will be filled with \fBcolor\fR\&. 15 If there is a clip rectangle set on the destination (set via \fISDL_SetClipRect\fR) then this function will clip based on the intersection of the clip rectangle and the \fBdstrect\fR rectangle and the dstrect rectangle will be modified to represent the area actually filled\&.
|
SDL_Rect.3 | 16 Position of the upper-left corner of the rectangle 19 The width and height of the rectangle
|
/frameworks/base/graphics/java/android/graphics/ |
RectF.java | 27 * RectF holds four float coordinates for a rectangle. The rectangle is 30 * the rectangle's width and height. Note: most methods do not check to see that 45 * Create a new rectangle with the specified coordinates. Note: no range 49 * @param left The X coordinate of the left side of the rectangle 50 * @param top The Y coordinate of the top of the rectangle 51 * @param right The X coordinate of the right side of the rectangle 52 * @param bottom The Y coordinate of the bottom of the rectangle 62 * Create a new rectangle, initialized with the values in the specified 63 * rectangle (which is left unmodified) [all...] |
Rect.java | 27 * Rect holds four integer coordinates for a rectangle. The rectangle is 30 * the rectangle's width and height. Note: most methods do not check to see that 48 * Create a new rectangle with the specified coordinates. Note: no range 52 * @param left The X coordinate of the left side of the rectangle 53 * @param top The Y coordinate of the top of the rectangle 54 * @param right The X coordinate of the right side of the rectangle 55 * @param bottom The Y coordinate of the bottom of the rectangle 65 * Create a new rectangle, initialized with the values in the specified 66 * rectangle (which is left unmodified) [all...] |
/external/chromium_org/ui/gfx/ |
rect_base.h | 5 // A template for a simple rectangle class. The containment semantics 7 // contained by the rectangle, but the coordinate (x + width, y) is not. 60 // Shrink the rectangle by a horizontal and vertical distance on all sides. 65 // Shrink the rectangle by the given insets. 68 // Shrink the rectangle by the specified amount on each side. 71 // Move the rectangle by a horizontal and vertical distance. 86 // Returns true if the area of the rectangle is zero. 98 // this rectangle. The point (x, y) is inside the rectangle, but the 102 // Returns true if the specified point is contained by this rectangle [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/math/ |
Rectangle.java | 41 * <code>Rectangle</code> defines a finite plane within three dimensional space
43 * triangle with the forth point defining the rectangle ((B + C) - A.
49 public final class Rectangle implements Savable, Cloneable, java.io.Serializable {
56 * Constructor creates a new <code>Rectangle</code> with no defined corners.
57 * A, B, and C must be set to define a valid rectangle.
60 public Rectangle() {
67 * Constructor creates a new <code>Rectangle</code> with defined A, B, and C
68 * points that define the area of the rectangle.
71 * the first corner of the rectangle.
73 * the second corner of the rectangle. [all...] |
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/ |
IncludeOverlay.java | 25 import org.eclipse.swt.graphics.Rectangle; 55 List<Rectangle> includedBounds = viewHierarchy.getIncludedBounds(); 74 Rectangle whole = root.getAbsRect(); 75 whole = new Rectangle(whole.x, whole.y, whole.width + 1, whole.height + 1); 76 Collection<Rectangle> masks = subtractRectangles(whole, includedBounds); 78 for (Rectangle mask : masks) { 94 * Given a Rectangle, remove holes from it (specified as a collection of Rectangles) such 97 * @param rectangle the rectangle to subtract from 98 * @param holes the holes to subtract from the rectangle [all...] |
/external/clang/test/FixIt/ |
typo.c | 11 struct Rectangle { 19 struct Rectangle bounds; // expected-note{{'bounds' declared here}} 27 topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}} 33 Rectangle r1; // expected-error{{must use 'struct' tag to refer to type 'Rectangle'}} 37 typedef struct Rectangle Rectangle; // expected-note{{'Rectangle' declared here}} 38 rectangle *r2 = &r1; // expected-error{{unknown type name 'rectangle'; did you mean 'Rectangle'?} [all...] |
/development/samples/training/threadsample/res/drawable/ |
imagequeued.xml | 2 <shape android:shape="rectangle"
|
/external/chromium_org/ppapi/api/ |
pp_size.idl | 7 * This file defines the width and height of a 2D rectangle. 11 * The <code>PP_Size</code> struct contains the size of a 2D rectangle. 15 /** This value represents the width of the rectangle. */ 17 /** This value represents the height of the rectangle. */
|
/frameworks/base/media/java/android/media/videoeditor/ |
EffectKenBurns.java | 47 * @param startRect The start rectangle 48 * @param endRect The end rectangle 57 throw new IllegalArgumentException("Invalid Start rectangle"); 60 throw new IllegalArgumentException("Invalid End rectangle"); 69 * Get the start rectangle. 71 * @return The start rectangle 79 * Get the end rectangle. 81 * @return The end rectangle 88 * Get the KenBurn effect start and end rectangle coordinates 90 * rectangle coordinate [all...] |
/external/chromium/chrome/browser/userfeedback/proto/ |
math.proto | 18 // Axis-aligned rectangle in 2D space. 19 message Rectangle {
|
/external/chromium_org/ppapi/generators/test_namespace/ |
foo.idl | 14 /* This value represents the width of the rectangle. */ 16 /* This value represents the height of the rectangle. */
|
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
Rectangle.java | 26 public class Rectangle extends Quad { 28 public Rectangle() { 31 public Rectangle(float x, float y, float width, float height) { 38 public Rectangle(Point origin, Point size) { 45 public static Rectangle fromRotatedRect(Point center, Point size, float rotation) { 50 return new Rectangle(p0.rotatedAround(center, rotation), 56 private Rectangle(Point p0, Point p1, Point p2, Point p3) { 60 public static Rectangle fromCenterVerticalAxis(Point center, Point vAxis, Point size) { 63 return new Rectangle(center.minus(dx).minus(dy), 82 public Rectangle scaled(float s) [all...] |
/external/proguard/src/proguard/gui/splash/ |
RectangleSprite.java | 26 * This Sprite represents an animated rounded rectangle. It can optionally be filled. 44 * @param filled specifies whether the rectangle should be filled. 45 * @param color the variable color of the rectangle. 46 * @param x the variable x-ordinate of the upper-left corner of the rectangle. 47 * @param y the variable y-ordinate of the upper-left corner of the rectangle. 48 * @param width the variable width of the rectangle. 49 * @param height the variable height of the rectangle. 64 * @param filled specifies whether the rectangle should be filled. 65 * @param color the variable color of the rectangle. 66 * @param x the variable x-ordinate of the upper-left corner of the rectangle [all...] |
/external/jmonkeyengine/engine/src/core/com/jme3/font/ |
Rectangle.java | 36 * Defines a rectangle that can constrict a text paragraph. 39 public class Rectangle implements Cloneable { 45 * @param x the X value of the upper left corner of the rectangle 46 * @param y the Y value of the upper left corner of the rectangle 47 * @param width the width of the rectangle 48 * @param height the height of the rectangle 50 public Rectangle(float x, float y, float width, float height) { 58 public Rectangle clone(){ 60 return (Rectangle) super.clone();
|
/external/chromium_org/ppapi/cpp/ |
rect.h | 13 /// This file defines the APIs for creating a 2 dimensional rectangle. 17 /// A 2 dimensional rectangle. A rectangle is represented by x and y (which 18 /// identifies the upper-left corner of the rectangle), width, and height. 83 /// the origin of the rectangle and a pointer to a <code>Size</code> 203 /// @return The size of the rectangle. 218 /// rectangle. Note that this coordinate value is one past the highest x 219 /// value of pixels in the rectangle. This loop will access all the pixels 220 /// in a horizontal line in the rectangle: 229 /// rectangle. Note that this coordinate value is one past the highest x [all...] |
/external/chromium_org/third_party/skia/include/core/ |
SkRect.h | 18 SkIRect holds four 32 bit integer coordinates for a rectangle 69 * Returns the rectangle's width. This does not check for a valid rect 75 * Returns the rectangle's height. This does not check for a valid rect 99 * Return true if the rectangle's width or height are <= 0 121 /** Set the rectangle to (0,0,0,0) 144 * Make the largest representable rectangle 152 * Make the largest representable rectangle, but inverted (e.g. fLeft will 160 /** Offset set the rectangle by adding dx to its left and right, 184 /** Inset the rectangle by (dx,dy). If dx is positive, then the sides are moved inwards, 185 making the rectangle narrower. If dx is negative, then the sides are moved outwards [all...] |
/external/skia/include/core/ |
SkRect.h | 18 SkIRect holds four 32 bit integer coordinates for a rectangle 69 * Returns the rectangle's width. This does not check for a valid rect 75 * Returns the rectangle's height. This does not check for a valid rect 99 * Return true if the rectangle's width or height are <= 0 121 /** Set the rectangle to (0,0,0,0) 144 * Make the largest representable rectangle 152 * Make the largest representable rectangle, but inverted (e.g. fLeft will 160 /** Offset set the rectangle by adding dx to its left and right, 184 /** Inset the rectangle by (dx,dy). If dx is positive, then the sides are moved inwards, 185 making the rectangle narrower. If dx is negative, then the sides are moved outwards [all...] |
/external/chromium_org/third_party/WebKit/ManualTests/ |
transitions.html | 31 {className:"green", description:"instantly change into a rectangle and fade from yellow to green over 5 seconds"}, 33 {className:"square", description:"instantly change into a yellow rectangle and then animate into a big yellow square over 2 seconds"}, 34 {className:"green", description:"instantly change into a yellow rectangle and then animate to a green rectangle over 5 seconds"}, 36 {className:"green", description:"instantly change into a yellow rectangle and fade from yellow to green over 5 seconds"}, 37 {className:"square", description:"instantly change to a yellow rectangle and then animate into a large yellow square over 2 seconds"},
|
transitions2.html | 15 div.rectangle { 31 {className:"rectangle", description:"animate to a large rectangle over 5 seconds."}, 34 {className:"square", description:"instantly change into a small rectangle and then animate into a large square over 2 seconds"}, 35 {className:"rectangle", description:"animate to a large rectangle over 5 seconds"},
|
/external/chromium_org/chrome/browser/feedback/proto/ |
math.proto | 19 // Axis-aligned rectangle in 2D space. 20 message Rectangle {
|