Home
last modified time | relevance | path

Searched defs:__type_traits (Results 1 – 5 of 5) sorted by relevance

/reactos/sdk/lib/3rdparty/stlport/test/unit/
H A Duninitialized_test.cpp58 struct __type_traits<TrivialCopyStruct> { struct
59 typedef __false_type has_trivial_default_constructor;
61 typedef __true_type has_trivial_copy_constructor;
62 typedef __true_type has_trivial_assignment_operator;
63 typedef __true_type has_trivial_destructor;
64 typedef __false_type is_POD_type;
68 struct __type_traits<TrivialInitStruct> { struct
70 typedef __true_type has_trivial_default_constructor;
71 typedef __true_type has_trivial_copy_constructor;
73 typedef __true_type has_trivial_destructor;
[all …]
H A Ddeque_test.cpp248 struct __type_traits<PointEx> { struct
249 typedef __false_type has_trivial_default_constructor;
250 typedef __true_type has_trivial_copy_constructor;
251 typedef __true_type has_trivial_assignment_operator;
252 typedef __true_type has_trivial_destructor;
253 typedef __true_type is_POD_type;
H A Dtype_traits_test.cpp119 struct __type_traits<any_pod_type> { struct
120 typedef __true_type has_trivial_default_constructor;
121 typedef __true_type has_trivial_copy_constructor;
122 typedef __true_type has_trivial_assignment_operator;
123 typedef __true_type has_trivial_destructor;
124 typedef __true_type is_POD_type;
514 struct __type_traits<DestructorMonitor> { struct
515 typedef __true_type has_trivial_default_constructor;
516 typedef __true_type has_trivial_copy_constructor;
518 typedef __true_type has_trivial_destructor;
[all …]
H A Dvector_test.cpp419 struct __type_traits<PointEx> { struct
420 typedef __false_type has_trivial_default_constructor;
421 typedef __true_type has_trivial_copy_constructor;
422 typedef __true_type has_trivial_assignment_operator;
423 typedef __true_type has_trivial_destructor;
424 typedef __true_type is_POD_type;
/reactos/sdk/include/c++/stlport/stl/
H A Dboost_type_traits.h69 struct __type_traits { struct
70 enum { trivial_constructor = ::boost::has_trivial_constructor<_Tp>::value };
71 typedef typename __bool2type<trivial_constructor>::_Ret has_trivial_default_constructor;
96 typedef typename __type_traits<uncv1>::has_trivial_assignment_operator _STLPTrivialAssign; argument