Lines Matching refs:LogOS
44 llvm::raw_svector_ostream LogOS; variable
64 : Name(std::string(name)), Trace(trace), LogOS(Msg) {} in Logger()
73 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; }
76 LogOS << Str;
79 Logger &operator<<(unsigned long N) { LogOS << N; return *this; }
80 Logger &operator<<(long N) { LogOS << N ; return *this; }
81 Logger &operator<<(unsigned int N) { LogOS << N; return *this; }
82 Logger &operator<<(int N) { LogOS << N; return *this; }
83 Logger &operator<<(char C) { LogOS << C; return *this; }
84 Logger &operator<<(unsigned char C) { LogOS << C; return *this; }
85 Logger &operator<<(signed char C) { LogOS << C; return *this; }