Lines Matching refs:POut
788 llvm::raw_string_ostream POut(Proto); in ComputeName() local
800 case CC_C: POut << "__cdecl "; break; in ComputeName()
801 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
802 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
803 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
804 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
805 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
811 FD->printQualifiedName(POut, Policy); in ComputeName()
813 POut << "("; in ComputeName()
816 if (i) POut << ", "; in ComputeName()
817 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
821 if (FD->getNumParams()) POut << ", "; in ComputeName()
822 POut << "..."; in ComputeName()
826 POut << "void"; in ComputeName()
829 POut << ")"; in ComputeName()
834 POut << " const"; in ComputeName()
836 POut << " volatile"; in ComputeName()
839 POut << " &"; in ComputeName()
841 POut << " &&"; in ComputeName()
893 POut << " [" << TemplateParams << "]"; in ComputeName()
896 POut.flush(); in ComputeName()