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

1 2 3

  /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(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);
  /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/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/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 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.
  /frameworks/native/include/input/
InputTransport.h 55 // We don't need this field in order to align the body below but we
57 // compute the size of this structure as sizeof(Header) + sizeof(Body).
61 // Body *must* be 8 byte aligned.
62 union Body {
123 } __attribute__((aligned(8))) body; member in struct:android::InputMessage
369 eventTime = msg->body.motion.eventTime;
371 for (uint32_t i = 0; i < msg->body.motion.pointerCount; i++) {
372 uint32_t id = msg->body.motion.pointers[i].properties.id;
375 pointers[i].copyFrom(msg->body.motion.pointers[i].coords);

Completed in 2937 milliseconds

1 2 3