HomeSort by relevance Sort by last modified time
    Searched defs:Body (Results 1 - 25 of 50) sorted by null

1 2

  /external/clang/lib/ARCMigrate/
TransUnusedInitDelegate.cpp 35 Stmt *Body;
42 : Body(nullptr), Pass(pass) { }
44 void transformBody(Stmt *body, Decl *ParentD) {
45 Body = body;
46 collectRemovables(body, Removables);
47 TraverseStmt(body);
TransRetainReleaseDealloc.cpp 37 Stmt *Body;
47 : Body(nullptr), Pass(pass) {
54 void transformBody(Stmt *body, Decl *ParentD) {
55 Body = body;
56 collectRemovables(body, Removables);
57 StmtMap.reset(new ParentMap(body));
58 TraverseStmt(body);
TransAutoreleasePool.cpp 73 : Body(nullptr), Pass(pass) {
79 void transformBody(Stmt *body, Decl *ParentD) {
80 Body = body;
81 TraverseStmt(body);
413 Stmt *Body;
TransUnbridgedCasts.cpp 65 Stmt *Body;
70 : Pass(pass), ParentD(nullptr), Body(nullptr) {
74 void transformBody(Stmt *body, Decl *ParentD) {
76 Body = body;
77 StmtMap.reset(new ParentMap(body));
78 TraverseStmt(body);
327 collectRemovables(Body, *Removables);
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
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);
121 var body = this.bodies[i];
122 body.x += dt * body.vx
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
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);
121 var body = this.bodies[i];
122 body.x += dt * body.vx
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
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);
121 var body = this.bodies[i];
122 body.x += dt * body.vx
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
Body.h 22 class Body
23 : public GarbageCollectedFinalized<Body>
29 explicit Body(ExecutionContext*);
30 virtual ~Body() { }
56 explicit Body(const Body&);
59 // body have been consumed and cannot be accessed again.
Body.cpp 6 #include "modules/serviceworkers/Body.h"
17 ScriptPromise Body::readAsync(ScriptState* scriptState, ResponseType type)
24 // handle. This can happen in Body::readAsync. To avoid the situation, we
59 // When we will stop using Blob as a base system of Body to support
80 ScriptPromise Body::arrayBuffer(ScriptState* scriptState)
85 ScriptPromise Body::blob(ScriptState* scriptState)
90 ScriptPromise Body::formData(ScriptState* scriptState)
95 ScriptPromise Body::json(ScriptState* scriptState)
100 ScriptPromise Body::text(ScriptState* scriptState)
105 bool Body::bodyUsed() cons
    [all...]
  /external/clang/lib/CodeGen/
CGStmtOpenMP.cpp 53 const Stmt *Body = CS->getCapturedStmt();
74 EmitStmt(Body);
CGObjCRuntime.cpp 150 const Stmt *Body;
199 Handler.Body = CatchStmt->getCatchBody();
217 // Emit the try body.
241 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
279 CGF.EmitStmt(Handler.Body);
336 // Emit the body of the statement.
  /external/clang/lib/Tooling/
RefactoringCallbacks.cpp 69 const Stmt *Body = PickTrueBranch ? Node->getThen() : Node->getElse();
70 if (Body) {
71 Replace.insert(replaceStmtWithStmt(*Result.SourceManager, *Node, *Body));
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 148 const Stmt *Body = M->getBody();
149 assert(Body);
153 MC.VisitStmt(Body);
  /external/clang/tools/libclang/
IndexDecl.cpp 62 const Stmt *Body = D->getBody();
63 if (Body) {
64 IndexCtx.indexBody(Body, D, D);
86 const Stmt *Body = D->getBody();
87 if (Body) {
88 IndexCtx.indexBody(Body, D, D);
300 const Stmt *Body = FD->getBody();
301 if (Body) {
302 IndexCtx.indexBody(Body, D, FD);
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
Request.java 33 * An HTTP request. Instances of this class are immutable if their {@link #body}
40 private final Body body; field in class:Request
51 this.body = builder.body;
88 public Body body() { method in class:Request
89 return body;
148 public abstract static class Body {
149 /** Returns the Content-Type header for this body. *
    [all...]
Response.java 43 * body is a one-shot value that may be consumed only once. All other properties
51 private final Body body; field in class:Response
64 this.body = builder.body;
127 public Body body() { method in class:Response
128 return body;
137 * null if this response wasn't triggered by an automatic redirect. The body
148 * The body of the returned response should not be read
386 private Body body; field in class:Response.Builder
459 public Builder body(Body body) { method in class:Response.Builder
    [all...]
  /external/chromium-trace/trace-viewer/third_party/python_gflags/
gflags2man.py 450 self.Body()
455 def Body(self): raise NotImplementedError # define in subclass
491 def Body(self):
  /external/chromium_org/third_party/python_gflags/
gflags2man.py 450 self.Body()
455 def Body(self): raise NotImplementedError # define in subclass
491 def Body(self):
  /external/clang/include/clang/AST/
StmtObjC.h 25 enum { ELEM, COLLECTION, BODY, END_EXPR };
30 ObjCForCollectionStmt(Stmt *Elem, Expr *Collect, Stmt *Body,
39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
51 void setBody(Stmt *S) { SubExprs[BODY] = S; }
60 return SubExprs[BODY]->getLocEnd();
77 Stmt *Body;
85 Body(atCatchStmt), AtCatchLoc(atCatchLoc), RParenLoc(rparenloc) { }
90 const Stmt *getCatchBody() const { return Body; }
91 Stmt *getCatchBody() { return Body; }
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 172 /// Create a fake body for dispatch_once.
194 // Everything checks out. Create a fakse body that checks the predicate,
250 /// Create a fake body for dispatch_sync.
262 // Everything checks out. Create a fake body that just calls the block.
287 // Generate body:
326 // Construct the body of the IfStmt.
340 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2));
350 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body,
400 // Look to see if Sema has synthesized a body for us. This happens in
429 // Generate our body
    [all...]
AnalysisDeclContext.cpp 95 Stmt *Body = FD->getBody();
96 if (!Body && Manager && Manager->synthesizeBodies()) {
97 Body = getBodyFarm(getASTContext()).getBody(FD);
98 if (Body)
101 return Body;
104 Stmt *Body = MD->getBody();
105 if (!Body && Manager && Manager->synthesizeBodies()) {
106 Body = getBodyFarm(getASTContext()).getBody(MD);
107 if (Body)
110 return Body;
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 143 ExprAST *Body;
145 FunctionAST(PrototypeAST *proto, ExprAST *body)
146 : Proto(proto), Body(body) {}
413 // body, don't allow redefinition or reextern.
419 // If F already has a body, reject this.
456 if (Value *RetVal = Body->Codegen()) {
466 // Error reading body, remove function.
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 150 ExprAST *Body;
152 FunctionAST(PrototypeAST *proto, ExprAST *body)
153 : Proto(proto), Body(body) {}
421 // body, don't allow redefinition or reextern.
427 // If F already has a body, reject this.
464 if (Value *RetVal = Body->Codegen()) {
477 // Error reading body, remove function.
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 155 ExprAST *Start, *End, *Step, *Body;
158 ExprAST *step, ExprAST *body)
159 : VarName(varname), Start(start), End(end), Step(step), Body(body) {}
179 ExprAST *Body;
181 FunctionAST(PrototypeAST *proto, ExprAST *body)
182 : Proto(proto), Body(body) {}
337 ExprAST *Body = ParseExpression();
338 if (Body == 0) return 0
    [all...]
  /external/llvm/lib/ExecutionEngine/JIT/
JITMemoryManager.cpp 546 /// function body.
547 void deallocateFunctionBody(void *Body) override {
548 if (Body) deallocateBlock(Body);
629 // Add a FreeRangeHeader to the start of the function body region, indicating
    [all...]

Completed in 1393 milliseconds

1 2