/external/clang/test/SemaCXX/ |
D | libstdcxx_is_pod_hack.cpp | 10 struct __is_pod { // expected-warning {{keyword '__is_pod' will be made available as an identifier}} struct 11 __is_pod() {} in __is_pod() function 14 __is_pod<int> ipi; 36 bool b = __is_pod(int); in foo() 37 must_be_true<__is_pod(int)> mbt; in foo() 47 # error __is_pod should still be available.
|
D | type-traits.cpp | 168 { int arr[T(__is_pod(int))]; } in is_pod() 169 { int arr[T(__is_pod(Enum))]; } in is_pod() 170 { int arr[T(__is_pod(POD))]; } in is_pod() 171 { int arr[T(__is_pod(Int))]; } in is_pod() 172 { int arr[T(__is_pod(IntAr))]; } in is_pod() 173 { int arr[T(__is_pod(Statics))]; } in is_pod() 174 { int arr[T(__is_pod(Empty))]; } in is_pod() 175 { int arr[T(__is_pod(EmptyUnion))]; } in is_pod() 176 { int arr[T(__is_pod(Union))]; } in is_pod() 177 { int arr[T(__is_pod(HasFunc))]; } in is_pod() [all …]
|
D | type-traits-incomplete.cpp | 6 __is_pod(S); // expected-error{{incomplete type 'S' used in type trait expression}} in f() 7 __is_pod(S[]); // expected-error{{incomplete type 'S' used in type trait expression}} in f()
|
D | nullptr.cpp | 118 static_assert(__is_pod(nullptr_t), "");
|
/external/clang/test/ARCMT/ |
D | cxx-checking.mm | 73 int check_non_pod_objc_pointer0[__is_pod(id)? 1 : -1]; function 74 int check_non_pod_objc_pointer1[__is_pod(__strong id)? -1 : 1]; function 75 int check_non_pod_objc_pointer2[__is_pod(__unsafe_unretained id)? 1 : -1]; function 76 int check_non_pod_objc_pointer3[__is_pod(id[2][3])? 1 : -1]; function 77 int check_non_pod_objc_pointer4[__is_pod(__unsafe_unretained id[2][3])? 1 : -1]; function 78 int check_non_pod_block0[__is_pod(int (^)(int))? 1 : -1]; function 79 int check_non_pod_block1[__is_pod(int (^ __unsafe_unretained)(int))? 1 : -1]; function
|
/external/clang/test/SemaObjCXX/ |
D | arc-type-traits.mm | 95 // __is_pod 96 TRAIT_IS_FALSE(__is_pod, __strong id); 97 TRAIT_IS_FALSE(__is_pod, __weak id); 98 TRAIT_IS_FALSE(__is_pod, __autoreleasing id); 99 TRAIT_IS_TRUE(__is_pod, __unsafe_unretained id); 100 TRAIT_IS_FALSE(__is_pod, HasStrong); 101 TRAIT_IS_FALSE(__is_pod, HasWeak); 102 TRAIT_IS_TRUE(__is_pod, HasUnsafeUnretained);
|
/external/cronet/buildtools/third_party/libc++/trunk/include/__type_traits/ |
D | is_pod.h | 22 : public integral_constant<bool, __is_pod(_Tp)> {}; 26 inline constexpr bool is_pod_v = __is_pod(_Tp);
|
/external/clang/test/PCH/ |
D | cxx-traits.cpp | 11 bool _Is_pod_comparator = n::__is_pod<int>::__value; 49 bool _is_pod_result = __is_pod(int);
|
D | cxx-traits.h | 6 struct __is_pod { // expected-warning {{keyword '__is_pod' will be made available as an identifier … struct
|
/external/clang/test/CodeGenCXX/ |
D | type-traits.cpp | 4 bool a() { return __is_pod(int); } in a()
|
/external/clang/test/CXX/drs/ |
D | dr3xx.cpp | 987 int check[(__is_pod(A) || __is_pod(B) || __is_pod(C) || __is_pod(D)) ? -1 : 1];
|
D | dr1xx.cpp | 562 int check1[__is_pod(int(A::*)) ? 1 : -1]; 563 int check2[__is_pod(A) ? 1 : -1];
|
/external/clang/test/SemaTemplate/ |
D | instantiate-expr-4.cpp | 208 static const bool value = __is_pod(T);
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | p5.cpp | 314 __is_pod(Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}} in test_unexpanded_exprs()
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 437 TYPE_TRAIT_1(__is_pod, IsPOD, KEYCXX)
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 831 REVERTIBLE_TYPE_TRAIT(__is_pod); in ParseCastExpression()
|
/external/clang/docs/ |
D | LanguageExtensions.rst | 1002 * ``__is_pod`` (GNU, Microsoft)
|
/external/libcxx/include/ |
D | type_traits | 4092 : public integral_constant<bool, __is_pod(_Tp)> {};
|