Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp756 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
757 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
779 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
780 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
782 if (i) POut << ", "; in VisitFunctionDecl()
787 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
788 POut << "..."; in VisitFunctionDecl()
792 POut << "void"; in VisitFunctionDecl()
H A DExpr.cpp749 llvm::raw_string_ostream POut(Proto); in ComputeName() local
775 POut << "("; in ComputeName()
778 if (i) POut << ", "; in ComputeName()
784 POut << "..."; in ComputeName()
789 POut << "void"; in ComputeName()
792 POut << ")"; in ComputeName()
797 POut << " const"; in ComputeName()
799 POut << " volatile"; in ComputeName()
802 POut << " &"; in ComputeName()
804 POut << " &&"; in ComputeName()
[all …]