Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Sema/
H A DDeclSpec.h1857 Expr *AsmLabel; variable
1902 AsmLabel(nullptr), TrailingRequiresClause(nullptr), in Declarator()
1983 AsmLabel = nullptr; in clear()
2544 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2545 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/netbsd-src/external/apache2/llvm/dist/clang/tools/driver/
H A Dcc1as_main.cpp499 MCSection *AsmLabel = Ctx.getMachOSection( in ExecuteAssemblerImpl() local
501 Str.get()->SwitchSection(AsmLabel); in ExecuteAssemblerImpl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/
H A DParseExprCXX.cpp2061 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXCondition() local
2062 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
2066 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
H A DParseDeclCXX.cpp2369 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2370 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2373 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
H A DParseDecl.cpp2166 ExprResult AsmLabel(ParseSimpleAsm(/*ForAsmLabel*/ true, &Loc)); in ParseAsmAttributesAfterDeclarator() local
2167 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
2172 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/
H A DCXCursor.cpp57 case attr::AsmLabel: in GetCursorKind()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Basic/
H A DAttr.td817 def AsmLabel : InheritableAttr {