Home | History | Annotate | Download | only in class.friend

Lines Matching full:declared

10 struct S { static void f(); }; // expected-note 2 {{'S' declared here}}
11 S* g() { return 0; } // expected-note 2 {{'g' declared here}}
28 // Test that we recurse through namespaces to find already declared names, but
29 // new names are declared within the enclosing namespace.
39 struct S2 { static void f2(); }; // expected-note 2 {{'S2' declared here}}
40 S2* g2() { return 0; } // expected-note 2 {{'g2' declared here}}
74 static void member(); // expected-note 2 {{declared private here}}
125 X *getPrev() { return Prev; } // expected-note{{member is declared here}}
128 class ilist_node : private ilist_half_node { // expected-note {{declared private here}} expected-note {{constrained by private inheritance here}}
131 X *getNext() { return Next; } // expected-note {{declared private here}}
152 class A { protected: int x; }; // expected-note {{declared protected here}}
238 A(); // expected-note 2 {{declared private here}}
261 typedef int I; // expected-note 4 {{declared private here}}
262 static const I x = 0; // expected-note {{implicitly declared private here}}
295 void foo(void); // expected-note {{declared private here}}
321 typedef int private_type; // expected-note 2 {{implicitly declared private here}}
365 class B { // expected-note {{implicitly declared private here}}