Home | History | Annotate | Download | only in test

Lines Matching refs:StreamableInGlobal

109 class StreamableInGlobal {
111 virtual ~StreamableInGlobal() {}
114 inline void operator<<(::std::ostream& os, const StreamableInGlobal& /* x */) {
115 os << "StreamableInGlobal";
118 void operator<<(::std::ostream& os, const StreamableInGlobal* /* x */) {
119 os << "StreamableInGlobal*";
1080 StreamableInGlobal x;
1081 EXPECT_EQ("StreamableInGlobal", Print(x));
1082 EXPECT_EQ("StreamableInGlobal*", Print(&x));