Home
last modified time | relevance | path

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

/openbsd/gnu/llvm/clang/include/clang/Sema/
H A DDeclSpec.h1892 Expr *AsmLabel; variable
1954 DeclarationAttrs(DeclarationAttrs), AsmLabel(nullptr), in Declarator()
2042 AsmLabel = nullptr; in clear()
2614 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2615 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/openbsd/gnu/llvm/clang/tools/driver/
H A Dcc1as_main.cpp546 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
548 Str.get()->switchSection(AsmLabel); in ExecuteAssemblerImpl()
/openbsd/gnu/llvm/clang/lib/Parse/
H A DParseExprCXX.cpp2147 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2148 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2152 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2507 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2508 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2511 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2281 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2282 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2287 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/openbsd/gnu/llvm/clang/tools/libclang/
H A DCXCursor.cpp57 case attr::AsmLabel: in GetCursorKind()
/openbsd/gnu/llvm/clang/include/clang/Basic/
H A DAttr.td873 def AsmLabel : InheritableAttr {