Searched defs:__type_traits (Results 1 – 5 of 5) sorted by relevance
58 struct __type_traits<TrivialCopyStruct> { struct59 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> { struct70 typedef __true_type has_trivial_default_constructor;71 typedef __true_type has_trivial_copy_constructor;73 typedef __true_type has_trivial_destructor;[all …]
248 struct __type_traits<PointEx> { struct249 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;
119 struct __type_traits<any_pod_type> { struct120 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> { struct515 typedef __true_type has_trivial_default_constructor;516 typedef __true_type has_trivial_copy_constructor;518 typedef __true_type has_trivial_destructor;[all …]
419 struct __type_traits<PointEx> { struct420 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;
69 struct __type_traits { struct70 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