Lines Matching defs:getPtrB
449 B* getPtrB() { return 0; };
450 B* getPtrB(int x) { return 0; };
451 B* getPtrB(int *x) { return 0; };
452 B* getPtrB(B **b) { return 0; };
473 B* b13 = getPtrB();
474 B* b14 = getPtrB(&b14);
479 B* b15 = getPtrB(b15->x); // expected-warning {{variable 'b15' is uninitialized when used within its own initialization}}
480 B* b16 = getPtrB(b16->y); // expected-warning {{variable 'b16' is uninitialized when used within its own initialization}}
508 B* b13 = getPtrB();
509 B* b14 = getPtrB(&b14);
511 B* b15 = getPtrB(b15->x); // expected-warning {{variable 'b15' is uninitialized when used within its own initialization}}
512 B* b16 = getPtrB(b16->y); // expected-warning {{variable 'b16' is uninitialized when used within its own initialization}}
545 U(bool (*)[13]) : ptr1(getPtrB()) {}
546 U(bool (*)[14]) : ptr1(getPtrB(&ptr1)) {}
548 U(bool (*)[15]) : ptr1(getPtrB(ptr1->x)) {} // expected-warning {{field 'ptr1' is uninitialized when used here}}
549 U(bool (*)[16]) : ptr2(getPtrB(ptr2->y)) {} // expected-warning {{field 'ptr2' is uninitialized when used here}}