HomeSort by: relevance | last modified time | path
    Searched refs:DoStmt (Results 1 - 25 of 36) sorted by relevancy

1 2

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
LoopWidening.cpp 37 return cast<DoStmt>(LoopStmt)->getCond();
49 isa<DoStmt>(LoopStmt));
LoopUnrolling.cpp 72 return S && (isa<ForStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S));
CoreEngine.cpp 341 HandleBranch(cast<DoStmt>(Term)->getCond(), Term, B, Pred);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 394 const DoStmt *DStmt1 = cast<DoStmt>(Stmt1);
395 const DoStmt *DStmt2 = cast<DoStmt>(Stmt2);
UnreachableCodeChecker.cpp 156 if (isa<DoStmt>(Parent))
MallocOverflowSecurityChecker.cpp 251 void VisitDoStmt(DoStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 119 bool VisitDoStmt(DoStmt *S) {
Transforms.cpp 274 bool VisitDoStmt(DoStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/AST/
ParentMap.cpp 201 return DirectChild == cast<DoStmt>(P)->getCond();
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 53 if (const DoStmt *DS = dyn_cast<DoStmt>(Term)) {
LiveVariables.cpp 300 AddLiveExpr(val.liveExprs, LV.ESetFact, cast<DoStmt>(S)->getCond());
CFG.cpp 570 CFGBlock *VisitDoStmt(DoStmt *D);
2235 return VisitDoStmt(cast<DoStmt>(S));
2544 // containing a DoStmt, and the LHS doesn't create a new block, then we should
3886 CFGBlock *CFGBuilder::VisitDoStmt(DoStmt *D) {
5272 void VisitDoStmt(DoStmt *D) {
5979 E = cast<DoStmt>(Terminator)->getCond();
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenPGO.cpp 94 DoStmt,
263 DEFINE_NESTABLE_TRAVERSAL(DoStmt)
280 return PGOHash::DoStmt;
512 void VisitDoStmt(const DoStmt *S) {
CGStmt.cpp 149 case Stmt::DoStmtClass: EmitDoStmt(cast<DoStmt>(*S), Attrs); break;
889 void CodeGenFunction::EmitDoStmt(const DoStmt &S,
CodeGenFunction.cpp 1440 if (isa<SwitchStmt>(S) || isa<WhileStmt>(S) || isa<DoStmt>(S) ||
1463 isa<DoStmt>(S) || isa<ForStmt>(S) || isa<CompoundStmt>(S) ||
CoverageMappingGen.cpp 1113 void VisitDoStmt(const DoStmt *S) {
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaStmtAttr.cpp 87 if (!isa<DoStmt, ForStmt, CXXForRangeStmt, WhileStmt>(St)) {
SemaAvailability.cpp 588 return cast<DoStmt>(Parent)->getBody() == S;
AnalysisBasedWarnings.cpp 943 Range = cast<DoStmt>(Term)->getCond()->getSourceRange();
1341 if (!cast<DoStmt>(S)->getCond()->EvaluateAsInt(Result, Ctx))
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 213 friend class DoStmt;
2448 /// DoStmt - This represents a 'do/while' stmt.
2449 class DoStmt : public Stmt {
2456 DoStmt(Stmt *Body, Expr *Cond, SourceLocation DL, SourceLocation WL,
2465 explicit DoStmt(EmptyShell Empty) : Stmt(DoStmtClass, Empty) {}
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/
ASTMatchersInternal.cpp 884 const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 2150 /// doStmt()
2152 extern const internal::VariadicDynCastAllOfMatcher<Stmt, DoStmt> doStmt;
5139 AST_POLYMORPHIC_SUPPORTED_TYPES(IfStmt, ForStmt, WhileStmt, DoStmt,
5283 AST_POLYMORPHIC_SUPPORTED_TYPES(DoStmt, ForStmt,
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTReaderStmt.cpp 284 void ASTStmtReader::VisitDoStmt(DoStmt *S) {
2754 S = new (Context) DoStmt(Empty);
  /src/external/apache2/llvm/dist/clang/lib/Frontend/Rewrite/
RewriteModernObjC.cpp 5442 isa<DoStmt>(S) || isa<ForStmt>(S))
5630 isa<DoStmt>(S) || isa<ForStmt>(S)) {
5633 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))
RewriteObjC.cpp 4568 isa<DoStmt>(S) || isa<ForStmt>(S))
4734 isa<DoStmt>(S) || isa<ForStmt>(S)) {
4737 isa<DoStmt>(Stmts.back()) || isa<ForStmt>(Stmts.back()))

Completed in 78 milliseconds

1 2