Home
last modified time | relevance | path

Searched defs:derived (Results 1 – 25 of 154) sorted by relevance

1234567

/external/sdv/vsomeip/third_party/boost/iterator/test/
Diterator_facade.cpp163 struct derived : base struct
165 derived(int state) : state(state) { } in derived() argument
166 derived(const derived &d) : state(d.state) { } in derived() function
167 derived(const base &b) { derived::assign(b); } in derived() function
171 state = boost::polymorphic_cast<const derived *>(&b)->state; in assign() argument
176 return state == boost::polymorphic_cast<const derived *>(&b)->state; in equal() argument
179 int state;
/external/sdv/vsomeip/third_party/boost/config/test/
Dboost_override_test.cpp15 struct derived struct
17 void first() BOOST_OVERRIDE { } in first()
18 void second() BOOST_OVERRIDE { } in second()
/external/sdv/vsomeip/third_party/boost/conversion/test/
Dpolymorphic_cast_test.cpp73 Derived * derived; in test_polymorphic_cast() local
116 Derived * derived; in test_polymorphic_pointer_cast() local
198 Derived * derived = boost::polymorphic_pointer_downcast<Derived>( base ); in test_polymorphic_pointer_downcast_builtin() local
216 boost::shared_ptr<Derived> derived = boost::polymorphic_pointer_downcast<Derived>( base ); in test_polymorphic_pointer_downcast_boost_shared() local
230 boost::intrusive_ptr<Derived> derived = boost::polymorphic_pointer_downcast<Derived>( base ); in test_polymorphic_pointer_downcast_intrusive() local
246 std::shared_ptr<Derived> derived = boost::polymorphic_pointer_downcast<Derived>( base ); in test_polymorphic_pointer_downcast_std_shared() local
/external/eigen/Eigen/src/Core/
DStlIterators.h92 Derived& derived() { return static_cast<Derived&>(*this); } in derived() function
93 const Derived& derived() const { return static_cast<const Derived&>(*this); } in derived() function
171 Derived& derived() { return static_cast<Derived&>(*this); } in derived() function
172 const Derived& derived() const { return static_cast<const Derived&>(*this); } in derived() function
DTranspositions.h27 Derived& derived() { return *static_cast<Derived*>(this); } in derived() function
29 const Derived& derived() const { return *static_cast<const Derived*>(this); } in derived() function
DDiagonalMatrix.h41 inline const Derived& derived() const { return *static_cast<const Derived*>(this); } in derived() function
43 inline Derived& derived() { return *static_cast<Derived*>(this); } in derived() function
DEigenBase.h46 Derived& derived() { return *static_cast<Derived*>(this); } in derived() function
49 const Derived& derived() const { return *static_cast<const Derived*>(this); } in derived() function
/external/eigen/Eigen/src/Geometry/
DRotationBase.h41 …EIGEN_DEVICE_FUNC inline const Derived& derived() const { return *static_cast<const Derived*>(this… in derived() function
42 EIGEN_DEVICE_FUNC inline Derived& derived() { return *static_cast<Derived*>(this); } in derived() function
/external/sdv/vsomeip/third_party/boost/fusion/include/boost/fusion/support/
Dsequence_base.hpp28 derived() const BOOST_NOEXCEPT in derived() function
35 derived() BOOST_NOEXCEPT in derived() function
/external/kotlinx.serialization/formats/json-tests/commonTest/src/kotlinx/serialization/features/
DInheritanceTest.kt82 val derived = Derived(42) in canBeSerializedAsDerived() constant
91 val derived = Derived(42) in canBeSerializedAsParent() constant
/external/sdv/vsomeip/third_party/boost/serialization/src/
Dvoid_cast.cpp110 extended_type_info const * derived, in void_caster_shortcut()
206 extended_type_info const * derived, in void_caster_argument()
330 extended_type_info const & derived, in void_upcast()
360 extended_type_info const & derived, in void_downcast()
/external/sdv/vsomeip/third_party/boost/serialization/include/boost/serialization/
Dvoid_cast.hpp60 extended_type_info const & derived, in void_upcast()
80 extended_type_info const & derived, in void_downcast()
136 extended_type_info const * derived, in void_caster()
/external/pigweed/pw_sync/
Dborrow_test.cc46 Derived derived(1); in TEST() local
54 Derived derived(2); in TEST() local
/external/eigen/Eigen/src/SparseCore/
DSparseSolverBase.h79 Derived& derived() { return *static_cast<Derived*>(this); } in derived() function
80 const Derived& derived() const { return *static_cast<const Derived*>(this); } in derived() function
/external/libcxxabi/test/
Dcatch_ptr_02.pass.cpp95 struct derived : base1, base2 {}; struct
153 vDerived derived; in test8() local
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ADT/
DTypeSwitch.h45 DerivedT &derived = static_cast<DerivedT &>(*this); in Case() local
59 DerivedT &derived = static_cast<DerivedT &>(*this); in Case() local
/external/cronet/third_party/libc++abi/src/test/
Dcatch_ptr_02.pass.cpp96 struct derived : base1, base2 {}; struct
154 vDerived derived; in test8() local
/external/doclava/src/com/google/doclava/
DHierarchy.java78 TreeSet<String> derived = nodes.get(name); in depth() local
126 TreeSet<String> derived = nodes.get(name); in recurse() local
/external/eigen/unsupported/Eigen/src/Skyline/
DSkylineMatrixBase.h91 inline const Derived& derived() const { in derived() function
95 inline Derived& derived() { in derived() function
/external/sdv/vsomeip/third_party/boost/spirit/include/boost/spirit/home/classic/core/
Dparser.hpp129 DerivedT& derived() in derived() function
134 DerivedT const& derived() const in derived() function
/external/cronet/third_party/libc++/src/test/std/iterators/predef.iterators/reverse.iterators/reverse.iter.cons/
Dctor.reverse_iterator.LWG3435.verify.cpp24 …std::reverse_iterator<Derived*> derived(base); // expected-error {{no matching constructor for ini… in test() local
/external/cronet/third_party/libc++/src/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op.const/
Dctor.convert.LWG3435.verify.cpp24 …std::move_iterator<Derived*> derived(base); // expected-error {{no matching constructor for initia… in test() local
/external/cronet/third_party/libc++/src/test/libcxx/iterators/predef.iterators/__unconstrained_reverse_iterator/reverse.iter.cons/
Dctor.reverse_iterator.LWG3435.verify.cpp24 …std::__unconstrained_reverse_iterator<Derived*> derived(base); // expected-error {{no matching con… in test() local
Dassign.LWG3435.verify.cpp24 std::__unconstrained_reverse_iterator<Derived*> derived; in test() local
/external/cronet/third_party/libc++/src/test/std/iterators/predef.iterators/move.iterators/move.iter.ops/move.iter.op=/
Dassign.LWG3435.verify.cpp24 std::move_iterator<Derived*> derived; in test() local

1234567