Home | History | Annotate | Download | only in TableGen

Lines Matching refs:FnName

1899 // those checks to the Test string. If the FnName string pointer is non-null,
1905 std::string *FnName) {
1917 if (FnName)
1918 *FnName += Part;
1934 if (FnName)
1935 *FnName += Part;
1949 if (FnName)
1950 *FnName += Part;
2399 std::string FnName = "is" + Subject.getName();
2404 auto I = CustomSubjectSet.find(FnName);
2417 OS << "static bool " << FnName << "(const Decl *D) {\n";
2425 CustomSubjectSet.insert(FnName);
2426 return FnName;
2448 std::string FnName = "check" + Attr.getName() + "AppertainsTo";
2450 SS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr, ";
2481 return FnName;
2503 std::string FnName = "check", Test;
2511 FnName += Part;
2513 FnName += "LangOpts";
2518 auto I = CustomLangOptsSet.find(FnName);
2522 OS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr) {\n";
2530 CustomLangOptsSet.insert(FnName);
2531 return FnName;
2574 std::string FnName = "isTarget";
2576 GenerateTargetSpecificAttrChecks(R, Arches, Test, &FnName);
2581 auto I = CustomTargetSet.find(FnName);
2585 OS << "static bool " << FnName << "(const TargetInfo &Target) {\n";
2590 CustomTargetSet.insert(FnName);
2591 return FnName;