/packages/apps/UnifiedEmail/src/com/android/emailcommon/mail/ |
Body.java | 23 public interface Body {
|
/external/clang/lib/ARCMigrate/ |
TransUnusedInitDelegate.cpp | 35 Stmt *Body; 42 : Body(0), 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(0), 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(0), Pass(pass) { 79 void transformBody(Stmt *body, Decl *ParentD) { 80 Body = body; 81 TraverseStmt(body); 413 Stmt *Body;
|
TransUnbridgedCasts.cpp | 65 Stmt *Body; 69 UnbridgedCastRewriter(MigrationPass &pass) : Pass(pass), ParentD(0), Body(0) { 73 void transformBody(Stmt *body, Decl *ParentD) { 75 Body = body; 76 StmtMap.reset(new ParentMap(body)); 77 TraverseStmt(body); 319 collectRemovables(Body, *Removables);
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/ |
Body.java | 26 * Encapsulates the body of an entity (see RFC 2045).
29 * @version $Id: Body.java,v 1.4 2004/10/04 15:36:43 ntherning Exp $
31 public interface Body {
34 * Gets the parent of this body.
41 * Sets the parent of this body.
48 * Writes this body to the given stream in MIME message format.
|
/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/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/okhttp/src/main/java/com/squareup/okhttp/ |
Request.java | 32 * An HTTP request. Instances of this class are immutable if their {@link #body} 42 private final Body body; field in class:Request 49 this.body = builder.body; 89 public Body body() { method in class:Request 90 return body; 97 public abstract static class Body { 99 * Returns the Content-Type header for this body, or null if the conten [all...] |
Response.java | 30 * body is a one-shot value that may be consumed only once. All other properties 40 private final Body body; field in class:Response 47 this.body = builder.body; 100 public Body body() { method in class:Response 101 return body; 106 * null if this response wasn't triggered by an automatic redirect. The body 114 public abstract static class Body { 173 private Body body; field in class:Response.Builder 201 public Builder body(Body body) { method in class:Response.Builder [all...] |
/external/clang/lib/StaticAnalyzer/Checkers/ |
DirectIvarAssignment.cpp | 158 const Stmt *Body = M->getBody(); 159 assert(Body); 162 MC.VisitStmt(Body);
|
/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 | 160 /// Create a fake body for dispatch_once. 182 // Everything checks out. Create a fakse body that checks the predicate, 238 /// Create a fake body for dispatch_sync. 250 // Everything checks out. Create a fake body that just calls the block. 275 // Generate body: 314 // Construct the body of the IfStmt. 328 CompoundStmt *Body = M.makeCompound(ArrayRef<Stmt*>(Stmts, 2)); 338 new (C) IfStmt(C, SourceLocation(), 0, Comparison, Body,
|
AnalysisDeclContext.cpp | 95 Stmt *Body = FD->getBody(); 96 if (!Body && Manager && Manager->synthesizeBodies()) { 100 return Body; 261 // that has the body.
|
/external/clang/lib/CodeGen/ |
CGObjCRuntime.cpp | 149 const Stmt *Body; 198 Handler.Body = CatchStmt->getCatchBody(); 216 // Emit the try body. 240 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange()); 278 CGF.EmitStmt(Handler.Body); 335 // Emit the body of the statement.
|
/external/clang/tools/libclang/ |
IndexDecl.cpp | 65 const Stmt *Body = D->getBody(); 66 if (Body) { 67 IndexCtx.indexBody(Body, D, D); 92 const Stmt *Body = D->getBody(); 93 if (Body) { 94 IndexCtx.indexBody(Body, D, D); 312 const Stmt *Body = FD->getBody(); 313 if (Body) { 314 IndexCtx.indexBody(Body, D, FD);
|
/external/smack/src/org/jivesoftware/smack/packet/ |
Message.java | 45 * <tr><td><i>body</i></td> <td>SHOULD</td><td>SHOULD</td><td>SHOULD</td><td>SHOULD</td><td>SHOULD NOT</td></tr> 58 private final Set<Body> bodies = new HashSet<Body>(); 228 * Returns the default body of the message, or null if the body has not been set. The body 231 * The default body of a message is the body that corresponds to the message's language. 235 * @return the body of the message. 242 * Returns the body corresponding to the language. If the language is null, the method resul 251 Body body = getMessageBody(language); local [all...] |
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 142 ExprAST *Body; 144 FunctionAST(PrototypeAST *proto, ExprAST *body) 145 : Proto(proto), Body(body) {} 411 // body, don't allow redefinition or reextern. 417 // If F already has a body, reject this. 454 if (Value *RetVal = Body->Codegen()) { 464 // Error reading body, remove function.
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 149 ExprAST *Body; 151 FunctionAST(PrototypeAST *proto, ExprAST *body) 152 : Proto(proto), Body(body) {} 419 // body, don't allow redefinition or reextern. 425 // If F already has a body, reject this. 462 if (Value *RetVal = Body->Codegen()) { 475 // Error reading body, remove function.
|
/frameworks/native/include/input/ |
InputTransport.h | 52 uint32_t padding; // 8 byte alignment for the body that follows 55 union Body { 115 } body; member in struct:android::InputMessage 361 eventTime = msg->body.motion.eventTime; 363 for (size_t i = 0; i < msg->body.motion.pointerCount; i++) { 364 uint32_t id = msg->body.motion.pointers[i].properties.id; 367 pointers[i].copyFrom(msg->body.motion.pointers[i].coords);
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
toy.cpp | 154 ExprAST *Start, *End, *Step, *Body; 157 ExprAST *step, ExprAST *body) 158 : VarName(varname), Start(start), End(end), Step(step), Body(body) {} 178 ExprAST *Body; 180 FunctionAST(PrototypeAST *proto, ExprAST *body) 181 : Proto(proto), Body(body) {} 335 ExprAST *Body = ParseExpression(); 336 if (Body == 0) return 0 [all...] |