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

/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/dng_sdk/source/
H A Ddng_bad_pixels.h152 const dng_rect & Rect (uint32 index) const function in class:dng_bad_pixel_list
/external/opencv3/modules/core/misc/java/src/java/
H A Dcore+Rect.java4 public class Rect { class
8 public Rect(int x, int y, int width, int height) { method in class:Rect
15 public Rect() { method in class:Rect
19 public Rect(Point p1, Point p2) { method in class:Rect
26 public Rect(Point p, Size s) { method in class:Rect
30 public Rect(double[] vals) { method in class:Rect
48 public Rect clone() {
49 return new Rect(x, y, width, height);
91 if (!(obj instanceof Rect)) return false;
92 Rect i
[all...]
/external/drm_hwcomposer/
H A Dseparate_rects.cpp59 std::ostream &operator<<(std::ostream &os, const Rect<TNum> &rect) {
74 void separate_rects(const std::vector<Rect<TNum>> &in,
110 const Rect<TNum> &rect = in[i];
132 const Rect<TNum> &rect = in[h_evt.rect_id];
287 Rect<TNum> out_rect;
307 void separate_frects_64(const std::vector<Rect<float>> &in,
312 void separate_rects_64(const std::vector<Rect<int>> &in,
325 #define Rect Rect<TNum> macro
330 std::vector<Rect> i
[all...]
H A Dseparate_rects.h28 struct Rect { struct in namespace:separate_rects
41 Rect() { function in struct:separate_rects::Rect
44 Rect(TFloat xx1, TFloat yy1, TFloat xx2, TFloat yy2) function in struct:separate_rects::Rect
49 Rect(const Rect<T> &rhs) { function in struct:separate_rects::Rect
55 Rect<TFloat> &operator=(const Rect<T> &rhs) {
61 bool operator==(const Rect &rhs) const {
146 Rect<TNum> rect;
148 RectSet(const IdSet<TId> &i, const Rect<TNu
[all...]
/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/SkV8Example/
H A DPath2DBuilder.cpp54 ADD_METHOD("rect", Rect);
179 void Path2DBuilder::Rect(const v8::FunctionCallbackInfo<v8::Value>& args) { function in class:Path2DBuilder
/external/skia/gm/
H A Ddcshader.cpp131 struct Rect : public Prim { struct in inherits:Prim
219 fPrims.push_back(new Rect);
/external/opencv3/doc/pattern_tools/
H A Dsvgfig.py787 >>> fig = Fig(Line(0,0,1,1), Rect(0.2,0.2,0.8,0.8), trans="2*x, 2*y")
2395 class Rect(Curve): class in inherits:Curve
2398 Rect(x1, y1, x2, y2, attribute=value)
2407 return "<Rect (%g, %g), (%g, %g) %s>" % (
/external/pdfium/core/src/fxcodec/jbig2/
H A DJBig2_Context.cpp1149 FX_RECT Rect = m_pGRD->GetReplaceRect(); local
1150 m_pPage->composeFrom(m_ri.x + Rect.left, m_ri.y + Rect.top,
1152 (JBig2ComposeOp)(m_ri.flags & 0x03), &Rect);
1188 FX_RECT Rect = m_pGRD->GetReplaceRect(); local
1189 m_pPage->composeFrom(m_ri.x + Rect.left, m_ri.y + Rect.top,
1191 (JBig2ComposeOp)(m_ri.flags & 0x03), &Rect);
/external/deqp/modules/gles2/functional/
H A Des2fVertexTextureTests.cpp114 struct Rect struct in namespace:deqp::gles2::Functional::__anon4080
116 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} function in struct:deqp::gles2::Functional::__anon4080::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/opencv3/modules/core/include/opencv2/core/
H A Dtypes.hpp372 For your convenience, the Rect_\<\> alias is available: cv::Rect
409 typedef Rect2i Rect; typedef in namespace:cv
447 Rect brect = rRect.boundingRect();
480 Rect boundingRect() const;
1659 ////////////////////////////////// Rect /////////////////////////////////
1775 a = Rect();
/external/deqp/modules/gles3/functional/
H A Des3fVertexTextureTests.cpp142 struct Rect struct in namespace:deqp::gles3::Functional::__anon4289
144 Rect (int x_, int y_, int w_, int h_) : x(x_), y(y_), w(w_), h(h_) {} function in struct:deqp::gles3::Functional::__anon4289::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/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/robolectric/v1/lib/main/
H A Dandroid.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/android/ com/android/internal/ com/android/internal/util/ ...
/external/robolectric/v3/runtime/
H A Dandroid-all-4.4_r1-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.0.0_r2-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-5.1.1_r9-robolectric-1.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/android/ com/google/android/collect/ ...
H A Dandroid-all-4.1.2_r1-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.2.2_r1.2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...
H A Dandroid-all-4.3_r2-robolectric-0.jarMETA-INF/ META-INF/MANIFEST.MF android/ android/accessibilityservice/ android/accessibilityservice/AccessibilityService$1.class ...

Completed in 624 milliseconds