Home
last modified time | relevance | path

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

/external/clang/include/clang/Sema/
DDeclSpec.h1546 Expr *AsmLabel; variable
1573 Attrs(ds.getAttributePool().getFactory()), AsmLabel(0), in Declarator()
1650 AsmLabel = 0; in clear()
2041 void setAsmLabel(Expr *E) { AsmLabel = E; } in setAsmLabel()
2042 Expr *getAsmLabel() const { return AsmLabel; } in getAsmLabel()
/external/clang/lib/Parse/
DParseExprCXX.cpp1517 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXCondition() local
1518 if (AsmLabel.isInvalid()) { in ParseCXXCondition()
1522 DeclaratorInfo.setAsmLabel(AsmLabel.release()); in ParseCXXCondition()
DParseDeclCXX.cpp2209 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseCXXClassMemberDeclaration() local
2210 if (AsmLabel.isInvalid()) in ParseCXXClassMemberDeclaration()
2213 DeclaratorInfo.setAsmLabel(AsmLabel.release()); in ParseCXXClassMemberDeclaration()
DParseDecl.cpp1746 ExprResult AsmLabel(ParseSimpleAsm(&Loc)); in ParseAsmAttributesAfterDeclarator() local
1747 if (AsmLabel.isInvalid()) { in ParseAsmAttributesAfterDeclarator()
1752 D.setAsmLabel(AsmLabel.release()); in ParseAsmAttributesAfterDeclarator()
/external/clang/tools/libclang/
DCXCursor.cpp50 case attr::AsmLabel: return CXCursor_AsmLabelAttr; in GetCursorKind()
/external/clang/include/clang/Basic/
DAttr.td208 def AsmLabel : InheritableAttr {