/frameworks/base/media/mca/filterfw/native/core/ |
geometry.h | 51 class Quad { 53 Quad() : points_(4) {} 54 virtual ~Quad() {} 56 Quad(const Point& p0, const Point& p1, const Point& p2, const Point& p3)
|
/frameworks/base/media/mca/filterpacks/native/base/ |
geometry.h | 51 class Quad { 53 Quad() : points_(4) {} 54 virtual ~Quad() {} 56 Quad(const Point& p0, const Point& p1, const Point& p2, const Point& p3) 71 class SlantedRect : public Quad {
|
/external/jmonkeyengine/engine/src/core/com/jme3/scene/shape/ |
Quad.java | 39 * <code>Quad</code> represents a rectangular plane in space 40 * defined by 4 vertices. The quad's lower-left side is contained 46 public class Quad extends Mesh { 54 public Quad(){ 58 * Create a quad with the given width and height. The quad 64 public Quad(float width, float height){ 69 * Create a quad with the given width and height. The quad 77 public Quad(float width, float height, boolean flipCoords) [all...] |
/frameworks/base/core/java/com/android/internal/widget/multiwaveview/ |
Ease.java | 54 static class Quad {
|
/packages/apps/DeskClock/src/com/android/deskclock/widget/multiwaveview/ |
Ease.java | 54 static class Quad {
|
/packages/apps/InCallUI/src/com/android/incallui/widget/multiwaveview/ |
Ease.java | 54 static class Quad {
|
/external/chromium_org/cc/output/ |
geometry_binding.cc | 20 // Index of the vertex, divide by 4 to have the matrix for this quad. 23 struct Quad { 30 COMPILE_ASSERT(sizeof(Quad) == 24 * sizeof(float), // NOLINT(runtime/sizeof) 36 Quad quad_list[8]; 47 Quad x = {v0, v1, v2, v3};
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
Rect.h | 105 class Quad : public RectBase, public RefCounted<Quad> { 107 static PassRefPtr<Quad> create() { return adoptRef(new Quad); } 109 PassRefPtr<Quad> cloneForCSSOM() const { return adoptRef(new Quad(*this)); } 125 Quad() { } 126 Quad(const Quad& cloneFrom) : RectBase(cloneFrom), RefCounted<Quad>() { } [all...] |
/frameworks/base/media/mca/filterfw/java/android/filterfw/geometry/ |
Quad.java | 30 public class Quad { 37 public Quad() { 40 public Quad(Point p0, Point p1, Point p2, Point p3) { 54 public Quad translated(Point t) { 55 return new Quad(p0.plus(t), p1.plus(t), p2.plus(t), p3.plus(t)); 58 public Quad translated(float x, float y) { 59 return new Quad(p0.plus(x, y), p1.plus(x, y), p2.plus(x, y), p3.plus(x, y)); 62 public Quad scaled(float s) { 63 return new Quad(p0.times(s), p1.times(s), p2.times(s), p3.times(s)); 66 public Quad scaled(float x, float y) [all...] |
/external/chromium_org/third_party/skia/src/pathops/ |
SkReduceOrder.cpp | 16 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { 17 reduction[0] = reduction[1] = quad[0]; 25 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { 26 reduction[0] = quad[0]; 27 reduction[1] = quad[2]; 31 static int horizontal_line(const SkDQuad& quad, SkDQuad& reduction) { 32 reduction[0] = quad[0]; 33 reduction[1] = quad[2]; 37 static int check_linear(const SkDQuad& quad, 41 while (quad[startIndex].approximatelyEqual(quad[endIndex])) 262 SkDQuad quad; local [all...] |
/external/clang/test/CodeGen/ |
2002-07-14-MiscTests3.c | 16 struct Quad { 24 struct Quad GlobalQuad = { 4, {1, 2}, 0, 3, 156 }; 43 static int F0(struct Quad Q, int i) { /* Pass Q by value */ 44 struct Quad R; 51 int F1(struct Quad *Q, int i) { /* Pass Q by address */ 52 struct Quad R;
|
/external/skia/src/pathops/ |
SkReduceOrder.cpp | 16 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) { 17 reduction[0] = reduction[1] = quad[0]; 25 static int vertical_line(const SkDQuad& quad, SkDQuad& reduction) { 26 reduction[0] = quad[0]; 27 reduction[1] = quad[2]; 31 static int horizontal_line(const SkDQuad& quad, SkDQuad& reduction) { 32 reduction[0] = quad[0]; 33 reduction[1] = quad[2]; 37 static int check_linear(const SkDQuad& quad, 41 while (quad[startIndex].approximatelyEqual(quad[endIndex])) 262 SkDQuad quad; local [all...] |
/frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/geometry/ |
Quad.java | 25 * The Quad class specifies a (possibly affine transformed) rectangle. 27 * A Quad instance holds 4 points that define its shape. The points may represent any rectangle that 32 * Each point in the Quad represents a specific corner of the Quad. These are top-left, top-right, 33 * bottom-left, and bottom-right. These labels allow mapping a transformed Quad back to an up-right 34 * Quad, with the point-to-point mapping well-defined. They do not necessarily indicate that e.g. 38 public class Quad { 46 * Returns the unit Quad. 47 * The unit Quad has its top-left point at (0, 0) and bottom-right point at (1, 1). 48 * @return the unit Quad [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/tnl/ |
t_context.h | 458 tnl_quad_func Quad;
|
/external/mesa3d/src/mesa/tnl/ |
t_context.h | 458 tnl_quad_func Quad;
|
/external/llvm/lib/Target/X86/ |
X86ISelLowering.cpp | [all...] |