Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExpr.cpp530 llvm::raw_string_ostream POut(Proto); in ComputeName() local
542 case CC_C: POut << "__cdecl "; break; in ComputeName()
543 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
544 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
545 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
546 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
552 FD->printQualifiedName(POut, Policy); in ComputeName()
554 POut << "("; in ComputeName()
557 if (i) POut << ", "; in ComputeName()
558 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
[all …]
DDeclPrinter.cpp490 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
491 DeclPrinter ParamPrinter(POut, SubPolicy, Indentation); in VisitFunctionDecl()
493 if (i) POut << ", "; in VisitFunctionDecl()
498 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
499 POut << "..."; in VisitFunctionDecl()