Lines Matching refs:POut
705 llvm::raw_string_ostream POut(Proto); in ComputeName() local
717 case CC_C: POut << "__cdecl "; break; in ComputeName()
718 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
719 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
720 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
721 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
722 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
728 FD->printQualifiedName(POut, Policy); in ComputeName()
730 POut << "("; in ComputeName()
733 if (i) POut << ", "; in ComputeName()
734 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
738 if (FD->getNumParams()) POut << ", "; in ComputeName()
739 POut << "..."; in ComputeName()
743 POut << "void"; in ComputeName()
746 POut << ")"; in ComputeName()
751 POut << " const"; in ComputeName()
753 POut << " volatile"; in ComputeName()
756 POut << " &"; in ComputeName()
758 POut << " &&"; in ComputeName()
810 POut << " [" << TemplateParams << "]"; in ComputeName()
813 POut.flush(); in ComputeName()