Home | History | Annotate | Download | only in TableGen

Lines Matching refs:FnName

2174   std::string FnName = "is" + Subject.getName();
2179 std::set<std::string>::iterator I = CustomSubjectSet.find(FnName);
2192 OS << "static bool " << FnName << "(const Decl *D) {\n";
2200 CustomSubjectSet.insert(FnName);
2201 return FnName;
2223 std::string FnName = "check" + Attr.getName() + "AppertainsTo";
2225 SS << "static bool " << FnName
2256 return FnName;
2278 std::string FnName = "check", Test;
2284 FnName += Part;
2286 FnName += "LangOpts";
2291 std::set<std::string>::iterator I = CustomLangOptsSet.find(FnName);
2295 OS << "static bool " << FnName << "(Sema &S, const AttributeList &Attr) {\n";
2303 CustomLangOptsSet.insert(FnName);
2304 return FnName;
2347 std::string FnName = "isTarget", Test = "(";
2353 FnName += Part;
2372 FnName += Part;
2380 std::set<std::string>::iterator I = CustomTargetSet.find(FnName);
2384 OS << "static bool " << FnName << "(const llvm::Triple &T) {\n";
2391 CustomTargetSet.insert(FnName);
2392 return FnName;