Lines Matching defs:getB
443 B getB() { return B(); };
444 B getB(int x) { return B(); };
445 B getB(int *x) { return B(); };
446 B getB(B *b) { return B(); };
458 B b4 = getB();
459 B b5 = getB(&b5);
460 B b6 = getB(&b6.x);
467 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
468 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
469 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}
497 B b4 = getB();
498 B b5 = getB(&b5);
499 B b6 = getB(&b6.x);
502 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
503 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
504 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}
534 U(bool (*)[4]) : b1(getB()) {}
535 U(bool (*)[5]) : b1(getB(&b1)) {}
536 U(bool (*)[6]) : b1(getB(&b1.x)) {}
539 U(bool (*)[8]) : b1(getB(b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used here}}
540 U(bool (*)[9]) : b1(getB(b1.y)) {} // expected-warning {{field 'b1' is uninitialized when used here}}
541 U(bool (*)[10]) : b1(getB(-b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used here}}