Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DDeclSpec.h1686 Expr *AsmLabel; variable
1719 Attrs(ds.getAttributePool().getFactory()), AsmLabel(nullptr), in Declarator()
1797 AsmLabel = nullptr; in clear()
2209 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2210 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/external/clang/lib/Parse/
DParseExprCXX.cpp1795 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXCondition() local
1796 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
1800 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXCondition()
DParseDeclCXX.cpp2120 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXMemberDeclaratorBeforeInitializer() local
2121 if (AsmLabel.isInvalid()) in ParseCXXMemberDeclaratorBeforeInitializer()
2124 DeclaratorInfo.setAsmLabel(AsmLabel.get()); in ParseCXXMemberDeclaratorBeforeInitializer()
DParseDecl.cpp1919 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseAsmAttributesAfterDeclarator() local
1920 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
1925 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.td478 def AsmLabel : InheritableAttr {