Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/clang/lib/AST/
H A DDeclPrinter.cpp649 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
650 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
672 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
673 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl()
675 if (i) POut << ", "; in VisitFunctionDecl()
680 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
681 POut << "..."; in VisitFunctionDecl()
685 POut << "void"; in VisitFunctionDecl()
H A DExpr.cpp788 llvm::raw_string_ostream POut(Proto); in ComputeName() local
800 case CC_C: POut << "__cdecl "; break; in ComputeName()
801 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
802 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
803 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
804 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
805 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
811 FD->printQualifiedName(POut, Policy); in ComputeName()
813 POut << "("; in ComputeName()
816 if (i) POut << ", "; in ComputeName()
[all …]