Home
last modified time | relevance | path

Searched refs:body_end (Results 1 – 22 of 22) sorted by relevance

/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp93 I = S->body_begin(), E = S->body_end(); I != E; ++I) in VisitCompoundStmt()
161 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in TraverseStmtExpr()
171 I = S->body_begin(), E = S->body_end(); I != E; ++I) in VisitCompoundStmt()
193 I = body->body_begin(), E = body->body_end(); I != E; ++I) in isBodyEmpty()
DTransAutoreleasePool.cpp168 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in VisitCompoundStmt()
302 Stmt::child_iterator SI = scope.End, SE = compoundS->body_end(); in handlePoolScope()
DTransforms.cpp252 I = S->body_begin(), E = S->body_end(); I != E; ++I) { in TraverseStmtExpr()
262 I = S->body_begin(), E = S->body_end(); I != E; ++I) in VisitCompoundStmt()
/external/chromium_org/net/http/
Dhttp_stream_parser_unittest.cc657 std::string body_end = "abcd"; in TEST() local
659 std::string response_end = body_end + next_response; in TEST()
668 int body_end_size = body_end.size(); in TEST()
/external/clang/include/clang/AST/
DStmt.h567 body_iterator body_end() { return Body + size(); } in body_end() function
577 const_body_iterator body_end() const { return Body + size(); } in body_end() function
582 return reverse_body_iterator(body_end()); in body_rbegin()
592 return const_reverse_body_iterator(body_end()); in body_rbegin()
/external/chromium_org/v8/src/
Dpreparser.cc1417 int body_end = scanner()->peek_location().end_pos; in ParseLazyFunctionLiteralBody() local
1418 log_->LogFunction(body_start, body_end, in ParseLazyFunctionLiteralBody()
/external/v8/src/
Dpreparser.cc1441 int body_end = scanner_->peek_location().end_pos; in ParseLazyFunctionLiteralBody() local
1442 log_->LogFunction(body_start, body_end, in ParseLazyFunctionLiteralBody()
/external/clang/lib/CodeGen/
DCGStmt.cpp214 E = S.body_end()-GetLast; I != E; ++I) in EmitCompoundStmtWithoutScope()
1091 CompoundStmt::const_body_iterator I = CS->body_begin(), E = CS->body_end(); in CollectStatementsForCase()
DCGDecl.cpp1004 BE = CS->body_end(); BI != BE; ++BI) in isCapturedBy()
DCGClass.cpp1331 E = RootCS->body_end(); in emitImplicitAssignmentOperatorBody()
DCGObjC.cpp2828 E = S.body_end(); I != E; ++I) in EmitObjCAutoreleasePoolStmt()
/external/chromium_org/v8/tools/gcmole/
Dgcmole.cc1014 clang::CompoundStmt::body_iterator end = stmt->body_end(); in DECL_VISIT_STMT()
/external/v8/tools/gcmole/
Dgcmole.cc1016 clang::CompoundStmt::body_iterator end = stmt->body_end(); in DECL_VISIT_STMT()
/external/clang/include/clang/ASTMatchers/
DASTMatchers.h2482 Node.body_end(), Finder, Builder); in AST_MATCHER_P()
/external/clang/lib/AST/
DStmtPrinter.cpp116 for (CompoundStmt::body_iterator I = Node->body_begin(), E = Node->body_end(); in PrintRawCompoundStmt()
DExprConstant.cpp3215 BE = CS->body_end(); BI != BE; ++BI) { in EvaluateStmt()
4016 BE = CS->body_end(); in VisitStmtExpr()
/external/chromium/net/spdy/
Dspdy_network_transaction_unittest.cc1862 scoped_ptr<spdy::SpdyFrame> body_end( in TEST_P() local
1868 CreateMockWrite(*body_end), in TEST_P()
1887 CreateMockRead(*body_end), in TEST_P()
/external/chromium_org/net/spdy/
Dspdy_network_transaction_unittest.cc5871 scoped_ptr<SpdyFrame> body_end( in TEST_P() local
5878 CreateMockWrite(*body_end, 2), in TEST_P()
5897 CreateMockRead(*body_end, 11), in TEST_P()
/external/clang/lib/Serialization/
DASTWriterStmt.cpp73 for (CompoundStmt::body_iterator CS = S->body_begin(), CSEnd = S->body_end(); in VisitCompoundStmt()
/external/clang/lib/Analysis/
DCFG.cpp927 for (CompoundStmt::body_iterator BI = CS->body_begin(), BE = CS->body_end() in addLocalScopeForStmt()
/external/clang/lib/Sema/
DSemaDeclCXX.cpp991 BodyEnd = CompStmt->body_end(); BodyIt != BodyEnd; ++BodyIt) { in CheckConstexprFunctionStmt()
1095 BodyEnd = CompBody->body_end(); BodyIt != BodyEnd; ++BodyIt) { in CheckConstexprFunctionBody()
DTreeTransform.h5247 for (CompoundStmt::body_iterator B = S->body_begin(), BEnd = S->body_end(); in TransformCompoundStmt()