Lines Matching refs:POD
134 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;
269 POD p3;
284 POD p;
286 POD p2;
376 struct POD {
381 POD a = { { { 1 }, { 2 }, { 3 } } };
387 POD b = a;
393 POD c;