Lines Matching refs:POut
630 llvm::raw_string_ostream POut(Proto); in ComputeName() local
642 case CC_C: POut << "__cdecl "; break; in ComputeName()
643 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
644 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
645 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
646 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
647 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
653 FD->printQualifiedName(POut, Policy); in ComputeName()
655 POut << "("; in ComputeName()
658 if (i) POut << ", "; in ComputeName()
659 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
663 if (FD->getNumParams()) POut << ", "; in ComputeName()
664 POut << "..."; in ComputeName()
668 POut << "void"; in ComputeName()
671 POut << ")"; in ComputeName()
676 POut << " const"; in ComputeName()
678 POut << " volatile"; in ComputeName()
681 POut << " &"; in ComputeName()
683 POut << " &&"; in ComputeName()
736 POut << " [" << TemplateParams << "]"; in ComputeName()
739 POut.flush(); in ComputeName()