Lines Matching refs:LogOS
45 llvm::raw_svector_ostream LogOS; variable
65 : Name(name), Trace(trace), LogOS(Msg) { } in Logger()
74 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; }
77 LogOS << Str;
80 Logger &operator<<(unsigned long N) { LogOS << N; return *this; }
81 Logger &operator<<(long N) { LogOS << N ; return *this; }
82 Logger &operator<<(unsigned int N) { LogOS << N; return *this; }
83 Logger &operator<<(int N) { LogOS << N; return *this; }
84 Logger &operator<<(char C) { LogOS << C; return *this; }
85 Logger &operator<<(unsigned char C) { LogOS << C; return *this; }
86 Logger &operator<<(signed char C) { LogOS << C; return *this; }