/external/clang/test/SemaCXX/ |
D | libstdcxx_is_pod_hack.cpp | 10 struct __is_pod { 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() 40 # error __is_pod should still be available.
|
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 | type-traits.cpp | 117 { int arr[T(__is_pod(int))]; } in is_pod() 118 { int arr[T(__is_pod(Enum))]; } in is_pod() 119 { int arr[T(__is_pod(POD))]; } in is_pod() 120 { int arr[T(__is_pod(Int))]; } in is_pod() 121 { int arr[T(__is_pod(IntAr))]; } in is_pod() 122 { int arr[T(__is_pod(Statics))]; } in is_pod() 123 { int arr[T(__is_pod(Empty))]; } in is_pod() 124 { int arr[T(__is_pod(EmptyUnion))]; } in is_pod() 125 { int arr[T(__is_pod(Union))]; } in is_pod() 126 { int arr[T(__is_pod(HasFunc))]; } in is_pod() [all …]
|
D | nullptr.cpp | 115 static_assert(__is_pod(nullptr_t), "");
|
/external/clang/test/SemaObjCXX/ |
D | arc-non-pod.mm | 78 int check_non_pod_objc_pointer0[__is_pod(id)? 1 : -1]; function 79 int check_non_pod_objc_pointer1[__is_pod(__strong id)? -1 : 1]; function 80 int check_non_pod_objc_pointer2[__is_pod(__unsafe_unretained id)? 1 : -1]; function 81 int check_non_pod_objc_pointer3[__is_pod(id[2][3])? 1 : -1]; function 82 int check_non_pod_objc_pointer4[__is_pod(__unsafe_unretained id[2][3])? 1 : -1]; function 83 int check_non_pod_block0[__is_pod(int (^)(int))? 1 : -1]; function 84 int check_non_pod_block1[__is_pod(int (^ __unsafe_unretained)(int))? 1 : -1]; function 85 int check_non_pod_block2[__is_pod(int (^ __strong)(int))? -1 : 1]; function
|
D | arc-type-traits.mm | 94 // __is_pod 95 TRAIT_IS_FALSE(__is_pod, __strong id); 96 TRAIT_IS_FALSE(__is_pod, __weak id); 97 TRAIT_IS_FALSE(__is_pod, __autoreleasing id); 98 TRAIT_IS_TRUE(__is_pod, __unsafe_unretained id); 99 TRAIT_IS_FALSE(__is_pod, HasStrong); 100 TRAIT_IS_FALSE(__is_pod, HasWeak); 101 TRAIT_IS_TRUE(__is_pod, HasUnsafeUnretained);
|
/external/clang/test/ARCMT/ |
D | cxx-checking.mm | 79 int check_non_pod_objc_pointer0[__is_pod(id)? 1 : -1]; function 80 int check_non_pod_objc_pointer1[__is_pod(__strong id)? -1 : 1]; function 81 int check_non_pod_objc_pointer2[__is_pod(__unsafe_unretained id)? 1 : -1]; function 82 int check_non_pod_objc_pointer3[__is_pod(id[2][3])? 1 : -1]; function 83 int check_non_pod_objc_pointer4[__is_pod(__unsafe_unretained id[2][3])? 1 : -1]; function 84 int check_non_pod_block0[__is_pod(int (^)(int))? 1 : -1]; function 85 int check_non_pod_block1[__is_pod(int (^ __unsafe_unretained)(int))? 1 : -1]; function
|
/external/clang/test/CodeGenCXX/ |
D | unary-type-trait.cpp | 3 bool a() { return __is_pod(int); } in a()
|
/external/clang/test/PCH/ |
D | cxx-traits.cpp | 7 bool _Is_pod_comparator = __is_pod<int>::__value;
|
D | cxx-traits.h | 4 struct __is_pod { struct
|
/external/stlport/stlport/stl/config/ |
D | _msvc.h | 86 # define _STLP_IS_POD(T) __is_pod(T)
|
/external/clang/test/SemaTemplate/ |
D | instantiate-expr-4.cpp | 203 static const bool value = __is_pod(T);
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | p5.cpp | 313 __is_pod(Types); // expected-error{{expression contains unexpanded parameter pack 'Types'}} in test_unexpanded_exprs()
|
/external/clang/include/clang/Basic/ |
D | TokenKinds.def | 373 KEYWORD(__is_pod , KEYCXX)
|
/external/clang/lib/Parse/ |
D | ParseExpr.cpp | 769 REVERTABLE_TYPE_TRAIT(__is_pod); in ParseCastExpression()
|