/external/eigen/Eigen/src/Core/ |
Assign.h | 134 template<typename Derived1, typename Derived2, int Index, int Stop> 138 outer = Index / Derived1::InnerSizeAtCompileTime, 139 inner = Index % Derived1::InnerSizeAtCompileTime 142 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src) 145 assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Index+1, Stop>::run(dst, src); 149 template<typename Derived1, typename Derived2, int Stop> 150 struct assign_DefaultTraversal_CompleteUnrolling<Derived1, Derived2, Stop, Stop> 152 static EIGEN_STRONG_INLINE void run(Derived1 &, const Derived2 &) {} 155 template<typename Derived1, typename Derived2, int Index, int Stop> 158 static EIGEN_STRONG_INLINE void run(Derived1 &dst, const Derived2 &src, int outer [all...] |
SelfAdjointView.h | 204 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite> 205 struct triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount, ClearOpposite> 208 col = (UnrollCount-1) / Derived1::RowsAtCompileTime, 209 row = (UnrollCount-1) % Derived1::RowsAtCompileTime 212 static inline void run(Derived1 &dst, const Derived2 &src) 214 triangular_assignment_selector<Derived1, Derived2, (SelfAdjoint|Upper), UnrollCount-1, ClearOpposite>::run(dst, src); 223 template<typename Derived1, typename Derived2, bool ClearOpposite> 224 struct triangular_assignment_selector<Derived1, Derived2, SelfAdjoint|Upper, 0, ClearOpposite> 226 static inline void run(Derived1 &, const Derived2 &) {} 229 template<typename Derived1, typename Derived2, int UnrollCount, bool ClearOpposite [all...] |
Assign_MKL.h | 76 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling, 77 int VmlTraversal = vml_assign_traits<Derived1, Derived2, UnaryOp>::Traversal > 79 : assign_impl<Derived1, Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn> 83 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling> 84 struct vml_assign_impl<Derived1, Derived2, UnaryOp, Traversal, Unrolling, InnerVectorizedTraversal> 86 typedef typename Derived1::Scalar Scalar; 87 typedef typename Derived1::Index Index; 88 static inline void run(Derived1& dst, const CwiseUnaryOp<UnaryOp, Derived2>& src) 91 // assign_impl<Derived1,Eigen::CwiseUnaryOp<UnaryOp, Derived2>,Traversal,Unrolling,BuiltIn>::run(dst,src); 103 template<typename Derived1, typename Derived2, typename UnaryOp, int Traversal, int Unrolling [all...] |
TriangularMatrix.h | 432 template<typename Derived1, typename Derived2, unsigned int Mode, int UnrollCount, bool ClearOpposite> 436 col = (UnrollCount-1) / Derived1::RowsAtCompileTime, 437 row = (UnrollCount-1) % Derived1::RowsAtCompileTime 440 typedef typename Derived1::Scalar Scalar; 442 static inline void run(Derived1 &dst, const Derived2 &src) 444 triangular_assignment_selector<Derived1, Derived2, Mode, UnrollCount-1, ClearOpposite>::run(dst, src); 467 template<typename Derived1, typename Derived2, unsigned int Mode, bool ClearOpposite> 468 struct triangular_assignment_selector<Derived1, Derived2, Mode, 0, ClearOpposite> 470 static inline void run(Derived1 &, const Derived2 &) {} 473 template<typename Derived1, typename Derived2, bool ClearOpposite [all...] |
/art/test/078-polymorphic-virtual/src/ |
Main.java | 19 Derived1 derived1 = new Derived1(); local 23 derived1.start(); 28 derived1.join(); 36 System.out.println(derived1.getValue());
|
Derived1.java | 17 public class Derived1 extends Base {
|
/dalvik/tests/078-polymorphic-virtual/src/ |
Main.java | 19 Derived1 derived1 = new Derived1(); local 23 derived1.start(); 28 derived1.join(); 36 System.out.println(derived1.getValue());
|
Derived1.java | 17 public class Derived1 extends Base {
|
/external/eigen/doc/examples/ |
TemplateKeyword_flexible.cpp | 6 template <typename Derived1, typename Derived2> 7 void copyUpperTriangularPart(MatrixBase<Derived1>& dst, const MatrixBase<Derived2>& src)
|
/external/clang/test/SemaCXX/ |
composite-pointer-type.cpp | 4 class Derived1 : public Base { }; 7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) { 18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
|
warn-overloaded-virtual.cpp | 89 struct Derived1: virtual Base { 96 struct MostDerived: Derived1, Derived2 { 107 struct Derived1: virtual Base { 114 struct Derived3: Derived1 {
|
overload-call.cpp | 198 int* derived1(A*); 199 char* derived1(const A*); 200 float* derived1(void*); 210 int* d1 = derived1(b); 211 char* d2 = derived1(bc); 212 int* d3 = derived1(c); 213 char* d4 = derived1(cc); 214 float* d5 = derived1(v);
|
offsetof.cpp | 53 int derived1[__builtin_offsetof(Derived2, x) == 0? 1 : -1]; variable
|
conversion-function.cpp | 296 struct Derived1 : Base { }; 300 struct SuperDerived : Derived1, Derived2 { 301 using Derived1::operator int;
|
/external/clang/test/SemaTemplate/ |
class-template-ctor-initializer.cpp | 61 struct Derived1 : Base { 62 Derived1() : Base(1, 2) {} // expected-error {{no matching constructor}} 70 Derived1<void> d1;
|
member-access-ambig.cpp | 20 class Derived1 : public Base { }; 24 class X : public B, public Derived2, public Derived1
|
/external/clang/test/Analysis/ |
reinterpret-cast.cpp | 24 class Derived1 : public Base1 {}; 26 Derived1 *f1(); 45 // In this case, 'p' actually refers to a Derived1.
|
derived-to-base.cpp | 375 class Derived1 : public Base { 380 class Derived2 : public Derived1 { 389 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2); 402 class Derived1 : public Base { 408 class Derived2 : public Derived1 { 417 Derived1 *d1p = reinterpret_cast<Derived1*>(new Derived2); 430 class Derived1 : public Base { 436 class Derived2 : public Derived1 { [all...] |
/external/clang/test/Coverage/ |
cxx-language-features.inc | 21 class Derived1 : Base1, virtual public Base2 { };
|
/external/clang/test/CXX/dcl.dcl/basic.namespace/namespace.udecl/ |
p12.cpp | 77 template <typename T> struct Derived1 : Base { 85 Derived1<int> d1; 112 struct Derived1 : Base { 135 expect<0>(Derived1().foo<int>()); // expected-error {{no matching member function for call to 'foo'}} 136 expect<2>(Derived1().foo<0>());
|
/external/eigen/test/eigen2/ |
product.h | 14 template<typename Derived1, typename Derived2> 15 bool areNotApprox(const MatrixBase<Derived1>& m1, const MatrixBase<Derived2>& m2, typename Derived1::RealScalar epsilon = precision<typename Derived1::RealScalar>())
|
/external/eigen/test/ |
product.h | 13 template<typename Derived1, typename Derived2> 14 bool areNotApprox(const MatrixBase<Derived1>& m1, const MatrixBase<Derived2>& m2, typename Derived1::RealScalar epsilon = NumTraits<typename Derived1::RealScalar>::dummy_precision())
|
/ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/iterator/ |
iterator_facade.hpp | 434 class Derived1, class V1, class TC1, class Reference1, class Difference1 \ 437 prefix typename mpl::apply2<result_type,Derived1,Derived2>::type \ 439 iterator_facade<Derived1, V1, TC1, Reference1, Difference1> const& lhs \ 444 class Derived1, class V1, class TC1, class Reference1, class Difference1 \ 448 Derived1, Derived2 \ 449 , typename mpl::apply2<result_type,Derived1,Derived2>::type \ 452 iterator_facade<Derived1, V1, TC1, Reference1, Difference1> const& lhs \ 815 is_interoperable< Derived1, Derived2 >::value \ 818 *static_cast<Derived1 const*>(&lhs) \ 820 , BOOST_ITERATOR_CONVERTIBLE(Derived2,Derived1) \ [all...] |
/external/clang/test/CXX/class.access/ |
p4.cpp | 133 class Derived1 : Base<1> { }; 166 class Derived1 : private Base { // expected-note 2 {{declared private here}} \ 171 Private test1(Derived1 &d) { return d; } // expected-error {{'operator Private' is a private member}} \ 172 // expected-error {{cannot cast 'test4::Derived1' to its private base class}} 173 Public test2(Derived1 &d) { return d; } // expected-error {{cannot cast 'test4::Derived1' to its private base class}} \
|
/external/eigen/doc/ |
I16_TemplateKeyword.dox | 78 point where the template is defined, without knowing the actual value of the template arguments (\c Derived1 89 example, \c dst is a dependent name because it is of type <tt>MatrixBase<Derived1></tt> which depends 90 on the template parameter \c Derived1.
|