Home | History | Annotate | Download | only in AutoDiff

Lines Matching full:template

1 // This file is part of Eigen, a lightweight C++ template library
17 template<typename A, typename B>
23 template<typename A, typename B>
29 template<typename _DerType, bool Enable> struct auto_diff_special_op;
46 * template mechanism.
54 * in that case, the expression template mechanism only occurs at the top Matrix level,
59 template<typename _DerType>
101 template<typename OtherDerType>
115 template<typename OtherDerType>
153 template<typename OtherDerType> inline bool operator< (const AutoDiffScalar<OtherDerType>& b) const { return m_value < b.value(); }
154 template<typename OtherDerType> inline bool operator<=(const AutoDiffScalar<OtherDerType>& b) const { return m_value <= b.value(); }
155 template<typename OtherDerType> inline bool operator> (const AutoDiffScalar<OtherDerType>& b) const { return m_value > b.value(); }
156 template<typename OtherDerType> inline bool operator>=(const AutoDiffScalar<OtherDerType>& b) const { return m_value >= b.value(); }
157 template<typename OtherDerType> inline bool operator==(const AutoDiffScalar<OtherDerType>& b) const { return m_value == b.value(); }
158 template<typename OtherDerType> inline bool operator!=(const AutoDiffScalar<OtherDerType>& b) const { return m_value != b.value(); }
186 template<typename OtherDerType>
196 template<typename OtherDerType>
222 template<typename OtherDerType>
232 template<typename OtherDerType>
312 template<typename OtherDerType>
329 template<typename OtherDerType>
349 template<typename OtherDerType>
362 template<typename OtherDerType>
377 template<typename _DerType>
440 template<typename _DerType>
448 template<typename A_Scalar, int A_Rows, int A_Cols, int A_Options, int A_MaxRows, int A_MaxCols, typename B>
460 template<typename A, typename B_Scalar, int B_Rows, int B_Cols, int B_Options, int B_MaxRows, int B_MaxCols>
472 template<typename A_Scalar, int A_Rows, int A_Cols, int A_Options, int A_MaxRows, int A_MaxCols,
492 template<typename A_Scalar, int A_Rows, int A_Cols, int A_Options, int A_MaxRows, int A_MaxCols>
499 template<typename A_Scalar, int A_Rows, int A_Cols, int A_Options, int A_MaxRows, int A_MaxCols>
506 template<typename DerType>
513 template<typename DerType>
523 template<typename DerType> \
532 template<typename DerType>
534 template<typename DerType>
536 template<typename DerType>
538 template<typename DerType, typename T>
540 template<typename DerType, typename T>
542 template<typename DerType, typename T>
544 template<typename DerType, typename T>
579 template<typename DerType>
591 template<typename DerTypeA,typename DerTypeB>
629 template<typename DerType> struct NumTraits<AutoDiffScalar<DerType> >