Lines Matching refs:POut
530 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()
562 if (FD->getNumParams()) POut << ", "; in ComputeName()
563 POut << "..."; in ComputeName()
566 POut << ")"; in ComputeName()
571 POut << " const"; in ComputeName()
573 POut << " volatile"; in ComputeName()
576 POut << " &"; in ComputeName()
578 POut << " &&"; in ComputeName()
629 POut << " [" << TemplateParams << "]"; in ComputeName()
632 POut.flush(); in ComputeName()