Lines Matching refs:POut
773 llvm::raw_string_ostream POut(Proto); in ComputeName() local
786 case CC_C: POut << "__cdecl "; break; in ComputeName()
787 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
788 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
789 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
790 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
791 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
797 FD->printQualifiedName(POut, Policy); in ComputeName()
800 POut.flush(); in ComputeName()
805 POut << "("; in ComputeName()
808 if (i) POut << ", "; in ComputeName()
809 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
813 if (FD->getNumParams()) POut << ", "; in ComputeName()
814 POut << "..."; in ComputeName()
819 POut << "void"; in ComputeName()
822 POut << ")"; in ComputeName()
827 POut << " const"; in ComputeName()
829 POut << " volatile"; in ComputeName()
832 POut << " &"; in ComputeName()
834 POut << " &&"; in ComputeName()
886 POut << " [" << TemplateParams << "]"; in ComputeName()
889 POut.flush(); in ComputeName()