Lines Matching +defs:D +defs:c

25 int c = (c + c); // expected-warning 2 {{variable 'c' is uninitialized when used within its own ini…  variable
58 …int c = (c + c); // expected-warning {{variable 'c' is uninitialized when used within its own init… in test_stuff() local
92 …int c = (c + c); // expected-warning {{variable 'c' is uninitialized when used within its own init… in test_stuff() local
129 …int c = (a, a, b, c); // expected-warning {{variable 'c' is uninitialized when used within its ow… in test_comma() local
631 struct D { struct
632 C c; member
633 D(char (*)[1]) : c(c.b.a.A1) {} in D() function
634 D(char (*)[2]) : c(c.b.a.A2()) {} in D() function
635D(char (*)[3]) : c(c.b.a.A3) {} // expected-warning {{field 'c' is uninitialized when used here… in D() function
636D(char (*)[4]) : c(c.b.a.A4()) {} // expected-warning {{field 'c' is uninitialized when used here… in D() argument
639 D(char (*)[5]) : c(c.a.A1) {} in D() function
640 D(char (*)[6]) : c(c.a.A2()) {} in D() argument
641 D(char (*)[7]) : c(c.a.A3) {} in D() function
642 D(char (*)[8]) : c(c.a.A4()) {} in D() argument
647 int c = 1; member
703 …static int c = (c + c); // expected-warning 2{{variable 'c' is uninitialized when used within its … variable
738 …static int c = (c + c); // expected-warning 2{{static variable 'c' is suspiciously used within its… in test() local
772 …static int c = (c + c); // expected-warning 2{{static variable 'c' is suspiciously used within its… in test() local
828 …int &c = a ? b : c; // expected-warning{{reference 'c' is not yet bound to a value when used withi… variable
847 …int &c = a ? b : c; // expected-warning{{reference 'c' is not yet bound to a value when used withi… in test() local
855 int &c = c; // expected-warning{{reference 'c' is not yet bound to a value when used here}} member
942 struct D { // expected-note9{{in the implicit default constructor}} struct
943 A a1 = a1; // expected-warning {{uninitialized}}
944 A a2 = a2.get(); // expected-warning {{uninitialized}}
945 A a3 = a3.num();
946 A a4 = a4.copy(a4); // expected-warning {{uninitialized}}
947 A a5 = a5.something(a5);
948 A a6 = ref(a6);
949 A a7 = const_ref(a7);
950 A a8 = pointer(&a8);
951 A a9 = normal(a9); // expected-warning {{uninitialized}}
952 const A a10 = a10; // expected-warning {{uninitialized}}
953 A a11 = std::move(a11); // expected-warning {{uninitialized}}
954 A a12 = A(std::move(a12)); // expected-warning {{uninitialized}}
955 A a13 = rref(std::move(a13)); // expected-warning {{uninitialized}}
956 A a14 = std::move(x ? a13 : (22, a14)); // expected-warning {{uninitialized}}
998 struct D { struct
999 int a;
1000 int &b;
1001 int &c = a; member
1002 int d = b;
1003 D() : b(a) {} in D() argument
1045 int c; member
1082 int &c; member
1092 int c; member
1183 struct C {int a; int& b; int c; }; member
1192 struct D {int &a; int &b; }; argument
1344 C<int> c; variable
1375 struct D : public C, public A { struct
1376 D(int (*)[1]) : C(0) {} in D() function
1377 D(int (*)[2]) : C(bar()) {} in D() function
1379 D(int (*)[3]) : C(i) {} in D() function
1382 D(int (*)[4]) : C(foo()) {} in D() function