• Home
  • Raw
  • Download

Lines Matching refs:Ref

45   typedef Ref<MatrixType> RefMat;  in ref_matrix()
46 typedef Ref<DynMatrixType> RefDynMat; in ref_matrix()
47 typedef Ref<const DynMatrixType> ConstRefDynMat; in ref_matrix()
48 typedef Ref<RealDynMatrixType , 0, Stride<Dynamic,Dynamic> > RefRealMatWithStride; in ref_matrix()
95 typedef Ref<VectorType> RefMat; in ref_vector()
96 typedef Ref<DynMatrixType> RefDynMat; in ref_vector()
97 typedef Ref<const DynMatrixType> ConstRefDynMat; in ref_vector()
98 typedef Ref<RealDynMatrixType , 0, InnerStride<> > RefRealMatWithStride; in ref_vector()
99 typedef Ref<DynMatrixType , 0, InnerStride<> > RefMatWithStride; in ref_vector()
151 VERIFY( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) ); in check_const_correctness()
152 VERIFY( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) ); in check_const_correctness()
153 VERIFY( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) ); in check_const_correctness()
154 VERIFY( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) ); in check_const_correctness()
158 EIGEN_DONT_INLINE void call_ref_1(Ref<VectorXf> a, const B &b) { VERIFY_IS_EQUAL(a,b); } in call_ref_1()
160 EIGEN_DONT_INLINE void call_ref_2(const Ref<const VectorXf>& a, const B &b) { VERIFY_IS_EQUAL(a,b);… in call_ref_2()
162 EIGEN_DONT_INLINE void call_ref_3(Ref<VectorXf,0,InnerStride<> > a, const B &b) { VERIFY_IS_EQUAL(a… in call_ref_3()
164 EIGEN_DONT_INLINE void call_ref_4(const Ref<const VectorXf,0,InnerStride<> >& a, const B &b) { VERI… in call_ref_4()
166 EIGEN_DONT_INLINE void call_ref_5(Ref<MatrixXf,0,OuterStride<> > a, const B &b) { VERIFY_IS_EQUAL(a… in call_ref_5()
168 EIGEN_DONT_INLINE void call_ref_6(const Ref<const MatrixXf,0,OuterStride<> >& a, const B &b) { VERI… in call_ref_6()
170 EIGEN_DONT_INLINE void call_ref_7(Ref<Matrix<float,Dynamic,3> > a, const B &b) { VERIFY_IS_EQUAL(a,… in call_ref_7()
233 int test_ref_overload_fun1(Ref<MatrixXd> ) { return 1; } in test_ref_overload_fun1()
234 int test_ref_overload_fun1(Ref<RowMatrixXd> ) { return 2; } in test_ref_overload_fun1()
235 int test_ref_overload_fun1(Ref<MatrixXf> ) { return 3; } in test_ref_overload_fun1()
237 int test_ref_overload_fun2(Ref<const MatrixXd> ) { return 4; } in test_ref_overload_fun2()
238 int test_ref_overload_fun2(Ref<const MatrixXf> ) { return 5; } in test_ref_overload_fun2()