Searched refs:LabelLoc (Results 1 – 7 of 7) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1184 SourceLocation LabelLoc; variable 1187 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1197 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 1198 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 1201 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
D | Expr.h | 3322 SourceLocation AmpAmpLoc, LabelLoc; variable 3329 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr() 3337 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 3338 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 3341 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 799 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 800 Diag(LabelLoc, diag::ext_gnu_local_label); in ParseCompoundStatementBody() 811 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 821 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2260 SourceLocation LabelLoc, in ActOnGotoStmt() argument 2264 return Owned(new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc)); in ActOnGotoStmt()
|
D | TreeTransform.h | 1154 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1156 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 1787 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 1788 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
/external/llvm/lib/AsmParser/ |
D | LLParser.cpp | 2386 LocTy FnLoc, LabelLoc; in ParseValID() local
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 2878 SourceLocation LabelLoc,
|