Lines Matching refs:getB
441 B getB() { return B(); };
442 B getB(int x) { return B(); };
443 B getB(int *x) { return B(); };
444 B getB(B *b) { return B(); };
456 B b4 = getB();
457 B b5 = getB(&b5);
458 B b6 = getB(&b6.x);
465 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
466 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
467 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}
495 B b4 = getB();
496 B b5 = getB(&b5);
497 B b6 = getB(&b6.x);
500 B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own initialization}}
501 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own initialization}}
502 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its own initialization}}
532 U(bool (*)[4]) : b1(getB()) {}
533 U(bool (*)[5]) : b1(getB(&b1)) {}
534 U(bool (*)[6]) : b1(getB(&b1.x)) {}
537 U(bool (*)[8]) : b1(getB(b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used here}}
538 U(bool (*)[9]) : b1(getB(b1.y)) {} // expected-warning {{field 'b1' is uninitialized when used here}}
539 U(bool (*)[10]) : b1(getB(-b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used here}}