HomeSort by relevance Sort by last modified time
    Searched defs:derived (Results 26 - 50 of 72) sorted by null

12 3

  /external/eigen/Eigen/src/PardisoSupport/
PardisoSupport.h 13 be used to endorse or promote products derived from this software without
98 template<class Derived>
101 typedef internal::pardiso_traits<Derived> Traits;
157 Derived& analyzePattern(const MatrixType& matrix);
165 Derived& factorize(const MatrixType& matrix);
167 Derived& compute(const MatrixType& matrix);
180 return internal::solve_retval<PardisoImpl, Rhs>(*this, b.derived());
194 return internal::sparse_solve_retval<PardisoImpl, Rhs>(*this, b.derived());
197 Derived& derived() function in class:Eigen::PardisoImpl
201 const Derived& derived() const function in class:Eigen::PardisoImpl
    [all...]
  /external/eigen/unsupported/Eigen/src/Skyline/
SkylineMatrixBase.h 23 * \param Derived
26 template<typename Derived> class SkylineMatrixBase : public EigenBase<Derived> {
29 typedef typename internal::traits<Derived>::Scalar Scalar;
30 typedef typename internal::traits<Derived>::StorageKind StorageKind;
34 RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime,
36 * by the \a Derived type. If a value is not known at compile-time,
40 ColsAtCompileTime = internal::traits<Derived>::ColsAtCompileTime,
42 * by the \a Derived type. If a value is not known at compile-time,
47 SizeAtCompileTime = (internal::size_at_compile_time<internal::traits<Derived>::RowsAtCompileTime
91 inline const Derived& derived() const { function in class:Eigen::SkylineMatrixBase
95 inline Derived& derived() { function in class:Eigen::SkylineMatrixBase
    [all...]
  /external/clang/test/FixIt/
typo.cpp 52 struct Derived : public Base { // expected-note{{base class 'Base' specified here}}
55 Derived() : base(), // expected-error{{initializer 'base' does not name a non-static data member or base class; did you mean the base class 'Base'?}}
65 int &Derived::getMember() {
120 struct derived : base { struct in inherits:base
125 derived d;
127 // to replace base::i with derived::i as we would for other qualified name misspellings.
  /external/clang/test/SemaCXX/
static-cast.cpp 93 (void)static_cast<H*>((A*)0); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
94 (void)static_cast<H&>(*((A*)0)); // expected-error {{ambiguous cast from base 'A' to derived 'H':\n struct A -> struct B -> struct G1 -> struct H\n struct A -> struct B -> struct G2 -> struct H}}
138 (void)static_cast<int A::*>((int H::*)0); // expected-error {{ambiguous conversion from pointer to member of derived class 'H' to pointer to member of base class 'A':}}
146 template<typename E> struct derived : public base {}; struct in namespace:pr5261
149 ~outer() { (void)static_cast<derived<E>*>(pb); }
conditional-expr.cpp 27 struct Derived : Base {
33 struct Fin : Mid, Derived {};
34 typedef void (Derived::*DFnPtr)();
103 Derived derived; local
105 Base &bar1 = i1 ? base : derived;
106 Base &bar2 = i1 ? derived : base;
121 extern const Derived constder();
125 A a3((i1 ? constret() : Derived()).trick());
126 A a4((i1 ? Derived() : constret()).trick())
    [all...]
  /external/eigen/Eigen/src/Core/
DiagonalMatrix.h 17 template<typename Derived>
18 class DiagonalBase : public EigenBase<Derived>
21 typedef typename internal::traits<Derived>::DiagonalVectorType DiagonalVectorType;
24 typedef typename internal::traits<Derived>::StorageKind StorageKind;
25 typedef typename internal::traits<Derived>::Index Index;
40 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::DiagonalBase
41 inline Derived& derived() { return *static_cast<Derived*>(this); function in class:Eigen::DiagonalBase
    [all...]
TriangularMatrix.h 29 template<typename Derived> class TriangularBase : public EigenBase<Derived>
34 Mode = internal::traits<Derived>::Mode,
35 CoeffReadCost = internal::traits<Derived>::CoeffReadCost,
36 RowsAtCompileTime = internal::traits<Derived>::RowsAtCompileTime,
37 ColsAtCompileTime = internal::traits<Derived>::ColsAtCompileTime,
38 MaxRowsAtCompileTime = internal::traits<Derived>::MaxRowsAtCompileTime,
39 MaxColsAtCompileTime = internal::traits<Derived>::MaxColsAtCompileTime
41 typedef typename internal::traits<Derived>::Scalar Scalar;
42 typedef typename internal::traits<Derived>::StorageKind StorageKind
77 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::TriangularBase
78 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::TriangularBase
    [all...]
  /external/eigen/Eigen/src/IterativeLinearSolvers/
IterativeSolverBase.h 20 template< typename Derived>
24 typedef typename internal::traits<Derived>::MatrixType MatrixType;
25 typedef typename internal::traits<Derived>::Preconditioner Preconditioner;
32 Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::IterativeSolverBase
33 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::IterativeSolverBase
65 Derived& analyzePattern(const MatrixType& A
    [all...]
  /external/eigen/Eigen/src/PaStiXSupport/
PaStiXSupport.h 119 template <class Derived>
123 typedef typename internal::pastix_traits<Derived>::MatrixType _MatrixType;
154 return internal::solve_retval<PastixBase, Rhs>(*this, b.derived());
160 Derived& derived() function in class:Eigen::PastixBase
162 return *static_cast<Derived*>(this);
164 const Derived& derived() const function in class:Eigen::PastixBase
166 return *static_cast<const Derived*>(this);
234 return internal::sparse_solve_retval<PastixBase, Rhs>(*this, b.derived());
    [all...]
  /external/eigen/unsupported/Eigen/src/AutoDiff/
AutoDiffScalar.h 396 const AutoDiffScalar<_DerType>& derived() const { return *static_cast<const AutoDiffScalar<_DerType>*>(this); } function in struct:Eigen::internal::auto_diff_special_op
397 AutoDiffScalar<_DerType>& derived() { return *static_cast<AutoDiffScalar<_DerType>*>(this); } function in struct:Eigen::internal::auto_diff_special_op
402 return AutoDiffScalar<DerType&>(derived().value() + other, derived().derivatives());
412 derived().value() += other;
413 return derived();
421 derived().value() * other,
422 derived().derivatives() * other);
436 return derived();
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.cc 15 // contributors may be used to endorse or promote products derived from
327 Derived derived; local
  /external/eigen/Eigen/src/CholmodSupport/
CholmodSupport.h 120 template<typename Derived>
121 cholmod_dense viewAsCholmod(MatrixBase<Derived>& mat)
123 EIGEN_STATIC_ASSERT((internal::traits<Derived>::Flags&RowMajorBit)==0,THIS_METHOD_IS_ONLY_FOR_COLUMN_MAJOR_MATRICES);
124 typedef typename Derived::Scalar Scalar;
130 res.d = Derived::IsVectorAtCompileTime ? mat.derived().size() : mat.derived().outerStride();
131 res.x = (void*)(mat.derived().data());
159 template<typename _MatrixType, int _UpLo, typename Derived>
197 Derived& derived() { return *static_cast<Derived*>(this); function in class:Eigen::CholmodBase
198 const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::CholmodBase
    [all...]
  /external/eigen/Eigen/src/SparseCholesky/
SimplicialCholesky.h 35 template<typename Derived>
39 typedef typename internal::traits<Derived>::MatrixType MatrixType;
40 typedef typename internal::traits<Derived>::OrderingType OrderingType;
41 enum { UpLo = internal::traits<Derived>::UpLo };
58 derived().compute(matrix);
65 Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::SimplicialCholeskyBase
66 const Derived& derived() const { return *static_cast<const Derived*>(this); function in class:Eigen::SimplicialCholeskyBase
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseMatrixBase.h 21 * \tparam Derived
26 template<typename Derived> class SparseMatrixBase : public EigenBase<Derived>
30 typedef typename internal::traits<Derived>::Scalar Scalar;
32 typedef typename internal::traits<Derived>::StorageKind StorageKind;
33 typedef typename internal::traits<Derived>::Index Index;
39 typedef EigenBase<Derived> Base;
42 Derived& operator=(const EigenBase<OtherDerived> &other)
44 other.derived().evalTo(derived());
131 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::SparseMatrixBase
132 inline Derived& derived() { return *static_cast<Derived*>(this); } function in class:Eigen::SparseMatrixBase
    [all...]
  /external/gmock/test/
gmock-actions_test.cc 15 // contributors may be used to endorse or promote products derived from
501 struct Derived : public Base {
502 bool operator==(const Derived&) { return true; }
507 Derived derived; local
511 ret = Return(&derived);
512 EXPECT_EQ(&derived, ret.Perform(make_tuple()));
581 Derived derived; local
585 a = ReturnRef(derived);
605 Derived derived; local
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasAnalysis.h 695 /// derived type passed into it.
706 /// Helper to dispatch calls back through the derived type.
707 DerivedT &derived() { return static_cast<DerivedT &>(*this); } function in class:llvm::AAResultBase
760 // Provide all the copy and move constructors so that derived types aren't
769 /// back to the derived class's implementation.
770 AAResultsProxy getBestAAResults() { return AAResultsProxy(AAR, derived()); }
    [all...]
  /external/opencv3/3rdparty/jinja2/
runtime.py 199 def derived(self, locals=None): member in class:Context
200 """Internal helper function to create a derived context."""
  /external/v8/test/mjsunit/es6/
super.js 20 function Derived() {
23 Derived.prototype = {
25 toString() { return "this is Derived"; },
28 assertEquals("Base this is Derived", super.f());
33 return "Derived";
38 assertEquals("Derived", new Derived().f());
60 function Derived() {
63 Derived.prototype = {
65 toString() { return "this is Derived"; },
99 var derived; variable
134 var derived; variable
200 var derived; variable
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/
iterator_facade.hpp 122 // combinations, user-defined iterators must be derived from
457 template <class Derived, class V, class TC, class R, class D> \
458 prefix Derived operator+ args
497 , (iterator_facade<Derived, V, TC, R, D> const&
498 , typename Derived::difference_type)
504 , (typename Derived::difference_type
505 , iterator_facade<Derived, V, TC, R, D> const&)
565 static I& derived(iterator_facade<I,V,TC,R,D>& facade) function in class:boost::iterator_core_access
571 static I const& derived(iterator_facade<I,V,TC,R,D> const& facade) function in class:boost::iterator_core_access
586 class Derived // The derived iterator type being constructe
604 Derived& derived() function in class:boost::iterator_facade
609 Derived const& derived() const function in class:boost::iterator_facade
    [all...]
  /external/google-breakpad/src/testing/test/
gmock-actions_test.cc 15 // contributors may be used to endorse or promote products derived from
501 struct Derived : public Base {
502 bool operator==(const Derived&) { return true; }
507 Derived derived; local
511 ret = Return(&derived);
512 EXPECT_EQ(&derived, ret.Perform(make_tuple()));
581 Derived derived; local
585 a = ReturnRef(derived);
605 Derived derived; local
    [all...]
  /external/protobuf/java/src/test/java/com/google/protobuf/
DynamicMessageTest.java 16 // contributors may be used to endorse or promote products derived from
276 DynamicMessage derived = message.toBuilder().build(); local
277 reflectionTester.assertAllFieldsSetViaReflection(derived);
279 derived.getUnknownFields().getField(unknownFieldNum).getVarintList());
  /ndk/tests/device/test-gnustl-full/unit/
type_traits_test.cpp 132 struct derived : public base struct in inherits:base
261 derived d;
262 const derived cd = d;
264 derived *pd = &d;
265 derived const *pcd = pd;
  /ndk/tests/device/test-stlport/unit/
type_traits_test.cpp 132 struct derived : public base struct in inherits:base
261 derived d;
262 const derived cd = d;
264 derived *pd = &d;
265 derived const *pcd = pd;
  /external/clang/test/CodeGenCXX/
const-init-cxx11.cpp 257 struct Derived : Dummy, Subobj {
258 constexpr Derived() : Dummy{200}, Subobj{4, 5, 6} {}
260 using ConstDerived = const Derived;
267 constexpr Subobj &&base = Derived{};
270 constexpr Derived &derived = static_cast<Derived&>(base); member in namespace:LiteralReference
  /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...]

Completed in 607 milliseconds

12 3