reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
626 Proto += D->getQualifiedNameAsString(); 630 llvm::raw_string_ostream OS(Proto); 634 Proto += D->getNameInfo().getAsString(); 638 Proto = GuideDecl->getDeducedTemplate()->getDeclName().getAsString(); 640 llvm::raw_string_ostream POut(Proto); 647 Proto = '(' + Proto + ')'; 647 Proto = '(' + Proto + ')'; 656 Proto += "("; 658 llvm::raw_string_ostream POut(Proto); 672 Proto += ", "; 673 Proto += D->getParamDecl(i)->getNameAsString(); 677 Proto += ")"; 681 Proto += " const"; 683 Proto += " volatile"; 685 Proto += " restrict"; 691 Proto += " &"; 694 Proto += " &&"; 700 Proto += " throw("; 702 Proto += "..."; 706 Proto += ", "; 708 Proto += FT->getExceptionType(I).getAsString(SubPolicy); 710 Proto += ")"; 712 Proto += " noexcept"; 714 Proto += "("; 715 llvm::raw_string_ostream EOut(Proto); 719 Proto += EOut.str(); 720 Proto += ")"; 726 PrintConstructorInitializers(CDecl, Proto); 731 Out << Proto << " -> "; 732 Proto.clear(); 734 AFT->getReturnType().print(Out, Policy, Proto); 735 Proto.clear(); 737 Out << Proto; 739 Ty.print(Out, Policy, Proto);