Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DDeclPrinter.cpp735 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
736 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
758 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
759 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
761 if (i) POut << ", "; in VisitFunctionDecl()
766 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
767 POut << "..."; in VisitFunctionDecl()
771 POut << "void"; in VisitFunctionDecl()
H A DExpr.cpp767 llvm::raw_string_ostream POut(Proto); in ComputeName() local
788 case CC_C: POut << "__cdecl "; break; in ComputeName()
789 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
790 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
791 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
792 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
793 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
799 FD->printQualifiedName(POut, Policy); in ComputeName()
806 POut << "("; in ComputeName()
809 if (i) POut << ", "; in ComputeName()
[all …]