Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/ASTMatchers/Dynamic/
H A DDiagnostics.h88 class ArgStream {
90 ArgStream(std::vector<std::string> *Out) : Out(Out) {} in ArgStream() function
91 template <class T> ArgStream &operator<<(const T &Arg) {
94 ArgStream &operator<<(const Twine &Arg);
144 ArgStream addError(SourceRange Range, ErrorType Error);
179 ArgStream pushContextFrame(ContextType Type, SourceRange Range);
/freebsd/contrib/llvm-project/clang/lib/ASTMatchers/Dynamic/
H A DDiagnostics.cpp14 Diagnostics::ArgStream Diagnostics::pushContextFrame(ContextType Type, in pushContextFrame()
20 return ArgStream(&data.Args); in pushContextFrame()
60 Diagnostics::ArgStream &Diagnostics::ArgStream::operator<<(const Twine &Arg) { in operator <<()
65 Diagnostics::ArgStream Diagnostics::addError(SourceRange Range, in addError()
73 return ArgStream(&Last.Messages.back().Args); in addError()