Searched defs:Rect (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/skia/tools/lua/
H A Dskia.lua20 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)
35 setmetatable(rect, Sk.Rect)
39 function Sk.Rect:width()
43 function Sk.Rect:height()
47 function Sk.Rect:isEmpty()
51 function Sk.Rect:isFinite()
59 function Sk.Rect
[all...]
/external/skia/tools/lua/
H A Dskia.lua20 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)
35 setmetatable(rect, Sk.Rect)
39 function Sk.Rect:width()
43 function Sk.Rect:height()
47 function Sk.Rect:isEmpty()
51 function Sk.Rect:isFinite()
59 function Sk.Rect
[all...]
/external/chromium_org/ui/file_manager/gallery/js/image_editor/
H A Dimage_util.js85 * new Rect(left, top, width, height)
86 * new Rect(width, height)
87 * new Rect(rect) // anything with left, top, width, height properties
88 * new Rect(bounds) // anything with left, top, right, bottom properties
89 * new Rect(canvas|image) // anything with width and height properties.
90 * new Rect() // empty rectangle.
93 function Rect() { class
138 console.error('Invalid Rect constructor arguments:',
142 Rect.prototype = {
166 * @return {Rect}
[all...]
/external/chromium_org/ui/gfx/geometry/
H A Drect.h37 class GFX_EXPORT Rect class in namespace:gfx
38 : public RectBase<Rect, Point, Size, Insets, Vector2d, int> {
40 Rect() : RectBase<Rect, Point, Size, Insets, Vector2d, int>(Point()) {} function in class:gfx::Rect
42 Rect(int width, int height) function in class:gfx::Rect
43 : RectBase<Rect, Point, Size, Insets, Vector2d, int>
46 Rect(int x, int y, int width, int height) function in class:gfx::Rect
47 : RectBase<Rect, Point, Size, Insets, Vector2d, int>
51 explicit Rect(const RECT& r);
53 explicit Rect(cons
56 explicit Rect(const gfx::Size& size) function in class:gfx::Rect
59 Rect(const gfx::Point& origin, const gfx::Size& size) function in class:gfx::Rect
[all...]
H A Drect.cc20 template class RectBase<Rect, Point, Size, Insets, Vector2d, int>;
22 typedef class RectBase<Rect, Point, Size, Insets, Vector2d, int> RectBaseT;
25 Rect::Rect(const RECT& r) function in class:gfx::Rect
31 Rect::Rect(const CGRect& r) function in class:gfx::Rect
39 RECT Rect::ToRECT() const {
48 CGRect Rect::ToCGRect() const {
53 std::string Rect::ToString() const {
59 Rect operato
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLAreaElement.h60 enum Shape { Default, Poly, Rect, Circle, Unknown }; enumerator in enum:blink::FINAL::Shape
/external/chromium_org/third_party/WebKit/public/platform/
H A DWebRect.h93 WebRect(const gfx::Rect& r)
101 WebRect& operator=(const gfx::Rect& r)
110 operator gfx::Rect() const
112 return gfx::Rect(x, y, std::max(0, width), std::max(0, height));
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DRect.h71 class Rect : public RectBase { class in namespace:blink
73 static PassRefPtrWillBeRawPtr<Rect> create() { return adoptRefWillBeNoop(new Rect); }
75 PassRefPtrWillBeRawPtr<Rect> cloneForCSSOM() const { return adoptRefWillBeNoop(new Rect(*this)); }
83 Rect() { } function in class:blink::Rect
84 Rect(const Rect& cloneFrom) : RectBase(cloneFrom) { } function in class:blink::Rect
/external/chromium_org/ppapi/cpp/
H A Drect.h19 class Rect { class in namespace:pp
22 /// The default constructor. Creates a <code>Rect</code> in the upper-left
24 Rect() { function in class:pp::Rect
32 /// converting the <code>PP_Rect</code> to a <code>Rect</code>. This is an
36 Rect(const PP_Rect& rect) { // Implicit. function in class:pp::Rect
44 /// converting them to a <code>Rect</code> in the upper-left starting
49 Rect(int32_t w, int32_t h) { function in class:pp::Rect
64 Rect(int32_t x, int32_t y, int32_t w, int32_t h) { function in class:pp::Rect
72 /// <code>Size</code> to a <code>Rect</code> in the upper-left starting
76 explicit Rect(cons function in class:pp::Rect
90 Rect(const Point& origin, const Size& size) { function in class:pp::Rect
[all...]
/external/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp59 SkRect SkPdfAnnotationDictionary::Rect(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
60 SkPdfNativeObject* ret = get("Rect", "");
68 return get("Rect", "") != NULL;
/external/chromium_org/third_party/skia/experimental/SkV8Example/
H A DPath2D.cpp52 ADD_METHOD("rect", Rect);
175 void Path2D::Rect(const v8::FunctionCallbackInfo<Value>& args) { function in class:Path2D
/external/opencv/cvaux/src/
H A Dcvface.cpp138 CvRect Rect = *(CvRect*)lpCandidat; local
140 if (Rect.height > Rect.width)
144 long Size = Rect.width*Rect.height;
154 long x = Rect.x + cvRound(Rect.width/2);
155 long y = Rect.y + cvRound(Rect.height/2);
160 // if ( isPointInRect(cvPoint(Rect
319 CvRect Rect = *(CvRect*)m_lpIdealFace[i].GetContour(); local
327 ResizeRect(CvRect Rect,CvRect * lpRect,long lDir,long lD) argument
[all...]
/external/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfAnnotationDictionary_autogen.cpp59 SkRect SkPdfAnnotationDictionary::Rect(SkPdfNativeDoc* doc) { function in class:SkPdfAnnotationDictionary
60 SkPdfNativeObject* ret = get("Rect", "");
68 return get("Rect", "") != NULL;
/external/skia/experimental/SkV8Example/
H A DPath2D.cpp52 ADD_METHOD("rect", Rect);
175 void Path2D::Rect(const v8::FunctionCallbackInfo<Value>& args) { function in class:Path2D
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusTypes.h92 class Rect;
559 class Rect class
565 Rect() function in class:Rect
570 Rect(IN INT x, function in class:Rect
581 Rect(IN const Point& location, function in class:Rect
590 Rect* Clone() const
592 return new Rect(X, Y, Width, Height);
607 VOID GetBounds(OUT Rect* rect) const
644 BOOL Equals(IN const Rect & rect) const
664 BOOL Contains(IN Rect
[all...]
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Context.cpp1505 FX_RECT Rect = m_pGRD->GetReplaceRect(); local
1506 m_pPage->composeFrom(m_ri.x + Rect.left, m_ri.y + Rect.top, pSegment->m_Result.im, (JBig2ComposeOp)(m_ri.flags & 0x03), &Rect);
1542 FX_RECT Rect = m_pGRD->GetReplaceRect(); local
1543 m_pPage->composeFrom(m_ri.x + Rect.left, m_ri.y + Rect.top, pSegment->m_Result.im, (JBig2ComposeOp)(m_ri.flags & 0x03), &Rect);
/external/deqp/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp114 struct Rect struct in namespace:deqp::gles2::Functional::__anon19944
116 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} function in struct:deqp::gles2::Functional::__anon19944::Rect
331 static void setPixelColors (const vector<Vec4>& quadColors, const Rect& region, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst)
360 void computeReference (const typename TexTypeTcuClass<TexType>::t& texture, float lod, const tcu::Sampler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion)
404 void computeReferenceCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
586 const Rect region;
590 Render (const Rect& r, int tN, const Vec2& tS, const Vec2& tO) : region(r), textureNdx(tN), texCoordScale(tS), texCoordOffset(tO) {}
593 Render(Rect(0, 0, leftWidth, bottomHeight), 0, texMinScale, texMinOffset),
594 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset),
595 Render(Rect(
[all...]
/external/deqp/modules/gles3/functional/
H A Des3fVertexTextureTests.cpp142 struct Rect struct in namespace:deqp::gles3::Functional::__anon20153
144 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} function in struct:deqp::gles3::Functional::__anon20153::Rect
427 static void setPixelColors (const vector<Vec4>& quadColors, const Rect& region, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst)
458 void computeReference (const typename TexTypeTcuClass<TexType>::t& texture, float lod, const tcu::Sampler& sampler, const PosTexCoordQuadGrid<TexType>& grid, tcu::Surface& dst, const Rect& dstRegion)
502 void computeReferenceCell (int textureNdx, float lod, const Grid& grid, tcu::Surface& dst, const Rect& dstRegion) const;
687 const Rect region;
691 Render (const Rect& r, int tN, const Vec2& tS, const Vec2& tO) : region(r), textureNdx(tN), texCoordScale(tS), texCoordOffset(tO) {}
694 Render(Rect(0, 0, leftWidth, bottomHeight), 0, texMinScale, texMinOffset),
695 Render(Rect(leftWidth, 0, rightWidth, bottomHeight), 0, texMagScale, texMagOffset),
696 Render(Rect(
[all...]
/external/chromium_org/third_party/libaddressinput/src/java/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF AndroidManifest.xml android/ android/Manifest$permission.class ...
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.swt.win32.win32.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/chromium_org/third_party/android_platform/webview/
H A Dframeworks.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/location/ android/location/Address$1.class ...
/external/robolectric/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...

Completed in 399 milliseconds