Searched refs:POut (Results 1 – 2 of 2) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/AST/ |
| H A D | Expr.cpp | 630 llvm::raw_string_ostream POut(Proto); in ComputeName() local 642 case CC_C: POut << "__cdecl "; break; in ComputeName() 643 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName() 644 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName() 645 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName() 646 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName() 647 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName() 653 FD->printQualifiedName(POut, Policy); in ComputeName() 655 POut << "("; in ComputeName() 658 if (i) POut << ", "; in ComputeName() [all …]
|
| H A D | DeclPrinter.cpp | 648 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local 649 DeclPrinter TArgPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl() 676 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local 677 DeclPrinter ParamPrinter(POut, SubPolicy, Context, Indentation); in VisitFunctionDecl() 679 if (i) POut << ", "; in VisitFunctionDecl() 684 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl() 685 POut << "..."; in VisitFunctionDecl()
|