Lines Matching +defs:val +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
572 T val; member in rdar10398199::FooImpl
632 C c; member
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
1001 int &c = a; member
1045 int c; member
1082 int &c; member
1092 int c; member
1183 struct C {int a; int& b; int c; }; member
1344 C<int> c; variable