Searched refs:__is_pod (Results 1 - 12 of 12) sorted by relevance

/external/clang/test/SemaCXX/
H A Dtype-traits-incomplete.cpp6 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}}
7 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}}
H A Dlibstdcxx_is_pod_hack.cpp4 // issues with GCC's evolution. libstdc++ 4.2.x uses __is_pod as an
6 // GCC 4.3 and newer make __is_pod a keyword. Clang treats __is_pod as
10 struct __is_pod { // expected-warning {{keyword '__is_pod' will be made available as an identifier}} struct
11 __is_pod() {} function in struct:__is_pod
14 __is_pod<int> ipi;
36 bool b = __is_pod(int);
37 must_be_true<__is_pod(int)> mbt;
47 # error __is_pod shoul
[all...]
H A Dtype-traits.cpp155 { int arr[T(__is_pod(int))]; }
156 { int arr[T(__is_pod(Enum))]; }
157 { int arr[T(__is_pod(POD))]; }
158 { int arr[T(__is_pod(Int))]; }
159 { int arr[T(__is_pod(IntAr))]; }
160 { int arr[T(__is_pod(Statics))]; }
161 { int arr[T(__is_pod(Empty))]; }
162 { int arr[T(__is_pod(EmptyUnion))]; }
163 { int arr[T(__is_pod(Union))]; }
164 { int arr[T(__is_pod(HasFun
[all...]
H A Dnullptr.cpp118 static_assert(__is_pod(nullptr_t), "");
/external/clang/test/CodeGenCXX/
H A Dtype-traits.cpp4 bool a() { return __is_pod(int); }
/external/clang/test/PCH/
H A Dcxx-traits.cpp11 bool _Is_pod_comparator = n::__is_pod<int>::__value;
48 bool _is_pod_result = __is_pod(int);
H A Dcxx-traits.h6 struct __is_pod { // expected-warning {{keyword '__is_pod' will be made available as an identifier for the remainder of the translation unit}} struct in namespace:n
/external/clang/test/CXX/drs/
H A Ddr3xx.cpp999 int check[(__is_pod(A) || __is_pod(B) || __is_pod(C) || __is_pod(D)) ? -1 : 1];
H A Ddr1xx.cpp557 int check1[__is_pod(int(A::*)) ? 1 : -1];
558 int check2[__is_pod(A) ? 1 : -1];
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp314 __is_pod(Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}}
/external/clang/test/SemaTemplate/
H A Dinstantiate-expr-4.cpp203 static const bool value = __is_pod(T);
/external/clang/lib/Parse/
H A DParseExpr.cpp629 /// '__is_pod'
789 REVERTIBLE_TYPE_TRAIT(__is_pod);

Completed in 250 milliseconds