Home
last modified time | relevance | path

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

12345

/third_party/boost/libs/hof/test/
Dvirtual_base.cpp22 struct derived : virtual base { struct
23 derived() : base(1) {} in derived() argument
24 derived(const derived&) : base(1) {} in derived() argument
28 ~derived(); argument
/third_party/boost/libs/iterator/test/
Diterator_facade.cpp163 struct derived : base struct
165 derived(int state) : state(state) { } in derived() function
166 derived(const derived &d) : state(d.state) { } in derived() function
167 derived(const base &b) { derived::assign(b); } in derived() argument
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;
/third_party/boost/libs/config/test/
Dboost_override_test.cpp15 struct derived struct
17 void first() BOOST_OVERRIDE { } in first()
18 void second() BOOST_OVERRIDE { } in second()
/third_party/boost/libs/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
/third_party/typescript/tests/baselines/reference/
DfixingTypeParametersRepeatedly2.js9 var derived: Derived; variable
21 var derived; variable
DextendBaseClassBeforeItsDeclared.js2 class derived extends base { } class
22 var derived = /** @class */ (function (_super) { function
24 function derived() { function
DfixingTypeParametersRepeatedly3.js9 var derived: Derived; variable
21 var derived; variable
DerrorForwardReferenceForwadingConstructor.js10 class derived extends base { } class
40 var derived = /** @class */ (function (_super) { function
42 function derived() { function
DshadowPrivateMembers.js3 class derived extends base { private n() {} } class
28 var derived = /** @class */ (function (_super) { function
30 function derived() { function
DbestCommonTypeOfConditionalExpressions2.js9 var derived: Derived; variable
65 var derived; variable
/third_party/boost/boost/type_erasure/
Dderived.hpp25 struct derived struct
28 typedef detail::unspecified type;
/third_party/typescript/tests/cases/compiler/
DdeclFileGenericClassWithGenericExtendedClass.ts8 derived: Derived<T>; property
11 derived: Derived<Baz>; property in Baz
DarrayBestCommonTypes.ts5 class derived extends base { } class
58 class derived extends base { a: string; } class
DshadowPrivateMembers.ts2 class derived extends base { private n() {} } class
DextendBaseClassBeforeItsDeclared.ts1 class derived extends base { } class
DerrorForwardReferenceForwadingConstructor.ts9 class derived extends base { } class
/third_party/boost/boost/bimap/detail/
Dmap_view_base.hpp232 Derived& derived() in derived() function in boost::bimaps::detail::map_view_base
237 Derived const& derived() const in derived() function in boost::bimaps::detail::map_view_base
312 Derived& derived() in derived() function in boost::bimaps::detail::mutable_data_unique_map_view_access
317 Derived const& derived() const in derived() function in boost::bimaps::detail::mutable_data_unique_map_view_access
363 Derived& derived() in derived() function in boost::bimaps::detail::non_mutable_data_unique_map_view_access
368 Derived const& derived() const in derived() function in boost::bimaps::detail::non_mutable_data_unique_map_view_access
/third_party/boost/boost/fusion/support/
Dsequence_base.hpp28 derived() const BOOST_NOEXCEPT in derived() function
35 derived() BOOST_NOEXCEPT in derived() function
/third_party/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/
DbestCommonTypeOfConditionalExpressions2.ts8 var derived: Derived; variable
12 var r9 = true ? derived : derived2; variable
DbestCommonTypeOfConditionalExpressions.ts11 var derived: Derived; variable
21 var r10: Base = true ? derived : derived2; // no error since we use the contextual type in BCT variable
/third_party/boost/libs/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()
/third_party/boost/boost/graph/distributed/detail/
Dremote_update_set.hpp121 Derived* derived = static_cast<Derived*>(self); in operator ()() local
147 Derived* derived = static_cast<Derived*>(this); in update() local
215 Derived* derived = static_cast<Derived*>(self); in operator ()() local
232 Derived* derived = static_cast<Derived*>(this); in update() local
/third_party/boost/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()
/third_party/boost/boost/statechart/detail/
Dreaction_dispatcher.hpp81 struct derived struct in boost::statechart::detail::reaction_dispatcher
83 static result react( in react()
/third_party/boost/libs/hana/test/integral_constant/
Dtag.cpp19 struct derived : hana::integral_constant<int, 10> { }; struct

12345