HomeSort by relevance Sort by last modified time
    Searched refs:Derived (Results 226 - 250 of 381) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixLogarithm.h 412 * \tparam Derived Type of the argument to the matrix function.
420 template<typename Derived> class MatrixLogarithmReturnValue
421 : public ReturnByValue<MatrixLogarithmReturnValue<Derived> >
425 typedef typename Derived::Scalar Scalar;
426 typedef typename Derived::Index Index;
432 MatrixLogarithmReturnValue(const Derived& A) : m_A(A) { }
441 typedef typename Derived::PlainObject PlainObject;
460 typename internal::nested<Derived>::type m_A;
466 template<typename Derived>
467 struct traits<MatrixLogarithmReturnValue<Derived> >
    [all...]
MatrixPower.h 446 * \tparam Derived type of the base, a matrix (expression).
454 template<typename Derived>
455 class MatrixPowerReturnValue : public ReturnByValue< MatrixPowerReturnValue<Derived> >
458 typedef typename Derived::PlainObject PlainObject;
459 typedef typename Derived::RealScalar RealScalar;
460 typedef typename Derived::Index Index;
468 MatrixPowerReturnValue(const Derived& A, RealScalar p) : m_A(A), m_p(p)
485 const Derived& m_A;
496 template<typename Derived>
497 struct traits< MatrixPowerReturnValue<Derived> >
    [all...]
MatrixSquareRoot.h 407 * \tparam Derived Type of the argument to the matrix square root.
415 template<typename Derived> class MatrixSquareRootReturnValue
416 : public ReturnByValue<MatrixSquareRootReturnValue<Derived> >
418 typedef typename Derived::Index Index;
425 MatrixSquareRootReturnValue(const Derived& src) : m_src(src) { }
435 const typename Derived::PlainObject srcEvaluated = m_src.eval();
436 MatrixSquareRoot<typename Derived::PlainObject> me(srcEvaluated);
444 const Derived& m_src;
450 template<typename Derived>
451 struct traits<MatrixSquareRootReturnValue<Derived> >
    [all...]
  /external/clang/test/SemaTemplate/
instantiate-exception-spec-cxx11.cpp 126 template<typename T> struct Derived : Base {
131 Derived<Exc1> d1; // ok
132 Derived<Exc2> d2; // expected-note {{in instantiation of}}
134 // If the vtable for a derived class is used, the exception specification of
virtual-member-functions.cpp 55 struct Derived : Base<T> {
59 template struct Derived<int>; // expected-note {{in instantiation of member function 'Base<int>::~Base' requested here}}
  /external/eigen/Eigen/src/Jacobi/
Jacobi.h 64 template<typename Derived>
65 bool makeJacobi(const MatrixBase<Derived>&, typename Derived::Index p, typename Derived::Index q);
80 * \sa MatrixBase::makeJacobi(const MatrixBase<Derived>&, Index, Index), MatrixBase::applyOnTheLeft(), MatrixBase::applyOnTheRight()
125 template<typename Derived>
126 inline bool JacobiRotation<Scalar>::makeJacobi(const MatrixBase<Derived>& m, typename Derived::Index p, typename Derived::Index q)
275 template<typename Derived>
    [all...]
  /external/eigen/Eigen/src/SVD/
UpperBidiagonalization.h 136 template<typename Derived>
137 const UpperBidiagonalization<typename MatrixBase<Derived>::PlainObject>
138 MatrixBase<Derived>::bidiagonalization() const
  /external/eigen/Eigen/src/SparseCore/
SparseTriangularView.h 169 template<typename Derived>
171 inline const SparseTriangularView<Derived, Mode>
172 SparseMatrixBase<Derived>::triangularView() const
174 return derived();
  /external/eigen/test/eigen2/
eigen2_lu.cpp 13 template<typename Derived>
14 void doSomeRankPreservingOperations(Eigen::MatrixBase<Derived>& m)
16 typedef typename Derived::RealScalar RealScalar;
  /external/libweave/third_party/chromium/base/memory/
weak_ptr_unittest.cc 21 struct Derived : public Base {};
103 Derived data;
104 WeakPtrFactory<Derived> factory(&data);
  /external/eigen/Eigen/src/Core/
SelfAdjointView.h 111 (m_matrix, rhs.derived());
121 (lhs.derived(),rhs.m_matrix);
197 // return internal::matrix_selfadjoint_product_returntype<OtherDerived,SelfAdjointView<MatrixType,UpLo> >(lhs.derived(),rhs);
296 template<typename Derived>
298 typename MatrixBase<Derived>::template ConstSelfAdjointViewReturnType<UpLo>::Type
299 MatrixBase<Derived>::selfadjointView() const
301 return derived();
304 template<typename Derived>
306 typename MatrixBase<Derived>::template SelfAdjointViewReturnType<UpLo>::Type
307 MatrixBase<Derived>::selfadjointView(
    [all...]
CwiseUnaryOp.h 97 typedef CwiseUnaryOp<UnaryOp, XprType> Derived;
99 EIGEN_DENSE_PUBLIC_INTERFACE(Derived)
103 return derived().functor()(derived().nestedExpression().coeff(rowId, colId));
109 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(rowId, colId));
114 return derived().functor()(derived().nestedExpression().coeff(index));
120 return derived().functor().packetOp(derived().nestedExpression().template packet<LoadMode>(index))
    [all...]
GeneralProduct.h 568 template<typename Derived>
570 inline const typename ProductReturnType<Derived, OtherDerived>::Type
571 MatrixBase<Derived>::operator*(const MatrixBase<OtherDerived> &other) const
578 ProductIsValid = Derived::ColsAtCompileTime==Dynamic
580 || int(Derived::ColsAtCompileTime)==int(OtherDerived::RowsAtCompileTime),
581 AreVectors = Derived::IsVectorAtCompileTime && OtherDerived::IsVectorAtCompileTime,
582 SameSizes = EIGEN_PREDICATE_SAME_MATRIX_SIZE(Derived,OtherDerived)
593 internal::product_type<Derived,OtherDerived>::debug();
595 return typename ProductReturnType<Derived,OtherDerived>::Type(derived(), other.derived())
    [all...]
DiagonalProduct.h 120 template<typename Derived>
122 inline const DiagonalProduct<Derived, DiagonalDerived, OnTheRight>
123 MatrixBase<Derived>::operator*(const DiagonalBase<DiagonalDerived> &a_diagonal) const
125 return DiagonalProduct<Derived, DiagonalDerived, OnTheRight>(derived(), a_diagonal.derived());
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 235 SVal StoreManager::evalDerivedToBase(SVal Derived, const CastExpr *Cast) {
238 if (!regionMatchesCXXRecordType(Derived, Cast->getSubExpr()->getType()))
242 SVal Result = Derived;
251 SVal StoreManager::evalDerivedToBase(SVal Derived, const CXXBasePath &Path) {
253 SVal Result = Derived;
262 SVal StoreManager::evalDerivedToBase(SVal Derived, QualType BaseType,
265 Derived.getAs<loc::MemRegionVal>();
267 return Derived;
303 // Assume the derived class is a pointer or a reference to a CXX record.
311 // derived to base)
    [all...]
  /external/clang/test/Analysis/inlining/
path-notes.cpp 217 struct Derived : public Base {};
219 void test(Derived d) {
    [all...]
  /external/clang/test/CXX/basic/basic.types/
p10.cpp 94 struct Derived : HasVBase {
95 constexpr Derived() {} // expected-error {{constexpr constructor not allowed in struct with virtual base class}}
  /external/clang/test/CodeGenCXX/
bitfield.cpp 286 // a class which might end up with members inside of it when inside a derived
295 struct Derived : public Base {
433 // a class which might end up with members inside of it when inside a derived
445 struct Derived : public B2 {
  /external/eigen/Eigen/src/SuperLUSupport/
SuperLUSupport.h 152 MatrixType& mat(_mat.derived());
187 res.storage.values = mat.derived().valuePtr();
188 res.storage.innerInd = mat.derived().innerIndexPtr();
189 res.storage.outerInd = mat.derived().outerIndexPtr();
224 template<typename Derived>
225 struct SluMatrixMapHelper<SparseMatrixBase<Derived> >
227 typedef Derived MatrixType;
290 template<typename _MatrixType, typename Derived>
312 Derived& derived() { return *static_cast<Derived*>(this); function in class:Eigen::SuperLUBase
313 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::SuperLUBase
    [all...]
  /external/skia/include/core/
SkRefCnt.h 229 template <typename Derived>
245 delete (const Derived*)this;
  /external/v8/test/mjsunit/es6/
debug-step-into-class-extends.js 35 class Derived extends GetBase() {} // 0.
  /external/eigen/Eigen/src/Cholesky/
LDLT.h 191 return internal::solve_retval<LDLT, Rhs>(*this, b.derived());
203 template<typename Derived>
204 bool solveInPlace(MatrixBase<Derived> &bAndX) const;
208 template <typename Derived>
209 LDLT& rankUpdate(const MatrixBase<Derived>& w, const RealScalar& alpha=1);
466 template<typename Derived>
467 LDLT<MatrixType,_UpLo>& LDLT<MatrixType,_UpLo>::rankUpdate(const MatrixBase<Derived>& w, const typename NumTraits<typename MatrixType::Scalar>::Real& sigma)
553 template<typename Derived>
554 bool LDLT<MatrixType,_UpLo>::solveInPlace(MatrixBase<Derived> &bAndX) const
602 template<typename Derived>
    [all...]
  /external/clang/test/CXX/except/except.spec/
p5-virtual.cpp 61 struct Derived : Base
  /external/clang/test/SemaCXX/
using-decl-templates.cpp 76 class Derived : public Base<T> {
warn-overloaded-virtual.cpp 50 struct Derived : public Base {
147 struct derived : base { struct in namespace:__anon8179
151 void foo(derived &d) {
152 d.f('1'); // FIXME: this should warn about calling (anonymous namespace)::derived::f(int)

Completed in 1440 milliseconds

1 2 3 4 5 6 7 8 91011>>