Searched refs:LabelLoc (Results 1 – 7 of 7) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1227 SourceLocation LabelLoc; variable 1230 : Stmt(GotoStmtClass), Label(label), GotoLoc(GL), LabelLoc(LL) {} in GotoStmt() 1240 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 1241 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 1244 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
D | Expr.h | 3340 SourceLocation AmpAmpLoc, LabelLoc; variable 3347 AmpAmpLoc(AALoc), LabelLoc(LLoc), Label(L) {} in AddrLabelExpr() 3355 SourceLocation getLabelLoc() const { return LabelLoc; } in getLabelLoc() 3356 void setLabelLoc(SourceLocation L) { LabelLoc = L; } in setLabelLoc() 3359 SourceLocation getLocEnd() const LLVM_READONLY { return LabelLoc; } in getLocEnd()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 951 SourceLocation LabelLoc = ConsumeToken(); in ParseCompoundStatementBody() local 962 DeclsInGroup.push_back(Actions.LookupOrCreateLabel(II, IdLoc, LabelLoc)); in ParseCompoundStatementBody() 971 StmtResult R = Actions.ActOnDeclStmt(Res, LabelLoc, Tok.getLocation()); in ParseCompoundStatementBody()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 2617 SourceLocation LabelLoc, in ActOnGotoStmt() argument 2621 return new (Context) GotoStmt(TheDecl, GotoLoc, LabelLoc); in ActOnGotoStmt()
|
D | TreeTransform.h | 1237 StmtResult RebuildGotoStmt(SourceLocation GotoLoc, SourceLocation LabelLoc, in RebuildGotoStmt() argument 1239 return getSema().ActOnGotoStmt(GotoLoc, LabelLoc, Label); in RebuildGotoStmt() 2302 SourceLocation LabelLoc, LabelDecl *Label) { in RebuildAddrLabelExpr() argument 2303 return getSema().ActOnAddrLabel(AmpAmpLoc, LabelLoc, Label); in RebuildAddrLabelExpr()
|
/external/swiftshader/third_party/LLVM/lib/AsmParser/ |
D | LLParser.cpp | 2051 LocTy FnLoc, LabelLoc; in ParseValID() local
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3460 SourceLocation LabelLoc,
|