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

  /external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/equations/
Quad.java 10 public abstract class Quad extends TweenEquation {
11 public static final Quad IN = new Quad() {
19 return "Quad.IN";
23 public static final Quad OUT = new Quad() {
31 return "Quad.OUT";
35 public static final Quad INOUT = new Quad() {
44 return "Quad.INOUT"
    [all...]
  /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 {
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/
Ease.java 54 static class Quad {
  /external/deqp/modules/glshared/
glsFragmentOpUtil.hpp 45 struct Quad
56 Quad (void)
71 void render (const Quad& quad) const;
121 const IntegerQuad& quad,
glsFragOpInteractionCase.cpp 167 struct Quad
175 Quad quad; member in struct:deqp::gls::__anon9881::RenderCommand
182 static Quad getRandomQuad (de::Random& rnd, int targetW, int targetH)
202 Quad quad; local
204 quad.posA = tcu::IVec2(flipX ? (x+width-1) : x, flipY ? (y+height-1) : y);
205 quad.posB = tcu::IVec2(flipX ? x : (x+width-1), flipY ? y : (y+height-1));
207 return quad;
219 command.quad = getRandomQuad(rnd, targetW, targetH)
    [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/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,
39 if (!quad.isLinear(0, 2))
244 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/deqp/modules/gles2/functional/
es2fClippingTests.cpp     [all...]
  /external/deqp/modules/gles3/functional/
es3fClippingTests.cpp     [all...]
  /external/mesa3d/src/mesa/tnl/
t_context.h 458 tnl_quad_func Quad;
  /external/clang/lib/CodeGen/
CGBuiltin.cpp 4589 bool quad = Type.isQuad(); local
    [all...]
  /external/robolectric/v3/runtime/
android-all-4.4_r1-robolectric-1.jar 
android-all-5.0.0_r2-robolectric-1.jar 
android-all-4.1.2_r1-robolectric-0.jar 
android-all-4.2.2_r1.2-robolectric-0.jar 
android-all-4.3_r2-robolectric-0.jar 

Completed in 2183 milliseconds