HomeSort by relevance Sort by last modified time
    Searched defs:Rect (Results 1 - 19 of 19) sorted by null

  /external/chromium/base/gfx/
rect.h 21 typedef struct tagRECT RECT;
28 class Rect {
30 Rect();
31 Rect(int width, int height);
32 Rect(int x, int y, int width, int height);
34 explicit Rect(const RECT& r);
36 explicit Rect(const CGRect& r);
38 explicit Rect(const GdkRectangle& r);
40 Rect(const gfx::Point& origin, const gfx::Size& size)
    [all...]
rect.cc 5 #include "base/gfx/rect.h"
35 Rect::Rect() {
38 Rect::Rect(int width, int height) {
43 Rect::Rect(int x, int y, int width, int height)
49 Rect::Rect(const gfx::Point& origin, const gfx::Size& size)
54 Rect::Rect(const RECT& r
    [all...]
  /external/webkit/WebCore/css/
Rect.h 52 class Rect : public RectBase, public RefCounted<Rect> {
54 static PassRefPtr<Rect> create() { return adoptRef(new Rect); }
57 Rect() { }
  /external/webkit/WebCore/html/
HTMLAreaElement.h 68 enum Shape { Default, Poly, Rect, Circle, Unknown };
  /external/webkit/WebKit/chromium/public/
WebRect.h 39 #include <base/gfx/rect.h>
91 WebRect(const gfx::Rect& r)
99 WebRect& operator=(const gfx::Rect& r)
108 operator gfx::Rect() const
110 return gfx::Rect(x, y, width, height);
  /external/libffi/testsuite/libffi.call/
pyobjc-tc.c 20 typedef struct Rect {
23 } Rect;
25 int doit(int o, char* s, Point p, Rect r, int last)
63 rect_type.size = 0;/*sizeof(Rect);*/
64 rect_type.alignment =0;/* __alignof__(Rect);*/
92 Rect r = { { 9.0, 10.0}, { -1.0, -2.0 } };
  /frameworks/base/include/ui/
Rect.h 23 #include <android/rect.h>
27 class Rect : public ARect
35 inline Rect() {
37 inline Rect(int32_t w, int32_t h) {
40 inline Rect(int32_t l, int32_t t, int32_t r, int32_t b) {
43 inline Rect(const Point& lt, const Point& rb) {
58 // an empty rect has a zero width or height, or is invalid
63 inline void set(const Rect& rhs) {
87 // the following 4 functions return the 4 corners of the rect as Point
102 inline bool operator == (const Rect& rhs) const
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/editors/layout/gscripts/
Rect.java 30 public class Rect {
34 public Rect() {
38 public Rect(int x, int y, int w, int h) {
43 public Rect(Rect r) {
48 public Rect(Rectangle swtRect) {
61 public void set(Rect r) {
71 public Rect copy() {
72 return new Rect(x, y, w, h);
98 public Rect moveTo(int x, int y)
    [all...]
  /cts/tests/tests/graphics/src/android/graphics/cts/
RectTest.java 19 import android.graphics.Rect;
27 @TestTargetClass(Rect.class)
29 private Rect mRect;
40 method = "Rect",
45 method = "Rect",
50 method = "Rect",
51 args = {android.graphics.Rect.class}
57 // new the Rect instance
58 mRect = new Rect();
61 // new the Rect instanc
65 Rect rect = new Rect(10, 10, 20, 20); local
94 Rect rect = new Rect(1, 2, 3, 4); local
261 Rect rect; local
393 Rect rect; local
461 Rect rect; local
562 Rect rect = new Rect(1, 2, 3, 4); local
665 Rect rect; local
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Rect.java 27 * Rect holds four integer coordinates for a rectangle. The rectangle is
33 public final class Rect implements Parcelable {
43 * Create a new empty Rect. All coordinates are initialized to 0.
45 public Rect() {}
57 public Rect(int left, int top, int right, int bottom) {
71 public Rect(Rect r) {
80 Rect r = (Rect) obj;
91 sb.append("Rect("); sb.append(left); sb.append(", ")
    [all...]
  /frameworks/base/opengl/libagl/
egl.cpp 243 struct Rect {
244 inline Rect() { };
245 inline Rect(int32_t w, int32_t h)
247 inline Rect(int32_t l, int32_t t, int32_t r, int32_t b)
249 Rect& andSelf(const Rect& r) {
272 typedef Rect const* const_iterator;
275 static Region subtract(const Rect& lhs, const Rect& rhs) {
277 Rect* storage = reg.storage
    [all...]
  /prebuilt/darwin-x86/swt/
swt.jar 
  /prebuilt/sdk/4/
android.jar 
  /prebuilt/sdk/5/
android.jar 
  /prebuilt/sdk/6/
android.jar 
  /prebuilt/sdk/7/
android.jar 
  /prebuilt/sdk/8/
android.jar 
  /prebuilt/windows/swt/
swt.jar 
  /prebuilt/windows-x86_64/swt/
swt.jar 

Completed in 280 milliseconds