Home
last modified time | relevance | path

Searched refs:body_begin (Results 1 – 13 of 13) sorted by relevance

/external/clang/lib/StaticAnalyzer/Checkers/
DIdenticalExprChecker.cpp118 const IfStmt *InnerIf = dyn_cast<IfStmt>(*CS->body_begin()); in VisitIfStmt()
435 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin(); in isIdenticalStmt()
436 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin(); in isIdenticalStmt()
/external/clang/include/clang/AST/
DStmt.h581 body_range body() { return body_range(body_begin(), body_end()); } in body()
582 body_iterator body_begin() { return Body; } in body_begin() function
596 return body_const_range(body_begin(), body_end()); in body()
598 const_body_iterator body_begin() const { return Body; } in body_begin() function
612 return reverse_body_iterator(body_begin()); in body_rend()
623 return const_reverse_body_iterator(body_begin()); in body_rend()
/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp158 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in TraverseStmtExpr()
DTransAutoreleasePool.cpp168 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in VisitCompoundStmt()
DTransforms.cpp254 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in TraverseStmtExpr()
/external/clang/lib/CodeGen/
DCGStmt.cpp340 for (CompoundStmt::const_body_iterator I = S.body_begin(), in EmitCompoundStmtWithoutScope()
1329 CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end(); in CollectStatementsForCase()
/external/elfutils/libdw/
Dknown-dwarf.h58 DWARF_ONE_KNOWN_DW_AT (body_begin, DW_AT_body_begin) \
/external/clang/lib/StaticAnalyzer/Core/
DPathDiagnostic.cpp644 SourceLocation Loc = (*CS->body_begin())->getLocStart(); in createDeclBegin()
/external/v8/tools/gcmole/
Dgcmole.cc1030 for (clang::CompoundStmt::body_iterator s = stmt->body_begin(); in DECL_VISIT_STMT()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h3565 return CS && matchesFirstInPointerRange(InnerMatcher, CS->body_begin(), in AST_POLYMORPHIC_MATCHER_P()
/external/clang/lib/AST/
DASTImporter.cpp4910 if (ImportArrayChecked(S->body_begin(), S->body_end(), ToStmts.begin())) in VisitCompoundStmt()
DExprConstant.cpp4541 for (CompoundStmt::const_body_iterator BI = CS->body_begin(), in VisitStmtExpr()
/external/clang/lib/Sema/
DSemaOpenMP.cpp6720 auto I = CS->body_begin(); in ActOnOpenMPTargetDirective()