Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DDeclSpec.h1610 Expr *AsmLabel; variable
1637 Attrs(ds.getAttributePool().getFactory()), AsmLabel(nullptr), in Declarator()
1714 AsmLabel = nullptr; in clear()
2118 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2119 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/external/clang/lib/Parse/
DParseExprCXX.cpp1700 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXCondition() local
1701 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
1705 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
DParseDeclCXX.cpp2059 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2060 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2063 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
DParseDecl.cpp1817 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseAsmAttributesAfterDeclarator() local
1818 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
1823 D.setAsmLabel(AsmLabel.get()); in ParseAsmAttributesAfterDeclarator()
/external/clang/tools/libclang/
DCXCursor.cpp51 case attr::AsmLabel: return CXCursor_AsmLabelAttr; in GetCursorKind()
/external/clang/include/clang/Basic/
DAttr.td428 def AsmLabel : InheritableAttr {