Lines Matching refs:POut
597 llvm::raw_string_ostream POut(Proto); in ComputeName() local
609 case CC_C: POut << "__cdecl "; break; in ComputeName()
610 case CC_X86StdCall: POut << "__stdcall "; break; in ComputeName()
611 case CC_X86FastCall: POut << "__fastcall "; break; in ComputeName()
612 case CC_X86ThisCall: POut << "__thiscall "; break; in ComputeName()
613 case CC_X86VectorCall: POut << "__vectorcall "; break; in ComputeName()
614 case CC_X86RegCall: POut << "__regcall "; break; in ComputeName()
620 FD->printQualifiedName(POut, Policy); in ComputeName()
622 POut << "("; in ComputeName()
625 if (i) POut << ", "; in ComputeName()
626 POut << Decl->getParamDecl(i)->getType().stream(Policy); in ComputeName()
630 if (FD->getNumParams()) POut << ", "; in ComputeName()
631 POut << "..."; in ComputeName()
635 POut << "void"; in ComputeName()
638 POut << ")"; in ComputeName()
643 POut << " const"; in ComputeName()
645 POut << " volatile"; in ComputeName()
648 POut << " &"; in ComputeName()
650 POut << " &&"; in ComputeName()
701 POut << " [" << TemplateParams << "]"; in ComputeName()
704 POut.flush(); in ComputeName()