Home
last modified time | relevance | path

Searched refs:LogOS (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCLog.h44 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; }
[all …]
H A DCIndex.cpp9101 LogOS << '<' << Unit->getMainFileName() << '>'; in operator <<()
9103 LogOS << " (" << Unit->getASTFileName() << ')'; in operator <<()
9107 LogOS << "<NULL TU>"; in operator <<()
9168 LogOS << Fmt; in operator <<()