Home | History | Annotate | Download | only in AST

Lines Matching defs:dump

10 // This file implements the AST dump methods, which dump out the
34 // Colors used for various parts of the AST dump
437 // If the type is sugared, also dump
679 A.getAsTemplate().dump(OS);
683 A.getAsTemplateOrTemplatePattern().dump(OS);
2017 void Decl::dump() const {
2018 dump(llvm::errs());
2021 void Decl::dump(raw_ostream &OS) const {
2050 void Stmt::dump(SourceManager &SM) const {
2051 dump(llvm::errs(), SM);
2054 void Stmt::dump(raw_ostream &OS, SourceManager &SM) const {
2059 void Stmt::dump() const {
2073 void Comment::dump() const {
2074 dump(llvm::errs(), 0, 0);
2077 void Comment::dump(const ASTContext &Context) const {
2078 dump(llvm::errs(), &Context.getCommentCommandTraits(),
2082 void Comment::dump(raw_ostream &OS, const CommandTraits *Traits,