Home | History | Annotate | Download | only in Sema

Lines Matching refs:AttrName

1350 static bool normalizeName(StringRef &AttrName) {
1351 if (AttrName.size() > 4 && AttrName.startswith("__") &&
1352 AttrName.endswith("__")) {
1353 AttrName = AttrName.drop_front(2).drop_back(2);
4865 StringRef AttrName = Attr.getName()->getName();
4866 normalizeName(AttrName);
4868 llvm::StringSwitch<std::string>(AttrName)