Home | History | Annotate | Download | only in AutoDiff

Lines Matching full:friend

106     friend  std::ostream & operator << (std::ostream & s, const AutoDiffScalar& a)
146 friend inline bool operator< (const Scalar& a, const AutoDiffScalar& b) { return a < b.value(); }
147 friend inline bool operator<=(const Scalar& a, const AutoDiffScalar& b) { return a <= b.value(); }
148 friend inline bool operator> (const Scalar& a, const AutoDiffScalar& b) { return a > b.value(); }
149 friend inline bool operator>=(const Scalar& a, const AutoDiffScalar& b) { return a >= b.value(); }
150 friend inline bool operator==(const Scalar& a, const AutoDiffScalar& b) { return a == b.value(); }
151 friend inline bool operator!=(const Scalar& a, const AutoDiffScalar& b) { return a != b.value(); }
165 friend inline const AutoDiffScalar<DerType&> operator+(const Scalar& a, const AutoDiffScalar& b)
175 // friend inline const AutoDiffScalar<DerType&> operator+(const Real& a, const AutoDiffScalar& b)
209 friend inline const AutoDiffScalar<CwiseUnaryOp<internal::scalar_opposite_op<Scalar>, const DerType> >
256 friend inline const AutoDiffScalar<CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const DerType> >
272 // friend inline const AutoDiffScalar<typename CwiseUnaryOp<internal::scalar_multiple_op<Real>, DerType>::Type >
288 friend inline const AutoDiffScalar<CwiseUnaryOp<internal::scalar_multiple_op<Scalar>, const DerType> >
304 // friend inline const AutoDiffScalar<typename CwiseUnaryOp<internal::scalar_multiple_op<Real>, DerType>::Type >
405 friend inline const AutoDiffScalar<DerType&> operator+(const Real& a, const AutoDiffScalar<_DerType>& b)
425 friend inline const AutoDiffScalar<typename CwiseUnaryOp<scalar_multiple2_op<Scalar,Real>, DerType>::Type >