/third_party/boost/libs/hof/test/ |
D | virtual_base.cpp | 22 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/ |
D | iterator_facade.cpp | 163 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/ |
D | boost_override_test.cpp | 15 struct derived struct 17 void first() BOOST_OVERRIDE { } in first() 18 void second() BOOST_OVERRIDE { } in second()
|
/third_party/boost/libs/conversion/test/ |
D | polymorphic_cast_test.cpp | 73 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/ |
D | fixingTypeParametersRepeatedly2.js | 9 var derived: Derived; variable 21 var derived; variable
|
D | extendBaseClassBeforeItsDeclared.js | 2 class derived extends base { } class 22 var derived = /** @class */ (function (_super) { function 24 function derived() { function
|
D | fixingTypeParametersRepeatedly3.js | 9 var derived: Derived; variable 21 var derived; variable
|
D | errorForwardReferenceForwadingConstructor.js | 10 class derived extends base { } class 40 var derived = /** @class */ (function (_super) { function 42 function derived() { function
|
D | shadowPrivateMembers.js | 3 class derived extends base { private n() {} } class 28 var derived = /** @class */ (function (_super) { function 30 function derived() { function
|
D | bestCommonTypeOfConditionalExpressions2.js | 9 var derived: Derived; variable 65 var derived; variable
|
/third_party/boost/boost/type_erasure/ |
D | derived.hpp | 25 struct derived struct 28 typedef detail::unspecified type;
|
/third_party/typescript/tests/cases/compiler/ |
D | declFileGenericClassWithGenericExtendedClass.ts | 8 derived: Derived<T>; property 11 derived: Derived<Baz>; property in Baz
|
D | arrayBestCommonTypes.ts | 5 class derived extends base { } class 58 class derived extends base { a: string; } class
|
D | shadowPrivateMembers.ts | 2 class derived extends base { private n() {} } class
|
D | extendBaseClassBeforeItsDeclared.ts | 1 class derived extends base { } class
|
D | errorForwardReferenceForwadingConstructor.ts | 9 class derived extends base { } class
|
/third_party/boost/boost/bimap/detail/ |
D | map_view_base.hpp | 232 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/ |
D | sequence_base.hpp | 28 derived() const BOOST_NOEXCEPT in derived() function 35 derived() BOOST_NOEXCEPT in derived() function
|
/third_party/typescript/tests/cases/conformance/types/typeRelationships/bestCommonType/ |
D | bestCommonTypeOfConditionalExpressions2.ts | 8 var derived: Derived; variable 12 var r9 = true ? derived : derived2; variable
|
D | bestCommonTypeOfConditionalExpressions.ts | 11 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/ |
D | void_cast.cpp | 110 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/ |
D | remote_update_set.hpp | 121 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/ |
D | void_cast.hpp | 60 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/ |
D | reaction_dispatcher.hpp | 81 struct derived struct in boost::statechart::detail::reaction_dispatcher 83 static result react( in react()
|
/third_party/boost/libs/hana/test/integral_constant/ |
D | tag.cpp | 19 struct derived : hana::integral_constant<int, 10> { }; struct
|