Home
last modified time | relevance | path

Searched defs:polymorphic (Results 1 – 11 of 11) sorted by relevance

/third_party/boost/boost/serialization/
Dsmart_cast.hpp68 struct polymorphic { struct
70 struct linear {
77 struct cross {
85 static T cast(U & u){ in cast()
138 struct polymorphic { struct
183 static T cast(U * u){ in cast()
Dbase_object.hpp63 struct polymorphic { struct
64 static void const * invoke(){ in invoke()
Dshared_ptr_helper.hpp112 struct polymorphic { struct in boost::serialization::shared_ptr_helper
115 get_object_type(U & u){ in get_object_type()
/third_party/boost/libs/exception/test/
Dcurrent_exception_cast_test.cpp17 polymorphic class
/third_party/boost/libs/serialization/test/
Dtest_static_warning.cpp19 class polymorphic { class
/third_party/typescript/tests/cases/conformance/types/thisType/
DthisTypeInFunctions.ts143 public polymorphic(this: this): number { return this.x; } method in Base1
153 polymorphic(this: this): number { return this.y; } method in Base2
DthisTypeInFunctionsNegative.ts125 public polymorphic(this: this): number { return this.x; } method in Base1
134 polymorphic(this: this): number { return this.y; } method in Base2
/third_party/boost/boost/archive/detail/
Doserializer.hpp376 struct polymorphic struct
379 static void save( in save()
/third_party/typescript/tests/baselines/reference/
DthisTypeInFunctionsNegative.js289 polymorphic() { return this.x; } method in Base1
296 polymorphic() { return this.y; } method in Base2
DthisTypeInFunctions.js341 Base1.prototype.polymorphic = function () { return this.x; }; method in Base1
356 Base2.prototype.polymorphic = function () { return this.y; }; method in Base2
/third_party/boost/libs/python/src/object/
Dinheritance.cpp390 inline void* convert_type(void* const p, class_id src_t, class_id dst_t, bool polymorphic) in convert_type()