HomeSort by relevance Sort by last modified time
    Searched refs:tvec2 (Results 1 - 3 of 3) sorted by null

  /frameworks/native/include/ui/
vec2.h 30 class tvec2 : public TVecProductOperators<tvec2, T>, class in namespace:android
31 public TVecAddOperators<tvec2, T>,
32 public TVecUnaryOperators<tvec2, T>,
33 public TVecComparisonOperators<tvec2, T>,
34 public TVecFunctions<tvec2, T>
63 explicit tvec2(no_init) { } function in class:android::tvec2
66 tvec2() : x(0), y(0) { } function in class:android::tvec2
70 tvec2(A v) : x(v), y(v) { } function in class:android::tvec2
73 tvec2(A x, B y) : x(x), y(y) { function in class:android::tvec2
76 explicit tvec2(const tvec2<A>& v) : x(v.x), y(v.y) { } function in class:android::tvec2
79 tvec2(const Impersonator< tvec2<A> >& v) function in class:android::tvec2
    [all...]
vec3.h 46 Impersonator< tvec2<T> > xy;
47 Impersonator< tvec2<T> > st;
48 Impersonator< tvec2<T> > rg;
77 tvec3(const tvec2<A>& v, B z) : x(v.x), y(v.y), z(z) { }
89 tvec3(const Impersonator< tvec2<A> >& v, B z)
90 : x(((const tvec2<A>&)v).x),
91 y(((const tvec2<A>&)v).y),
vec4.h 46 Impersonator< tvec2<T> > xy;
47 Impersonator< tvec2<T> > st;
48 Impersonator< tvec2<T> > rg;
81 tvec4(const tvec2<A>& v, B z, C w) : x(v.x), y(v.y), z(z), w(w) { }
104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w)
105 : x(((const tvec2<A>&)v).x),
106 y(((const tvec2<A>&)v).y),

Completed in 41 milliseconds