Lines Matching refs:OtherDerived
40 template<typename CustomBinaryOp, typename OtherDerived>
42 EIGEN_STRONG_INLINE const CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>
43 binaryExpr(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other, const CustomBinaryOp& func …
45 …return CwiseBinaryOp<CustomBinaryOp, const Derived, const OtherDerived>(derived(), other.derived()…
88 template<typename OtherDerived>
90 inline const CwiseBinaryOp<internal::scalar_boolean_and_op, const Derived, const OtherDerived>
91 operator&&(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
93 …ernal::is_same<bool,Scalar>::value && internal::is_same<bool,typename OtherDerived::Scalar>::value…
95 …return CwiseBinaryOp<internal::scalar_boolean_and_op, const Derived, const OtherDerived>(derived()…
107 template<typename OtherDerived>
109 inline const CwiseBinaryOp<internal::scalar_boolean_or_op, const Derived, const OtherDerived>
110 operator||(const EIGEN_CURRENT_STORAGE_BASE_CLASS<OtherDerived> &other) const
112 …ernal::is_same<bool,Scalar>::value && internal::is_same<bool,typename OtherDerived::Scalar>::value…
114 …return CwiseBinaryOp<internal::scalar_boolean_or_op, const Derived, const OtherDerived>(derived(),…