Home
last modified time | relevance | path

Searched refs:newAttr (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h848 void addAtEnd(ParsedAttr *newAttr) { in addAtEnd() argument
849 assert(newAttr); in addAtEnd()
850 AttrList.push_back(newAttr); in addAtEnd()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaDeclAttr.cpp2592 Attr *newAttr; in handleVisibilityAttr() local
2594 newAttr = S.mergeTypeVisibilityAttr( in handleVisibilityAttr()
2597 newAttr = S.mergeVisibilityAttr(D, AL, type); in handleVisibilityAttr()
2599 if (newAttr) in handleVisibilityAttr()
2600 D->addAttr(newAttr); in handleVisibilityAttr()
H A DSemaDecl.cpp3278 InheritableAttr *newAttr = in mergeParamDeclAttributes() local
3280 newAttr->setInherited(true); in mergeParamDeclAttributes()
3281 newDecl->addAttr(newAttr); in mergeParamDeclAttributes()
H A DTreeTransform.h7337 const Attr *newAttr = oldAttr ? getDerived().TransformAttr(oldAttr) : nullptr; in TransformAttributedType() local
7338 if (oldAttr && !newAttr) in TransformAttributedType()
7371 newTL.setAttr(newAttr); in TransformAttributedType()