Lines Matching +full:0 +full:xc
34 i = 0; in test_unqual_references()
38 f3 = 0; // expected-error{{use of undeclared identifier 'f3'}} in test_unqual_references()
39 a = 0; in test_unqual_references()
44 …f2 = 0; // expected-error{{cannot assign to non-static data member within const member function 't… in test_unqual_references_const()
45 …a = 0; // expected-error{{cannot assign to non-static data member within const member function 'te… in test_unqual_references_const()
48 void test_unqual_references(X x, const X xc) { in test_unqual_references() argument
49 // expected-note@-1 2{{variable 'xc' declared const here}} in test_unqual_references()
50 x.i = 0; in test_unqual_references()
54 x.f3 = 0; // expected-error{{no member named 'f3'}} in test_unqual_references()
55 x.a = 0; in test_unqual_references()
57 xc.d = 0.0; in test_unqual_references()
58 xc.f = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const X'}} in test_unqual_references()
59 xc.a = 0; // expected-error{{cannot assign to variable 'xc' with const-qualified type 'const X'}} in test_unqual_references()
97 int_val2 = 0; in f()
106 i = 0; in g()
190 : x(0) in Foo()
212 b.y = 0; // expected-error {{'y' is a private member of 'PR16630::A'}} in foo()