Home
last modified time | relevance | path

Searched refs:AsmLabel (Results 1 – 5 of 5) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/Sema/
HDDeclSpec.h1633 Expr *AsmLabel; variable
1666 Attrs(ds.getAttributePool().getFactory()), AsmLabel(nullptr), in Declarator()
1744 AsmLabel = nullptr; in clear()
2150 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2151 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/NextBSD/contrib/llvm/tools/clang/lib/Parse/
HDParseExprCXX.cpp1698 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXCondition() local
1699 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
1703 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
HDParseDeclCXX.cpp2060 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2061 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2064 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
HDParseDecl.cpp1888 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseAsmAttributesAfterDeclarator() local
1889 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
1894 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/NextBSD/contrib/llvm/tools/clang/include/clang/Basic/
HDAttr.td430 def AsmLabel : InheritableAttr {