Lines Matching full:operator
67 Logger &operator<<(CXTranslationUnit);
68 Logger &operator<<(const FileEntry *FE);
69 Logger &operator<<(CXCursor cursor);
70 Logger &operator<<(CXSourceLocation);
71 Logger &operator<<(CXSourceRange);
72 Logger &operator<<(CXString);
73 Logger &operator<<(llvm::StringRef Str) { LogOS << Str; return *this; }
74 Logger &operator<<(const char *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; }
86 Logger &operator<<(const llvm::format_object_base &Fmt);