Lines Matching defs:enable_if
36 struct enable_if { typedef T type; };
39 struct enable_if< false, T > {};
44 void implicit(typename enable_if< O <= 4 >::type* = 0) {
48 void cstyle(typename enable_if< O <= (unsigned)4 >::type* = 0) {
52 void functional(typename enable_if< O <= unsigned(4) >::type* = 0) {
56 void static_(typename enable_if< O <= static_cast<unsigned>(4) >::type* = 0) {
60 void reinterpret_(typename enable_if<O <= sizeof(reinterpret_cast<T *>(0))>::type * = 0) {
64 void const_(typename enable_if<0 <= sizeof(const_cast<T *>(p))>::type * = 0) {
68 void dynamic_(typename enable_if<0 <= sizeof(dynamic_cast<T *>(p))>::type * = 0) {
379 void cpp_nullptr(typename enable_if<P == nullptr>::type* = 0) {
383 void gnu_null(typename enable_if<P == __null>::type* = 0) {