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

  /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 22 // Index of the vertex, divide by 4 to have the matrix for this quad.
25 struct Quad {
33 sizeof(Quad) == 24 * sizeof(float), // NOLINT(runtime/sizeof)
39 Quad quad_list[8];
56 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/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/chromium_org/third_party/skia/src/pathops/
SkReduceOrder.cpp 22 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) {
23 reduction[0] = reduction[1] = quad[0];
31 static int vertical_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
34 reduction[0] = quad[0];
35 reduction[1] = quad[2];
41 if (SkDQuad::FindExtrema(quad[0].fY, quad[1].fY, quad[2].fY, &tValue)) {
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue)
429 SkDQuad quad; local
    [all...]
  /external/skia/src/pathops/
SkReduceOrder.cpp 22 static int coincident_line(const SkDQuad& quad, SkDQuad& reduction) {
23 reduction[0] = reduction[1] = quad[0];
31 static int vertical_line(const SkDQuad& quad, SkReduceOrder::Style reduceStyle,
34 reduction[0] = quad[0];
35 reduction[1] = quad[2];
41 if (SkDQuad::FindExtrema(quad[0].fY, quad[1].fY, quad[2].fY, &tValue)) {
42 double yExtrema = interp_quad_coords(quad[0].fY, quad[1].fY, quad[2].fY, tValue)
429 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...]

Completed in 7929 milliseconds