Home
last modified time | relevance | path

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

/external/clang/lib/AST/
DExpr.cpp534 llvm::raw_string_ostream POut(Proto); in ComputeName() local
546 case CC_C: POut << "__cdecl "; break; in ComputeName()
547 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
548 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
549 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
550 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
556 FD->printQualifiedName(POut, Policy); in ComputeName()
558 POut << "("; in ComputeName()
561 if (i) POut << ", "; in ComputeName()
562 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
[all …]
DDeclPrinter.cpp440 llvm::raw_string_ostream POut(Proto); in VisitFunctionDecl() local
441 DeclPrinter ParamPrinter(POut, SubPolicy, Indentation); in VisitFunctionDecl()
443 if (i) POut << ", "; in VisitFunctionDecl()
448 if (D->getNumParams()) POut << ", "; in VisitFunctionDecl()
449 POut << "..."; in VisitFunctionDecl()