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 DExpr.cpp773 llvm::raw_string_ostream POut(Proto); in ComputeName() local
786 case CC_C: POut << "__cdecl "; break; in ComputeName()
787 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
788 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
789 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
790 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
791 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
797 FD->printQualifiedName(POut, Policy); in ComputeName()
800 POut.flush(); in ComputeName()
805 POut << "("; in ComputeName()
[all …]
H A DDeclPrinter.cpp706 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
707 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
729 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
730 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
732 if (i) POut << ", "; in VisitFunctionDecl()
737 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
738 POut << "..."; in VisitFunctionDecl()
742 POut << "void"; in VisitFunctionDecl()