HomeSort by relevance Sort by last modified time
    Searched refs:Derived (Results 126 - 150 of 327) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/eigen/Eigen/src/Geometry/
Rotation2D.h 85 template<typename Derived>
86 Rotation2D& fromRotationMatrix(const MatrixBase<Derived>& m);
133 template<typename Derived>
134 Rotation2D<Scalar>& Rotation2D<Scalar>::fromRotationMatrix(const MatrixBase<Derived>& mat)
137 EIGEN_STATIC_ASSERT(Derived::RowsAtCompileTime==2 && Derived::ColsAtCompileTime==2,YOU_MADE_A_PROGRAMMING_MISTAKE)
AngleAxis.h 78 template<typename Derived>
79 inline AngleAxis(const Scalar& angle, const MatrixBase<Derived>& axis) : m_axis(axis), m_angle(angle) {}
83 template<typename Derived>
84 inline explicit AngleAxis(const MatrixBase<Derived>& m) { *this = m; }
110 template<typename Derived>
111 AngleAxis& operator=(const MatrixBase<Derived>& m);
113 template<typename Derived>
114 AngleAxis& fromRotationMatrix(const MatrixBase<Derived>& m);
182 template<typename Derived>
183 AngleAxis<Scalar>& AngleAxis<Scalar>::operator=(const MatrixBase<Derived>& mat
    [all...]
EulerAngles.h 35 template<typename Derived>
36 inline Matrix<typename MatrixBase<Derived>::Scalar,3,1>
37 MatrixBase<Derived>::eulerAngles(Index a0, Index a1, Index a2) const
43 EIGEN_STATIC_ASSERT_MATRIX_SPECIFIC_SIZE(Derived,3,3)
46 typedef Matrix<typename Derived::Scalar,2,1> Vector2;
RotationBase.h 25 * \param Derived is the derived type, i.e., a rotation type
28 template<typename Derived, int _Dim>
34 typedef typename internal::traits<Derived>::Scalar Scalar;
41 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } function in class:Eigen::RotationBase
42 inline Derived& derived() { return *static_cast<Derived*>(this); function in class:Eigen::RotationBase
    [all...]
  /external/eigen/Eigen/src/Core/
IO.h 21 template<typename Derived>
22 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt);
115 template<typename Derived>
116 inline const WithFormat<Derived>
117 DenseBase<Derived>::format(const IOFormat& fmt) const
119 return WithFormat<Derived>(derived(), fmt);
152 template<typename Derived>
153 std::ostream & print_matrix(std::ostream & s, const Derived& _m, const IOFormat& fmt)
161 typename Derived::Nested m = _m
    [all...]
NestByValue.h 102 template<typename Derived>
103 inline const NestByValue<Derived>
104 DenseBase<Derived>::nestByValue() const
106 return NestByValue<Derived>(derived());
  /external/clang/lib/Sema/
TreeTransform.h 93 template<typename Derived>
99 Derived &Self;
103 ForgetPartiallySubstitutedPackRAII(Derived &Self) : Self(Self) {
124 /// \brief Retrieves a reference to the derived class.
125 Derived &getDerived() { return static_cast<Derived&>(*this); }
127 /// \brief Retrieves a reference to the derived class.
128 const Derived &getDerived() const {
129 return static_cast<const Derived&>(*this);
278 /// \brief Note to the derived class when a function parameter pack i
    [all...]
  /art/test/077-method-override/src/
Main.java 19 Derived derived = new Derived(); local
21 derived.declaredInBase();
22 derived.notDeclaredInBase();
23 derived.wasOverridden();
25 derived.callOverrideWithPublic();
26 derived.callOverrideProtectedWithPublic();
27 derived.callOverridePublicWithProtected();
28 derived.callOverridePublicWithPrivate()
    [all...]
  /external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/
p8.cpp 75 template <class T> struct Derived : Base<T> {
82 template struct Derived<int>; // expected-note {{in instantiation of template class}}
  /external/clang/test/CodeGenCXX/
apple-kext-indirect-call-2.C 32 struct Derived : public Base {
35 void FUNC1(Derived* p) {
  /external/clang/test/CXX/class.derived/
p1.cpp 24 struct Derived : decltype(Base()) { };
  /external/eigen/Eigen/src/SPQRSupport/
SuiteSparseQRSupport.h 18 template <typename SPQRType, typename Derived> struct SPQR_QProduct;
28 template <typename SPQRType, typename Derived> struct traits<SPQR_QProduct<SPQRType, Derived> >
30 typedef typename Derived::PlainObject ReturnType;
140 return internal::solve_retval<SPQR, Rhs>(*this, B.derived());
236 template <typename SPQRType, typename Derived>
237 struct SPQR_QProduct : ReturnByValue<SPQR_QProduct<SPQRType,Derived> >
242 SPQR_QProduct(const SPQRType& spqr, const Derived& other, bool transpose) : m_spqr(spqr),m_other(other),m_transpose(transpose) {}
260 const Derived& m_other;
268 template<typename Derived>
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseView.h 90 template<typename Derived>
91 const SparseView<Derived> MatrixBase<Derived>::sparseView(const Scalar& m_reference,
94 return SparseView<Derived>(derived(), m_reference, m_epsilon);
  /ndk/sources/cxx-stl/gabi++/tests/
test_gabixx_rtti.cpp 41 struct Derived : Base {};
73 Derived derived; local
74 Base* pbase = &derived;
76 CHECK(typeid(derived) == typeid(Derived));
78 CHECK(typeid(&derived) == typeid(Derived*));
80 printf("derived is: %s\n", typeid(derived).name())
    [all...]
  /ndk/tests/device/test-stlport-rtti/jni/
test_stlport_rtti.cpp 41 struct Derived : Base {};
73 Derived derived; local
74 Base* pbase = &derived;
76 CHECK(typeid(derived) == typeid(Derived));
78 CHECK(typeid(&derived) == typeid(Derived*));
80 printf("derived is: %s\n", typeid(derived).name())
    [all...]
  /external/eigen/unsupported/Eigen/src/MatrixFunctions/
MatrixFunction.h 480 * \tparam Derived Type of the argument to the matrix function.
488 template<typename Derived> class MatrixFunctionReturnValue
489 : public ReturnByValue<MatrixFunctionReturnValue<Derived> >
493 typedef typename Derived::Scalar Scalar;
494 typedef typename Derived::Index Index;
503 MatrixFunctionReturnValue(const Derived& A, StemFunction f) : m_A(A), m_f(f) { }
513 typedef typename Derived::PlainObject PlainObject;
532 typename internal::nested<Derived>::type m_A;
539 template<typename Derived>
540 struct traits<MatrixFunctionReturnValue<Derived> >
    [all...]
  /external/chromium_org/mojo/public/cpp/bindings/lib/
template_util.h 70 template<typename Base, typename Derived> struct IsBaseOf {
75 typedef char (*EnsureTypesAreComplete)[sizeof(Base) + sizeof(Derived)];
77 static Derived* CreateDerived();
  /external/clang/test/CXX/class.derived/class.member.lookup/
p8.cpp 15 struct Derived : public D1, public D2 {
20 Derived d;
25 void Derived::Inner() {
  /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.
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
trivial_singleton.hpp 35 template<typename Derived>
38 static Derived& instance() { static Derived the_inst; return the_inst; }
  /external/clang/include/clang/AST/
RecursiveASTVisitor.h 63 // invokes CALL_EXPR, which must be a method call, on the derived
129 /// overriding shouldVisitTemplateInstantiations() in the derived class
133 template <typename Derived> class RecursiveASTVisitor {
135 /// \brief Return a reference to the derived class.
136 Derived &getDerived() { return *static_cast<Derived *>(this); }
448 template <typename Derived>
449 bool RecursiveASTVisitor<Derived>::dataTraverse(Stmt *S) {
490 template <typename Derived>
491 bool RecursiveASTVisitor<Derived>::dataTraverseNode(Stmt *S
    [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/clang/test/Analysis/
derived-to-base.cpp 146 struct Derived : public Base {
150 struct DoubleDerived : public Derived {
158 int getY(const Derived &obj) {
163 Derived d;
172 Derived d2(d);
187 Derived d2(d);
316 struct FullyDerived : private NonTrivialCopy, public Derived {
349 class Derived : public Base {
354 void test(Derived d) {
458 struct Derived : public Base { int x; }
    [all...]
  /external/clang/test/SemaCXX/
empty-class-layout.cpp 36 template<int N> struct Derived : Empty, Derived<N - 1> {
38 template<> struct Derived<0> : Empty { };
40 struct S1 : virtual Derived<10> {
45 struct S2 : virtual Derived<10> {
  /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...]

Completed in 952 milliseconds

1 2 3 4 56 7 8 91011>>