Searched refs:getWhileLoc (Results 1 – 11 of 11) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/readability/ |
D | BracesAroundStatementsCheck.cpp | 147 checkStmt(Result, S->getBody(), S->getDoLoc(), S->getWhileLoc()); in check()
|
/external/llvm-project/clang/include/clang/AST/ |
D | Stmt.h | 2413 SourceLocation getWhileLoc() const { return WhileStmtBits.WhileLoc; } in getWhileLoc() function 2421 SourceLocation getBeginLoc() const { return getWhileLoc(); } in getBeginLoc() 2476 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() function
|
/external/clang/include/clang/AST/ |
D | Stmt.h | 1082 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() function 1129 SourceLocation getWhileLoc() const { return WhileLoc; } in getWhileLoc() function
|
/external/llvm-project/clang/lib/CodeGen/ |
D | CGStmt.cpp | 828 S.getWhileLoc(), in EmitWhileStmt() 830 << SourceRange(S.getWhileLoc(), S.getRParenLoc()); in EmitWhileStmt()
|
/external/llvm-project/clang/lib/Serialization/ |
D | ASTWriterStmt.cpp | 200 Record.AddSourceLocation(S->getWhileLoc()); in VisitWhileStmt() 211 Record.AddSourceLocation(S->getWhileLoc()); in VisitDoStmt()
|
/external/clang/lib/Serialization/ |
D | ASTWriterStmt.cpp | 161 Record.AddSourceLocation(S->getWhileLoc()); in VisitWhileStmt() 170 Record.AddSourceLocation(S->getWhileLoc()); in VisitDoStmt()
|
/external/llvm-project/clang/lib/Tooling/Syntax/ |
D | BuildTree.cpp | 1446 Builder.markChildToken(S->getWhileLoc(), in WalkUpFromWhileStmt()
|
/external/clang/lib/Sema/ |
D | TreeTransform.h | 6354 S->getWhileLoc(), S->getConditionVariable(), S->getCond(), in TransformWhileStmt() 6369 return getDerived().RebuildWhileStmt(S->getWhileLoc(), Cond, Body.get()); in TransformWhileStmt() 6390 return getDerived().RebuildDoStmt(S->getDoLoc(), Body.get(), S->getWhileLoc(), in TransformDoStmt() 6391 /*FIXME:*/S->getWhileLoc(), Cond.get(), in TransformDoStmt()
|
/external/llvm-project/clang/lib/Sema/ |
D | TreeTransform.h | 7340 S->getWhileLoc(), S->getConditionVariable(), S->getCond(), in TransformWhileStmt() 7355 return getDerived().RebuildWhileStmt(S->getWhileLoc(), S->getLParenLoc(), in TransformWhileStmt() 7377 return getDerived().RebuildDoStmt(S->getDoLoc(), Body.get(), S->getWhileLoc(), in TransformDoStmt() 7378 /*FIXME:*/S->getWhileLoc(), Cond.get(), in TransformDoStmt()
|
/external/clang/lib/AST/ |
D | ASTImporter.cpp | 5060 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc()); in VisitWhileStmt() 5075 SourceLocation ToWhileLoc = Importer.Import(S->getWhileLoc()); in VisitDoStmt()
|
/external/llvm-project/clang/lib/AST/ |
D | ASTImporter.cpp | 6183 auto ToWhileLoc = importChecked(Err, S->getWhileLoc()); in VisitWhileStmt() 6199 auto ToWhileLoc = importChecked(Err, S->getWhileLoc()); in VisitDoStmt()
|