/prebuilts/go/darwin-x86/src/math/cmplx/ |
rect.go | 9 // Rect returns the complex number x with polar coordinates r, ?. 10 func Rect(r, ? float64) complex128 {
|
/prebuilts/go/linux-x86/src/math/cmplx/ |
rect.go | 9 // Rect returns the complex number x with polar coordinates r, ?. 10 func Rect(r, ? float64) complex128 {
|
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/graphics/ |
Rect.java | 19 public class Rect {
|
/external/skia/tools/lua/ |
skia.lua | 20 Sk.Rect = { left = 0, top = 0, right = 0, bottom = 0 } 21 Sk.Rect.__index = Sk.Rect 23 function Sk.Rect.new(l, t, r, b) 24 local rect 27 rect = { left = l, top = t, right = r, bottom = b } 30 rect = { right = l, bottom = t } 33 rect = {} 35 setmetatable(rect, Sk.Rect) [all...] |
/prebuilts/go/darwin-x86/test/fixedbugs/ |
bug281.go | 15 type Rect struct { 24 bbox Rect 27 func (o *Obj) Bbox() Rect { 38 o := &Obj{Rect{Point{800, 0}, Point{}}}
|
/prebuilts/go/linux-x86/test/fixedbugs/ |
bug281.go | 15 type Rect struct { 24 bbox Rect 27 func (o *Obj) Bbox() Rect { 38 o := &Obj{Rect{Point{800, 0}, Point{}}}
|
/frameworks/base/media/mca/filterfw/native/core/ |
geometry.h | 71 struct Rect { 74 Rect() { 79 Rect(float x, float y, float width, float height) {
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
d2d1_1helper.h | 15 typedef D2D1_RECT_L Rect; 20 typedef D2D1_RECT_L Rect; 90 return Rect<INT32>(left, top, right, bottom);
|
/prebuilts/go/darwin-x86/doc/progs/ |
image_draw.go | 17 Rect() 25 r := image.Rect(0, 0, 640, 480) 34 m := image.NewRGBA(image.Rect(0, 0, 640, 480)) 44 func Rect() { 45 dst := image.NewRGBA(image.Rect(0, 0, 640, 480)) 46 sr := image.Rect(0, 0, 200, 200) 50 // RECT OMIT 57 dst := image.NewRGBA(image.Rect(0, 0, 640, 480)) 58 sr := image.Rect(0, 0, 200, 200) 75 dirtyRect := b.Intersect(image.Rect(b.Min.X, b.Max.Y-20, b.Max.X, b.Max.Y) [all...] |
/prebuilts/go/linux-x86/doc/progs/ |
image_draw.go | 17 Rect() 25 r := image.Rect(0, 0, 640, 480) 34 m := image.NewRGBA(image.Rect(0, 0, 640, 480)) 44 func Rect() { 45 dst := image.NewRGBA(image.Rect(0, 0, 640, 480)) 46 sr := image.Rect(0, 0, 200, 200) 50 // RECT OMIT 57 dst := image.NewRGBA(image.Rect(0, 0, 640, 480)) 58 sr := image.Rect(0, 0, 200, 200) 75 dirtyRect := b.Intersect(image.Rect(b.Min.X, b.Max.Y-20, b.Max.X, b.Max.Y) [all...] |
/sdk/testapps/basicProjectWithAidl/src/com/android/tests/basicprojectwithaidl/ |
Rect.java | 6 public class Rect implements Parcelable { 12 public static final Parcelable.Creator<Rect> CREATOR = new Parcelable.Creator<Rect>() { 13 public Rect createFromParcel(Parcel in) { 14 return new Rect(in); 17 public Rect[] newArray(int size) { 18 return new Rect[size]; 22 public Rect() { 25 private Rect(Parcel in) {
|
/external/dng_sdk/source/ |
dng_bad_pixels.h | 152 const dng_rect & Rect (uint32 index) const
|
/external/skia/experimental/go-skia/ |
ctypes.go | 58 type Rect C.sk_rect_t
|
types.go | 60 type Rect struct {
|
/external/python/cpython2/Modules/_ctypes/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 } };
|
/external/v4l2_codec2/vda/ |
rect.h | 22 // Helper struct for rect to replace gfx::Rect usage from original code. 23 // Only partial functions of gfx::Rect is implemented here. 24 class Rect { 26 Rect() : x_(0), y_(0), size_(0, 0) {} 27 Rect(int width, int height) : x_(0), y_(0), size_(width, height) {} 28 Rect(int x, int y, int width, int height) 30 explicit Rect(const Size& size) : x_(0), y_(0), size_(size) {} 64 bool Contains(const Rect& rect) const [all...] |
/frameworks/base/media/mca/filterpacks/native/base/ |
geometry.h | 88 struct Rect { 91 Rect() { 96 Rect(float x, float y, float width, float height) {
|
/prebuilts/go/darwin-x86/src/image/ |
geom.go | 255 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned 258 func Rect(x0, y0, x1, y1 int) Rectangle {
|
/prebuilts/go/linux-x86/src/image/ |
geom.go | 255 // Rect is shorthand for Rectangle{Pt(x0, y0), Pt(x1, y1)}. The returned 258 func Rect(x0, y0, x1, y1 int) Rectangle {
|
/external/drm_hwcomposer/ |
separate_rects.h | 28 struct Rect { 41 Rect() { 44 Rect(TFloat xx1, TFloat yy1, TFloat xx2, TFloat yy2) 49 Rect(const Rect<T> &rhs) { 55 Rect<TFloat> &operator=(const Rect<T> &rhs) { 61 bool operator==(const Rect &rhs) const { 146 Rect<TNum> rect; member in struct:separate_rects::RectSet [all...] |
/frameworks/base/libs/hwui/ |
Rect.h | 42 class Rect { 55 inline Rect(): 62 inline Rect(float left, float top, float right, float bottom): 69 inline Rect(float width, float height): 76 inline Rect(const SkIRect& rect): // NOLINT, implicit 77 left(rect.fLeft), 78 top(rect.fTop), 79 right(rect.fRight), 80 bottom(rect.fBottom) [all...] |
/frameworks/base/services/tests/servicestests/src/com/android/server/wm/ |
StackWindowControllerTests.java | 19 import android.graphics.Rect; 106 stack1Controller.reparent(dc.getDisplayId(), new Rect(), true /* onTop */);
|
/frameworks/native/libs/ui/include/ui/ |
Rect.h | 28 #include <android/rect.h> 32 class Rect : public ARect, public LightFlattenablePod<Rect> 37 static const Rect INVALID_RECT; 38 static const Rect EMPTY_RECT; 43 inline Rect() : Rect(INVALID_RECT) {} 46 inline Rect(T w, T h) { 58 inline Rect(int32_t l, int32_t t, int32_t r, int32_t b) { 65 inline Rect(const Point& lt, const Point& rb) [all...] |
/prebuilts/go/darwin-x86/src/runtime/race/testdata/ |
regression_test.go | 60 type Rect struct { 65 min, max Rect
|
/prebuilts/go/linux-x86/src/runtime/race/testdata/ |
regression_test.go | 60 type Rect struct { 65 min, max Rect
|