Home | History | Annotate | Download | only in test

Lines Matching defs:MatrixType

18 template<typename MatrixType>
19 void check_qtvector_matrix(const MatrixType& m)
21 typedef typename MatrixType::Index Index;
25 MatrixType x = MatrixType::Random(rows,cols), y = MatrixType::Random(rows,cols);
26 QVector<MatrixType> v(10, MatrixType(rows,cols)), w(20, y);
47 VERIFY((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
51 MatrixType* ref = &w[0];
63 typedef typename TransformType::MatrixType MatrixType;
64 TransformType x(MatrixType::Random()), y(MatrixType::Random());