Home
last modified time | relevance | path

Searched refs:tvec2 (Results 1 – 3 of 3) sorted by relevance

/frameworks/native/include/ui/
Dvec2.h30 class tvec2 : public TVecProductOperators<tvec2, T>,
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) { } in tvec2() function
66 tvec2() : x(0), y(0) { } in tvec2() function
70 tvec2(A v) : x(v), y(v) { } in tvec2() function
73 tvec2(A x, B y) : x(x), y(y) { } in tvec2() function
76 explicit tvec2(const tvec2<A>& v) : x(v.x), y(v.y) { } in tvec2() function
[all …]
Dvec3.h46 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) { } in tvec3()
89 tvec3(const Impersonator< tvec2<A> >& v, B z) in tvec3()
90 : x(((const tvec2<A>&)v).x), in tvec3()
91 y(((const tvec2<A>&)v).y), in tvec3()
Dvec4.h46 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) { } in tvec4()
104 tvec4(const Impersonator< tvec2<A> >& v, B z, C w) in tvec4()
105 : x(((const tvec2<A>&)v).x), in tvec4()
106 y(((const tvec2<A>&)v).y), in tvec4()