Lines Matching refs:POut
749 llvm::raw_string_ostream POut(Proto); in ComputeName() local
762 case CC_C: POut << "__cdecl "; break; in ComputeName()
763 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
764 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
765 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
766 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
767 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
773 FD->printQualifiedName(POut, Policy); in ComputeName()
775 POut << "("; in ComputeName()
778 if (i) POut << ", "; in ComputeName()
779 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
783 if (FD->getNumParams()) POut << ", "; in ComputeName()
784 POut << "..."; in ComputeName()
789 POut << "void"; in ComputeName()
792 POut << ")"; in ComputeName()
797 POut << " const"; in ComputeName()
799 POut << " volatile"; in ComputeName()
802 POut << " &"; in ComputeName()
804 POut << " &&"; in ComputeName()
856 POut << " [" << TemplateParams << "]"; in ComputeName()
859 POut.flush(); in ComputeName()