Lines Matching refs:Ref

41   typedef Ref<MatrixType> RefMat;  in ref_matrix()
42 typedef Ref<DynMatrixType> RefDynMat; in ref_matrix()
43 typedef Ref<const DynMatrixType> ConstRefDynMat; in ref_matrix()
44 typedef Ref<RealDynMatrixType , 0, Stride<Dynamic,Dynamic> > RefRealMatWithStride; in ref_matrix()
90 typedef Ref<VectorType> RefMat; in ref_vector()
91 typedef Ref<DynMatrixType> RefDynMat; in ref_vector()
92 typedef Ref<const DynMatrixType> ConstRefDynMat; in ref_vector()
93 typedef Ref<RealDynMatrixType , 0, InnerStride<> > RefRealMatWithStride; in ref_vector()
94 typedef Ref<DynMatrixType , 0, InnerStride<> > RefMatWithStride; in ref_vector()
146 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) ); in check_const_correctness()
147 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) ); in check_const_correctness()
148 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) ); in check_const_correctness()
149 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) ); in check_const_correctness()
153 EIGEN_DONT_INLINE void call_ref_1(Ref<VectorXf> a, const B &b) { VERIFY_IS_EQUAL(a,b); } in call_ref_1()
155 EIGEN_DONT_INLINE void call_ref_2(const Ref<const VectorXf>& a, const B &b) { VERIFY_IS_EQUAL(a,b);… in call_ref_2()
157 EIGEN_DONT_INLINE void call_ref_3(Ref<VectorXf,0,InnerStride<> > a, const B &b) { VERIFY_IS_EQUAL(a… in call_ref_3()
159 EIGEN_DONT_INLINE void call_ref_4(const Ref<const VectorXf,0,InnerStride<> >& a, const B &b) { VERI… in call_ref_4()
161 EIGEN_DONT_INLINE void call_ref_5(Ref<MatrixXf,0,OuterStride<> > a, const B &b) { VERIFY_IS_EQUAL(a… in call_ref_5()
163 EIGEN_DONT_INLINE void call_ref_6(const Ref<const MatrixXf,0,OuterStride<> >& a, const B &b) { VERI… in call_ref_6()
165 EIGEN_DONT_INLINE void call_ref_7(Ref<Matrix<float,Dynamic,3> > a, const B &b) { VERIFY_IS_EQUAL(a,… in call_ref_7()
228 int test_ref_overload_fun1(Ref<MatrixXd> ) { return 1; } in test_ref_overload_fun1()
229 int test_ref_overload_fun1(Ref<RowMatrixXd> ) { return 2; } in test_ref_overload_fun1()
230 int test_ref_overload_fun1(Ref<MatrixXf> ) { return 3; } in test_ref_overload_fun1()
232 int test_ref_overload_fun2(Ref<const MatrixXd> ) { return 4; } in test_ref_overload_fun2()
233 int test_ref_overload_fun2(Ref<const MatrixXf> ) { return 5; } in test_ref_overload_fun2()
235 void test_ref_ambiguous(const Ref<const ArrayXd> &A, Ref<ArrayXd> B) in test_ref_ambiguous()