• Home
  • Raw
  • Download

Lines Matching refs:getB

441 B getB() { return B(); };  in getB()  function
442 B getB(int x) { return B(); }; in getB() function
443 B getB(int *x) { return B(); }; in getB() function
444 B getB(B *b) { return B(); }; in getB() function
456 B b4 = getB(); in setupB()
457 B b5 = getB(&b5); in setupB()
458 B b6 = getB(&b6.x); in setupB()
465 …B b8 = getB(b8.x); // expected-warning {{variable 'b8' is uninitialized when used within its own … in setupB()
466 …B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own … in setupB()
467 …B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its … in setupB()
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 i…
501 B b9 = getB(b9.y); // expected-warning {{variable 'b9' is uninitialized when used within its own i…
502 B b10 = getB(-b10.x); // expected-warning {{variable 'b10' is uninitialized when used within its o…
532 U(bool (*)[4]) : b1(getB()) {} in U()
533 U(bool (*)[5]) : b1(getB(&b1)) {} in U()
534 U(bool (*)[6]) : b1(getB(&b1.x)) {} in U()
537 …U(bool (*)[8]) : b1(getB(b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used he… in U()
538 …U(bool (*)[9]) : b1(getB(b1.y)) {} // expected-warning {{field 'b1' is uninitialized when used he… in U()
539 …U(bool (*)[10]) : b1(getB(-b1.x)) {} // expected-warning {{field 'b1' is uninitialized when used … in U()