Home
last modified time | relevance | path

Searched defs:Vector2 (Results 1 – 11 of 11) sorted by relevance

/external/replicaisland/src/com/replica/replicaisland/
DVector2.java22 public final class Vector2 extends AllocationGuard { class
28 public Vector2() { in Vector2() method in Vector2
32 public Vector2(float xValue, float yValue) { in Vector2() method in Vector2
36 public Vector2(Vector2 other) { in Vector2() method in Vector2
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dcert-mem57-cpp.cpp13 struct Vector2 { struct
34 auto *V2 = new Vector2; in f() argument
Dmodernize-shrink-to-fit.cpp82 using Vector2 = std::vector<int>; in PR38315() typedef
/external/python/pybind11/tests/
Dtest_operator_overloading.cpp15 class Vector2 { class
17 Vector2(float x, float y) : x(x), y(y) { print_created(this, toString()); } in Vector2() function in Vector2
18 Vector2(const Vector2 &v) : x(v.x), y(v.y) { print_copy_created(this); } in Vector2() function in Vector2
19 Vector2(Vector2 &&v) : x(v.x), y(v.y) { print_move_created(this); v.x = v.y = 0; } in Vector2() function in Vector2
79 std::string abs(const Vector2&) { in abs()
/external/eigen/Eigen/src/Geometry/
DEulerAngles.h46 typedef Matrix<typename Derived::Scalar,2,1> Vector2; in eulerAngles() typedef
DOrthoMethods.h145 typedef Matrix<Scalar,2,1> Vector2; typedef
/external/eigen/demos/mandelbrot/
Dmandelbrot.cpp43 typedef Eigen::Array<Real, 2, 1> Vector2; in render() typedef
/external/angle/src/common/
Dvector_utils.h22 using Vector2 = Vector<2, float>; variable
/external/eigen/test/
Dsparse_basic.cpp20 typedef Matrix<StorageIndex,2,1> Vector2; in sparse_basic() typedef
Dgeo_transformations.cpp95 typedef Matrix<Scalar,2,1> Vector2; in transformations() typedef
/external/llvm-project/llvm/unittests/CodeGen/GlobalISel/
DLegalizerHelperTest.cpp2979 auto Vector2 = B.buildBitcast(V4S16, Copies[0]); in TEST_F() local