Home
last modified time | relevance | path

Searched refs:getAttrName (Results 1 – 12 of 12) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DAttributes.cpp153 normalizeName(getAttrName(), getScopeName(), getSyntax())); in getNormalizedFullName()
161 StringRef Name = normalizeAttrName(getAttrName(), Scope, Syntax); in calculateAttributeSpellingListIndex()
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DClangAttrEmitter.cpp231 StringRef getAttrName() const { return attrName; } in getAttrName() function in __anone44e3aff0211::Argument
532 OS << "bool " << getAttrName() << "Attr::is" << getUpperName() in writeAccessorDefinitions()
543 OS << "bool " << getAttrName() << "Attr::is" << getUpperName() in writeAccessorDefinitions()
832 OS << " for (" << getAttrName() << "Attr::" << getLowerName() in writeDump()
860 OS << " for (" << getAttrName() << "Attr::" << getLowerName() in writePCHWrite()
921 fullType = isExternal ? Type : (getAttrName() + "Attr::" + Type).str(); in EnumArgument()
987 OS << "\\\"\" << " << getAttrName() << "Attr::Convert" << shortType in writeValue()
1014 OS << "bool " << getAttrName() << "Attr::ConvertStrTo" << shortType in writeConversion()
1032 OS << "const char *" << getAttrName() << "Attr::Convert" << shortType in writeConversion()
1062 OS << " OS << \"\\\"\" << " << getAttrName() << "Attr::Convert" in writeValueImpl()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h1108 DB.AddTaggedVal(reinterpret_cast<uint64_t>(At.getAttrName()),
1115 DB.AddTaggedVal(reinterpret_cast<uint64_t>(At->getAttrName()),
1130 DB.AddTaggedVal(reinterpret_cast<uint64_t>(CI.getAttrName()),
1140 DB.AddTaggedVal(reinterpret_cast<uint64_t>(CI->getAttrName()),
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaOpenCL.cpp41 << AL.getAttrName()->getName() << AL.getRange(); in handleAccessAttr()
61 if (AL.getAttrName()->getName().contains("read_write")) { in handleAccessAttr()
H A DSemaStmtAttr.cpp705 << A.getAttrName() << 1 << Range; in ActOnCXXAssumeAttr()
716 ExprResult Res = BuildCXXAssumeExpr(Assumption, A.getAttrName(), Range); in ActOnCXXAssumeAttr()
H A DSemaDeclAttr.cpp4536 S.mergeAlwaysInlineAttr(D, AL, AL.getAttrName())) in handleAlwaysInlineAttr()
5187 bool IsPointer = AL.getAttrName()->getName() == "pointer_with_type_tag"; in handleArgumentWithTypeTagAttr()
5800 StringRef AttrName = AL.getAttrName()->getName(); in handleNoSanitizeSpecificAttr()
6059 << AL.getAttrName()->getName() << ConflictingAttr->getAttrName()->getName() in handleEnforceTCBAttr()
6079 << ConflictingAttr->getAttrName()->getName() in mergeEnforceTCBAttrImpl()
6080 << AL.getAttrName()->getName() << TCBName; in mergeEnforceTCBAttrImpl()
H A DSemaType.cpp100 StringRef name = attr.getAttrName()->getName(); in diagnoseBadTypeAttribute()
6661 StringRef name = attr.getAttrName()->getName(); in handleObjCOwnershipTypeAttr()
7379 " " + attr.getAttrName()->getName().str() + " "); in distributeNullabilityTypeAttr()
7520 << PAttr.getAttrName()->getName(); in handleNonBlockingNonAllocatingTypeAttr()
7543 S.ActOnEffectExpression(CondExpr, PAttr.getAttrName()->getName()); in handleNonBlockingNonAllocatingTypeAttr()
8405 StringRef AttrName = Attr.getAttrName()->getName(); in HandleOpenCLAccessAttr()
H A DSemaTemplateInstantiate.cpp2109 Res = getSema().BuildCXXAssumeExpr(Res.get(), AA->getAttrName(), in TransformCXXAssumeAttr()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DAttributeCommonInfo.h179 const IdentifierInfo *getAttrName() const { return AttrName; } in getAttrName() function
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseExprCXX.cpp1601 << A.getAttrName()->getName(); in ParseLambdaExpressionAfterIntroducer()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTImporter.cpp9198 const IdentifierInfo *ToAttrName = Importer.Import(FromAttr->getAttrName()); in importAttr()
9234 ToAttr->setAttrName(Importer.Import(FromAttr->getAttrName())); in cloneAttr()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp4688 Record.AddIdentifierRef(A->getAttrName()); in AddAttr()