Home
last modified time | relevance | path

Searched refs:POD (Results 1 – 25 of 78) sorted by relevance

1234

/external/clang/test/CodeGenObjCXX/
Dimplicit-copy-assign-operator.mm17 struct POD {
32 POD pod_array[2][3];
65 struct POD {
81 struct DerivedPOD: POD {
86 POD a;
87 POD b;
115 POD b;
119 (POD&) a = b;
Dcopyable-property-object.mm3 struct POD { struct
9 POD pod_array[2][3]; argument
Dimplicit-copy-constructor.mm21 struct POD {
32 POD pod_array[2][3];
/external/llvm-project/clang/test/CodeGenObjCXX/
Dimplicit-copy-assign-operator.mm17 struct POD {
32 POD pod_array[2][3];
65 struct POD {
81 struct DerivedPOD: POD {
86 POD a;
87 POD b;
115 POD b;
119 (POD&) a = b;
Dcopyable-property-object.mm3 struct POD { struct
9 POD pod_array[2][3]; argument
/external/llvm-project/clang/test/SemaCXX/
Dcompound-literal.cpp22 struct POD { struct
37 POD p = (POD){1, 2};
47 (void)(POD){1, 2}; in test()
Dc99-variable-length-array-cxx11.cpp14 struct POD { struct
22POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} expected-note {{par… in vla()
Dc99-variable-length-array.cpp10 struct POD { struct
22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} in vla()
Dtype-traits.cpp16 struct POD { Enum e; int i; float f; NonPOD* p; }; argument
49 struct Derives : POD {};
70 throw(POD);
214 { int arr[T(__is_pod(POD))]; } in is_pod()
269 struct DerivesVirt : virtual POD {};
287 { int arr[F(__is_empty(POD))]; } in is_empty()
541 static_assert(__is_aggregate(POD), ""); in is_aggregate()
1497 { int arr[T(__has_trivial_constructor(POD))]; } in has_trivial_default_constructor()
1537 { int arr[T(__has_trivial_move_constructor(POD))]; } in has_trivial_move_constructor()
1557 { int arr[T(__has_trivial_copy(POD))]; } in has_trivial_copy_constructor()
[all …]
/external/llvm-project/clang/test/CodeGenCXX/
Ddebug-info-ms-vbase.cpp48 struct POD { int pod; }; struct
50 struct DynamicNoVFPtr : virtual POD { };
Dimplicit-copy-assign-operator.cpp15 struct POD { struct
29 POD pod_array[2][3]; argument
Dimplicit-copy-constructor.cpp21 struct POD { struct
31 POD pod_array[2][3]; argument
Dmicrosoft-abi-sret-and-byval.cpp387 struct POD { int b; }; struct
389 int foo(NonTrivial a, POD b);
391 POD b; in bar()
Dmicrosoft-abi-member-pointers.cpp207 struct POD { struct
221 struct NonZeroVBPtr : POD, Virtual { argument
363 int POD::*memptr; in podMemPtrs()
364 memptr = &POD::a; in podMemPtrs()
365 memptr = &POD::b; in podMemPtrs()
/external/clang/test/Analysis/
Dctor.mm131 class POD {
138 POD p;
203 POD p;
205 POD p2 = p; // no-warning
207 POD p3 = move(p); // no-warning
211 clang_analyzer_eval(POD(p3).x == 1); // expected-warning{{TRUE}}
252 POD p;
254 POD p2;
257 POD p3;
272 POD p;
[all …]
/external/clang/test/SemaCXX/
Dc99-variable-length-array-cxx11.cpp14 struct POD { struct
22 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} in vla()
Dcompound-literal.cpp22 struct POD { struct
38 (void)(POD){1, 2}; in test()
Dtype-traits.cpp9 struct POD { Enum e; int i; float f; NonPOD* p; }; struct
36 struct Derives : POD {};
52 const HasThrowMoveAssign&&) throw(POD); };
170 { int arr[T(__is_pod(POD))]; } in is_pod()
219 struct DerivesVirt : virtual POD {};
237 { int arr[F(__is_empty(POD))]; } in is_empty()
1289 { int arr[T(__has_trivial_constructor(POD))]; } in has_trivial_default_constructor()
1327 { int arr[T(__has_trivial_move_constructor(POD))]; } in has_trivial_move_constructor()
1345 { int arr[T(__has_trivial_copy(POD))]; } in has_trivial_copy_constructor()
1377 { int arr[T(__has_trivial_assign(POD))]; } in has_trivial_copy_assignment()
[all …]
Dc99-variable-length-array.cpp10 struct POD { struct
18 POD array2[N]; // expected-warning{{variable length arrays are a C99 feature}} in vla()
/external/clang/test/CodeGenCXX/
Dimplicit-copy-assign-operator.cpp15 struct POD { struct
29 POD pod_array[2][3]; argument
Dmicrosoft-abi-member-pointers.cpp62 struct POD { struct
76 struct NonZeroVBPtr : POD, Virtual { argument
218 int POD::*memptr; in podMemPtrs()
219 memptr = &POD::a; in podMemPtrs()
220 memptr = &POD::b; in podMemPtrs()
Dmicrosoft-abi-sret-and-byval.cpp332 struct POD { int b; }; struct
334 int foo(NonTrivial a, POD b);
336 POD b; in bar()
Dimplicit-copy-constructor.cpp21 struct POD { struct
31 POD pod_array[2][3]; argument
/external/llvm-project/clang/test/Analysis/
Dctor.mm134 class POD {
141 POD p;
205 void testPOD(const POD &pp) {
206 POD p;
208 POD p2 = p; // no-warning
210 POD p3 = move(p); // no-warning
214 clang_analyzer_eval(POD(p3).x == 1); // expected-warning{{TRUE}}
217 POD p4 = pp;
264 POD p;
266 POD p2;
[all …]
/external/llvm-project/clang-tools-extra/test/clang-tidy/checkers/
Dmodernize-pass-by-value.cpp5 struct POD { struct
233 U(const POD &M) : M(M) {} in U()
234 POD M;

1234