Searched defs:Body (Results 1 - 25 of 39) sorted by relevance

12

/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/
H A Daccess-nbody.js9 function Body(x,y,z,vx,vy,vz,mass){ class
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
H A Daccess-nbody.js9 function Body(x,y,z,vx,vy,vz,mass){ class
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
/external/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp35 Stmt *Body; member in class:__anon3459::UnusedInitRewriter
42 : Body(0), Pass(pass) { }
45 Body = body;
H A DTransRetainReleaseDealloc.cpp36 Stmt *Body; member in class:__anon3457::RetainReleaseDeallocRemover
46 : Body(0), Pass(pass) {
54 Body = body;
H A DTransAutoreleasePool.cpp73 : Body(0), Pass(pass) {
80 Body = body;
413 Stmt *Body; member in class:__anon3451::AutoreleasePoolRewriter
/external/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp69 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse(); local
70 if (Body) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
/external/llvm/tools/lli/
H A DRecordingMemoryManager.cpp70 void RecordingMemoryManager::deallocateFunctionBody(void *Body) { argument
H A Dlli.cpp267 virtual void deallocateFunctionBody(void *Body) { argument
/external/chromium-trace/trace-viewer/third_party/python_gflags/
H A Dgflags2man.py450 self.Body()
455 def Body(self): raise NotImplementedError # define in subclass member in class:GenerateDoc
491 def Body(self): member in class:GenerateMan
/external/clang/tools/libclang/
H A DIndexDecl.cpp55 const Stmt *Body = D->getBody(); local
56 if (Body) {
57 IndexCtx.indexBody(Body, D, D);
82 const Stmt *Body = D->getBody(); local
83 if (Body) {
84 IndexCtx.indexBody(Body, D, D);
295 const Stmt *Body = FD->getBody(); local
296 if (Body) {
297 IndexCtx.indexBody(Body, D, FD);
/external/clang/include/clang/AST/
H A DStmtObjC.h30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
76 Stmt *Body; member in class:clang::ObjCAtCatchStmt
84 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
89 const Stmt *getCatchBody() const { return Body; }
90 Stmt *getCatchBody() { return Body; }
91 void setCatchBody(Stmt *S) { Body = S; }
107 return SourceRange(AtCatchLoc, Body->getLocEnd());
117 child_range children() { return child_range(&Body, &Body + 1); }
/external/clang/lib/CodeGen/
H A DCGObjCRuntime.cpp144 const Stmt *Body; member in struct:__anon3605::CatchHandler
193 Handler.Body = CatchStmt->getCatchBody();
235 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
273 CGF.EmitStmt(Handler.Body);
H A DCGException.cpp1332 const Stmt *Body; member in struct:__anon3580::PerformFinally
1338 PerformFinally(const Stmt *Body, llvm::Value *ForEHVar, argument
1341 : Body(Body), ForEHVar(ForEHVar), EndCatchFn(EndCatchFn),
1357 CGF.EmitStmt(Body);
/external/clang/lib/Sema/
H A DJumpDiagnostics.cpp68 JumpScopeChecker(Stmt *Body, Sema &S);
89 JumpScopeChecker::JumpScopeChecker(Stmt *Body, Sema &s) : S(s) { argument
96 BuildScopeInformation(Body, BodyParentScope);
768 void Sema::DiagnoseInvalidJumps(Stmt *Body) { argument
769 (void)JumpScopeChecker(Body, *this);
H A DSemaLambda.cpp721 ExprResult Sema::ActOnLambdaExpr(SourceLocation StartLoc, Stmt *Body, argument
821 ActOnFinishFunctionBody(CallOperator, Body, IsInstantiation);
860 ArrayIndexStarts, Body->getLocEnd(),
H A DAnalysisBasedWarnings.cpp319 static void CheckFallThroughForBody(Sema &S, const Decl *D, const Stmt *Body, argument
354 if (const CompoundStmt *Compound = dyn_cast<CompoundStmt>(Body)) {
1211 const Stmt *Body = D->getBody(); local
1212 assert(Body);
1305 CheckFallThroughForBody(S, D, Body, blkExpr, CD, AC);
/external/llvm/examples/Kaleidoscope/Chapter2/
H A Dtoy.cpp131 ExprAST *Body; member in class:FunctionAST
134 : Proto(proto), Body(body) {}
/external/llvm/examples/Kaleidoscope/Chapter3/
H A Dtoy.cpp142 ExprAST *Body; member in class:FunctionAST
145 : Proto(proto), Body(body) {}
454 if (Value *RetVal = Body->Codegen()) {
/external/llvm/examples/Kaleidoscope/Chapter4/
H A Dtoy.cpp149 ExprAST *Body; member in class:FunctionAST
152 : Proto(proto), Body(body) {}
462 if (Value *RetVal = Body->Codegen()) {
/external/llvm/examples/Kaleidoscope/Chapter5/
H A Dtoy.cpp154 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
158 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
178 ExprAST *Body; member in class:FunctionAST
181 : Proto(proto), Body(body) {}
335 ExprAST *Body = ParseExpression(); local
336 if (Body == 0) return 0;
338 return new ForExprAST(IdName, Start, End, Step, Body);
606 if (Body->Codegen() == 0)
707 if (Value *RetVal = Body->Codegen()) {
/external/llvm/examples/Kaleidoscope/Chapter6/
H A Dtoy.cpp169 ExprAST *Start, *End, *Step, *Body; member in class:ForExprAST
173 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
206 ExprAST *Body; member in class:FunctionAST
209 : Proto(proto), Body(body) {}
363 ExprAST *Body = ParseExpression(); local
364 if (Body == 0) return 0;
366 return new ForExprAST(IdName, Start, End, Step, Body);
710 if (Body->Codegen() == 0)
815 if (Value *RetVal = Body->Codegen()) {
/external/llvm/lib/ExecutionEngine/JIT/
H A DJITMemoryManager.cpp548 void deallocateFunctionBody(void *Body) { argument
549 if (Body) deallocateBlock(Body);
/external/llvm/unittests/ExecutionEngine/JIT/
H A DJITTest.cpp135 DeallocateFunctionBodyCall(const void *Body) : Body(Body) {} argument
136 const void *Body; member in struct:__anon9850::RecordingJITMemoryManager::DeallocateFunctionBodyCall
139 virtual void deallocateFunctionBody(void *Body) { argument
140 deallocateFunctionBodyCalls.push_back(DeallocateFunctionBodyCall(Body));
141 Base->deallocateFunctionBody(Body);
447 FunctionsDeallocated.insert(RJMM->deallocateFunctionBodyCalls[i].Body);
/external/clang/lib/AST/
H A DStmt.cpp256 Body = 0;
260 Body = new (C) Stmt*[NumStmts];
261 memcpy(Body, StmtStart, NumStmts * sizeof(*Body));
265 if (this->Body)
266 C.Deallocate(Body);
269 Body = new (C) Stmt*[NumStmts];
270 memcpy(Body, Stmts, sizeof(Stmt *) * NumStmts);
724 Stmt *Body, SourceLocation FCL,
729 SubExprs[BODY] = Body;
723 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body, SourceLocation FCL, SourceLocation RPL) argument
810 CXXForRangeStmt(DeclStmt *Range, DeclStmt *BeginEndStmt, Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body, SourceLocation FL, SourceLocation CL, SourceLocation RPL) argument
873 ForStmt(ASTContext &C, Stmt *Init, Expr *Cond, VarDecl *condVar, Expr *Inc, Stmt *Body, SourceLocation FL, SourceLocation LP, SourceLocation RP) argument
[all...]
H A DStmtPrinter.cpp1365 CompoundStmt *Body = Node->getBody(); local
1367 PrintStmt(Body);

Completed in 631 milliseconds

12