HomeSort by: relevance | last modified time | path
    Searched refs:body_begin (Results 1 - 12 of 12) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
IdenticalExprChecker.cpp 117 const IfStmt *InnerIf = dyn_cast<IfStmt>(*CS->body_begin());
439 CompoundStmt::const_body_iterator I1 = CompStmt1->body_begin();
440 CompoundStmt::const_body_iterator I2 = CompStmt2->body_begin();
  /src/external/apache2/llvm/dist/clang/lib/ARCMigrate/
TransEmptyStatementsAndDealloc.cpp 156 I = S->body_begin(), E = S->body_end(); I != E; ++I) {
TransAutoreleasePool.cpp 167 I = S->body_begin(), E = S->body_end(); I != E; ++I) {
Transforms.cpp 249 I = S->body_begin(), E = S->body_end(); I != E; ++I) {
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
Stmt.h 1431 body_range body() { return body_range(body_begin(), body_end()); }
1432 body_iterator body_begin() { return getTrailingObjects<Stmt *>(); } function in class:clang::final
1433 body_iterator body_end() { return body_begin() + size(); }
1434 Stmt *body_front() { return !body_empty() ? body_begin()[0] : nullptr; }
1437 return !body_empty() ? body_begin()[size() - 1] : nullptr;
1444 return body_const_range(body_begin(), body_end());
1447 const_body_iterator body_begin() const { function in class:clang::final
1451 const_body_iterator body_end() const { return body_begin() + size(); }
1454 return !body_empty() ? body_begin()[0] : nullptr;
1458 return !body_empty() ? body_begin()[size() - 1] : nullptr
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
CloneDetection.cpp 64 return CS->body_begin() + StartIndex;
72 return CS->body_begin() + EndIndex;
PathDiagnostic.cpp 650 SourceLocation Loc = (*CS->body_begin())->getBeginLoc();
  /src/external/apache2/llvm/dist/clang/lib/AST/
Stmt.cpp 376 std::copy(Stmts.begin(), Stmts.end(), body_begin());
ExprConstant.cpp 7865 for (CompoundStmt::const_body_iterator BI = CS->body_begin(),
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGStmt.cpp 1565 CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end();
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 5335 return CS && matchesFirstInPointerRange(InnerMatcher, CS->body_begin(),
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaOpenMP.cpp 11126 auto I = CS->body_begin();

Completed in 47 milliseconds