Searched refs:BreakLoc (Results 1 – 8 of 8) sorted by relevance
/external/clang/include/clang/AST/ |
D | Stmt.h | 1329 SourceLocation BreakLoc; variable 1332 BreakStmt(SourceLocation BL) : Stmt(BreakStmtClass), BreakLoc(BL) { in BreakStmt() 1340 SourceLocation getBreakLoc() const { return BreakLoc; } in getBreakLoc() 1341 void setBreakLoc(SourceLocation L) { BreakLoc = L; } in setBreakLoc() 1343 SourceLocation getLocStart() const LLVM_READONLY { return BreakLoc; } in getLocStart() 1344 SourceLocation getLocEnd() const LLVM_READONLY { return BreakLoc; } in getLocEnd()
|
/external/clang/lib/Sema/ |
D | SemaStmt.cpp | 1543 SourceLocation BreakLoc; member in __anonc27809660411::BreakContinueFinder 1558 BreakLoc = E->getBreakLoc(); in VisitBreakStmt() 1562 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound() 1564 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc() 2672 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument 2676 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt() 2679 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt() 2681 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt() 2683 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | SemaStmt.cpp | 1672 SourceLocation BreakLoc; member in __anon53e299540611::BreakContinueFinder 1690 BreakLoc = E->getBreakLoc(); in VisitBreakStmt() 1748 bool BreakFound() { return BreakLoc.isValid(); } in BreakFound() 1750 SourceLocation GetBreakLoc() { return BreakLoc; } in GetBreakLoc() 2998 Sema::ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope) { in ActOnBreakStmt() argument 3002 return StmtError(Diag(BreakLoc, diag::err_break_not_in_loop_or_switch)); in ActOnBreakStmt() 3005 return StmtError(Diag(BreakLoc, diag::err_omp_loop_cannot_use_stmt) in ActOnBreakStmt() 3007 CheckJumpOutOfSEHFinally(*this, BreakLoc, *S); in ActOnBreakStmt() 3009 return new (Context) BreakStmt(BreakLoc); in ActOnBreakStmt()
|
/external/clang/lib/Parse/ |
D | ParseStmt.cpp | 1861 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local 1862 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Stmt.h | 255 SourceLocation BreakLoc; variable 2699 SourceLocation getBreakLoc() const { return BreakStmtBits.BreakLoc; } in getBreakLoc() 2700 void setBreakLoc(SourceLocation L) { BreakStmtBits.BreakLoc = L; } in setBreakLoc()
|
/external/llvm-project/clang/lib/Parse/ |
D | ParseStmt.cpp | 2158 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local 2159 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
|
/external/clang/include/clang/Sema/ |
D | Sema.h | 3466 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);
|
/external/llvm-project/clang/include/clang/Sema/ |
D | Sema.h | 4592 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);
|