Home | History | Annotate | Download | only in SemaTemplate

Lines Matching defs:Streamer

23 struct Streamer;
27 inline std_ostream& operator << (std_ostream&, const Streamer<Foo>&);
29 void test(const Streamer<Foo>& foo)
35 struct Streamer
37 friend std_ostream& operator << (std_ostream& o, const Streamer& f) // expected-error{{redefinition of 'operator<<'}}
39 Streamer s(f);
44 Streamer(const STRUCT_TYPE& s) : s(s) {}
51 std_ostream& operator << (std_ostream&, const Streamer<Foo>&);
55 template struct Streamer<Foo>;
59 std_ostream& operator << (std_ostream& o, const Streamer<Foo>&) // expected-note{{is here}}
67 void Streamer<Foo>::operator () (std_ostream& o) const // expected-note{{requested here}}