Searched refs:POut (Results 1 – 2 of 2) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/clang/lib/AST/ |
| HD | Expr.cpp | 733 llvm::raw_string_ostream POut(Proto); in ComputeName() local 745 case CC_C: POut << "__cdecl "; break; in ComputeName() 746 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName() 747 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName() 748 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName() 749 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName() 750 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName() 756 FD->printQualifiedName(POut, Policy); in ComputeName() 758 POut << "("; in ComputeName() 761 if (i) POut << ", "; in ComputeName() [all …]
|
| HD | DeclPrinter.cpp | 640 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local 641 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl() 663 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local 664 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl() 666 if (i) POut << ", "; in VisitFunctionDecl() 671 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl() 672 POut << "..."; in VisitFunctionDecl()
|