Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/AST/
H A DDeclPrinter.cpp650 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
651 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
673 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
674 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
676 if (i) POut << ", "; in VisitFunctionDecl()
681 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
682 POut << "..."; in VisitFunctionDecl()
686 POut << "void"; in VisitFunctionDecl()
H A DExpr.cpp705 llvm::raw_string_ostream POut(Proto); in ComputeName() local
730 POut << "("; in ComputeName()
733 if (i) POut << ", "; in ComputeName()
739 POut << "..."; in ComputeName()
743 POut << "void"; in ComputeName()
746 POut << ")"; in ComputeName()
751 POut << " const"; in ComputeName()
753 POut << " volatile"; in ComputeName()
756 POut << " &"; in ComputeName()
758 POut << " &&"; in ComputeName()
[all …]