Home
last modified time | relevance | path

Searched refs:BreakLoc (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/AST/
DStmt.h1329 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/
DSemaStmt.cpp1543 SourceLocation BreakLoc; member in __anon739654c80411::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/clang/lib/Parse/
DParseStmt.cpp1861 SourceLocation BreakLoc = ConsumeToken(); // eat the 'break'. in ParseBreakStatement() local
1862 return Actions.ActOnBreakStmt(BreakLoc, getCurScope()); in ParseBreakStatement()
/external/clang/include/clang/Sema/
DSema.h3466 StmtResult ActOnBreakStmt(SourceLocation BreakLoc, Scope *CurScope);