HomeSort by relevance Sort by last modified time
    Searched full:rectangle (Results 1 - 25 of 865) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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/clang/test/FixIt/
typo.c 5 // RUN: grep "Rectangle" %t
10 struct Rectangle {
18 struct Rectangle bounds; // expected-note{{'bounds' declared here}}
24 topleft.x = 3.14, // expected-error{{field designator 'topleft' does not refer to any field in type 'struct Rectangle'; did you mean 'top_left'?}}
29 Rectangle r1; // expected-error{{must use 'struct' tag to refer to type 'Rectangle'}}
32 typedef struct Rectangle Rectangle; // expected-note{{'Rectangle' declared here}}
33 rectangle *r2 = &r1; // expected-error{{unknown type name 'rectangle'; did you mean 'Rectangle'?}
    [all...]
  /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/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...]
MarqueeGesture.java 23 import org.eclipse.swt.graphics.Rectangle;
31 * A {@link MarqueeGesture} is a gesture for swiping out a selection rectangle.
32 * With a modifier key, items that intersect the rectangle can be toggled
93 * overlay rectangle matching the mouse coordinate delta between gesture
97 /** Rectangle border color. */
100 /** Rectangle fill color. */
103 /** Current rectangle coordinates (in terms of control coordinates). */
104 private Rectangle mRectangle = new Rectangle(0, 0, 0, 0);
117 * Updates the size of the marquee rectangle
    [all...]
  /external/skia/include/core/
SkRect.h 18 SkIRect holds four 32 bit integer coordinates for a rectangle
63 * Returns the rectangle's width. This does not check for a valid rect
69 * Returns the rectangle's height. This does not check for a valid rect
75 * Return true if the rectangle's width or height are <= 0
92 /** Set the rectangle to (0,0,0,0)
115 * Make the largest representable rectangle
123 * Make the largest representable rectangle, but inverted (e.g. fLeft will
131 /** Offset set the rectangle by adding dx to its left and right,
145 /** Inset the rectangle by (dx,dy). If dx is positive, then the sides are moved inwards,
146 making the rectangle narrower. If dx is negative, then the sides are moved outwards
    [all...]
  /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 {
  /sdk/rule_api/src/com/android/ide/common/api/
Rect.java 25 * Mutable rectangle bounds.
40 /** Initialize an invalid rectangle. */
44 /** Initialize rectangle to the given values. They can be invalid. */
49 /** Initialize rectangle to the given values. They can be invalid. */
54 /** Initialize rectangle to the given values. They can be invalid. */
64 /** Initialize rectangle to match the given one. */
71 /** Returns a new instance of a rectangle with the same values. */
77 /** Returns true if the rectangle has valid bounds, i.e. w>0 and h>0. */
82 /** Returns true if the rectangle contains the x,y coordinates, borders included. */
91 /** Returns true if the rectangle contains the x,y coordinates, borders included. *
    [all...]
  /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/webkit/Source/WebCore/manual-tests/
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/zxing/qr_scanner/res/values/
strings.xml 3 <!-- Caption shown below the viewfinder rectangle, explaining how to scan a QR code [CHAR LIMIT=NONE] -->
4 <string name="msg_default_status">Place a QR code inside the viewfinder rectangle to scan it.</string>
  /external/skia/include/gpu/
GrTexture.h 57 * Read a rectangle of pixels from the texture.
58 * @param left left edge of the rectangle to read (inclusive)
59 * @param top top edge of the rectangle to read (inclusive)
60 * @param width width of rectangle to read in pixels.
61 * @param height height of rectangle to read in pixels.
63 * @param buffer memory to read the rectangle into.
75 * Writes a rectangle of pixels to the texture.
76 * @param left left edge of the rectangle to write (inclusive)
77 * @param top top edge of the rectangle to write (inclusive)
78 * @param width width of rectangle to write in pixels
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RegionTest.java 177 // Only one rectangle
182 // More than one rectangle
193 // This region not contains expected rectangle.
196 // This region contains only one rectangle and it is the expected one.
199 // This region contains more than one rectangle.
206 // This region not contains expected rectangle.
209 // This region contains only one rectangle and it is the expected one.
212 // This region contains more than one rectangle.
228 // union null rectangle
233 // 1. union rectangle inside this regio
    [all...]
  /cts/apps/CtsVerifier/res/drawable/
test_fail_gradient.xml 1 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
test_pass_gradient.xml 1 <shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle">
  /sdk/assetstudio/src/com/android/assetstudiolib/
ActionBarIconGenerator.java 23 import java.awt.Rectangle;
37 Rectangle iconSizeMdpi = new Rectangle(0, 0, 32, 32);
38 Rectangle targetRectMdpi = new Rectangle(4, 4, 24, 24);
40 Rectangle imageRect = Util.scaleRectangle(iconSizeMdpi, scaleFactor);
41 Rectangle targetRect = Util.scaleRectangle(targetRectMdpi, scaleFactor);
MenuIconGenerator.java 26 import java.awt.Rectangle;
39 Rectangle imageSizeHdpi = new Rectangle(0, 0, 48, 48);
40 Rectangle targetRectHdpi = new Rectangle(8, 8, 32, 32);
42 Rectangle imageRect = Util.scaleRectangle(imageSizeHdpi, scaleFactor);
43 Rectangle targetRect = Util.scaleRectangle(targetRectHdpi, scaleFactor);
  /sdk/chimpchat/src/com/android/chimpchat/core/
ChimpRect.java 35 * @param left The X coordinate of the left side of the rectangle
36 * @param top The Y coordinate of the top of the rectangle
37 * @param right The X coordinate of the right side of the rectangle
38 * @param bottom The Y coordinate of the bottom of the rectangle
50 * @return True if the object is an equivalent rectangle, false otherwise.
66 * @return the width of the rectangle
74 * @return the height of the rectangle
93 * Returns a representation of the rectangle in string form
94 * @return a string representation of the rectangle
  /sdk/monkeyrunner/src/com/android/monkeyrunner/
MonkeyRect.java 41 @MonkeyRunnerExported(doc = "The x coordinate of the left side of the rectangle")
43 @MonkeyRunnerExported(doc = "The y coordinate of the top side of the rectangle")
45 @MonkeyRunnerExported(doc = "The x coordinate of the right side of the rectangle")
47 @MonkeyRunnerExported(doc = "The y coordinate of the bottom side of the rectangle")
62 @MonkeyRunnerExported(doc = "Returns the width of the rectangle",
63 returns = "The width of the rectangle as an integer")
68 @MonkeyRunnerExported(doc = "Returns the height of the rectangle",
69 returns = "The height of the rectangle as an integer")
75 "the center of the rectangle",

Completed in 4299 milliseconds

1 2 3 4 5 6 7 8 91011>>