Lines Matching refs:POut
696 llvm::raw_string_ostream POut(Proto); in ComputeName() local
708 case CC_C: POut << "__cdecl "; break; in ComputeName()
709 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
710 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
711 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
712 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
713 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
719 FD->printQualifiedName(POut, Policy); in ComputeName()
721 POut << "("; in ComputeName()
724 if (i) POut << ", "; in ComputeName()
725 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
729 if (FD->getNumParams()) POut << ", "; in ComputeName()
730 POut << "..."; in ComputeName()
734 POut << "void"; in ComputeName()
737 POut << ")"; in ComputeName()
742 POut << " const"; in ComputeName()
744 POut << " volatile"; in ComputeName()
747 POut << " &"; in ComputeName()
749 POut << " &&"; in ComputeName()
802 POut << " [" << TemplateParams << "]"; in ComputeName()
805 POut.flush(); in ComputeName()