/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.
|
/packages/services/Telephony/src/com/android/phone/common/mail/ |
Body.java | 22 public interface Body {
|
/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));
|
/prebuilts/go/darwin-x86/test/bench/shootout/ |
nbody.go | 47 type Body struct { 56 func (b *Body) offsetMomentum(px, py, pz float64) { 62 type System []*Body 64 func NewSystem(body []Body) System { 65 n := make(System, len(body)) 66 for i := 0; i < len(body); i++ { 67 n[i] = new(Body) // copy to avoid overwriting the inputs 68 *n[i] = body[i] 71 for _, body := range n [all...] |
/prebuilts/go/linux-x86/test/bench/shootout/ |
nbody.go | 47 type Body struct { 56 func (b *Body) offsetMomentum(px, py, pz float64) { 62 type System []*Body 64 func NewSystem(body []Body) System { 65 n := make(System, len(body)) 66 for i := 0; i < len(body); i++ { 67 n[i] = new(Body) // copy to avoid overwriting the inputs 68 *n[i] = body[i] 71 for _, body := range n [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/tests/integration/ec2/cloudwatch/ |
test_connection.py | 32 # HTTP response body for CloudWatchConnection.describe_alarms 254 class Body(object): 260 return 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/chromium-trace/catapult/third_party/gsutil/third_party/python-gflags/ |
gflags2man.py | 450 self.Body() 455 def Body(self): raise NotImplementedError # define in subclass 491 def Body(self):
|
/external/chromium-trace/catapult/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...] |
StmtCXX.h | 130 enum { RANGE, BEGINEND, COND, INC, LOOPVAR, BODY, END }; 141 Expr *Cond, Expr *Inc, DeclStmt *LoopVar, Stmt *Body, 161 Stmt *getBody() { return SubExprs[BODY]; } 178 const Stmt *getBody() const { return SubExprs[BODY]; } 186 void setBody(Stmt *S) { SubExprs[BODY] = S; } 195 return SubExprs[BODY]->getLocEnd(); 291 /// \brief Represents the body of a coroutine. This wraps the normal function 292 /// body and holds the additional semantic context required to set up and tear 296 Body, ///< The body of the coroutine [all...] |
/external/clang/lib/Analysis/ |
BodyFarm.cpp | 170 /// Create a fake body for dispatch_once. 192 // Everything checks out. Create a fakse body that checks the predicate, 246 /// Create a fake body for dispatch_sync. 258 // Everything checks out. Create a fake body that just calls the block. 283 // Generate body: 322 // Construct the body of the IfStmt. 336 CompoundStmt *Body = M.makeCompound(Stmts); 346 new (C) IfStmt(C, SourceLocation(), nullptr, Comparison, Body, 397 // Look to see if Sema has synthesized a body for us. This happens in 426 // Generate our body [all...] |
AnalysisDeclContext.cpp | 96 Stmt *Body = FD->getBody(); 97 if (!Body && Manager && Manager->synthesizeBodies()) { 98 Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD); 99 if (Body) 102 return Body; 105 Stmt *Body = MD->getBody(); 106 if (!Body && Manager && Manager->synthesizeBodies()) { 107 Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(MD); 108 if (Body) 111 return Body; [all...] |
/external/clang/lib/CodeGen/ |
CGObjCRuntime.cpp | 151 const Stmt *Body; 200 Handler.Body = CatchStmt->getCatchBody(); 218 // Emit the try body. 242 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange()); 263 CGF.EmitStmt(Handler.Body); 344 // Emit the body of the statement.
|
/external/llvm/examples/Kaleidoscope/Chapter2/ |
toy.cpp | 155 std::unique_ptr<ExprAST> Body; 159 std::unique_ptr<ExprAST> Body) 160 : Proto(std::move(Proto)), Body(std::move(Body)) {}
|
/external/llvm/examples/Kaleidoscope/Chapter3/ |
toy.cpp | 156 std::unique_ptr<ExprAST> Body; 160 std::unique_ptr<ExprAST> Body) 161 : Proto(std::move(Proto)), Body(std::move(Body)) {} 484 if (Value *RetVal = Body->codegen()) { 494 // Error reading body, remove function.
|
/external/llvm/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 162 std::unique_ptr<ExprAST> Body; 166 std::unique_ptr<ExprAST> Body) 167 : Proto(std::move(Proto)), Body(std::move(Body)) {} 507 if (Value *RetVal = Body->codegen()) { 520 // Error reading body, remove function.
|
/external/llvm/include/llvm/CodeGen/ |
MIRYamlMapping.h | 402 BlockStringValue Body; 423 YamlIO.mapOptional("body", MF.Body);
|
/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 { 124 } __attribute__((aligned(8))) body; member in struct:android::InputMessage 371 eventTime = msg->body.motion.eventTime; 373 for (uint32_t i = 0; i < msg->body.motion.pointerCount; i++) { 374 uint32_t id = msg->body.motion.pointers[i].properties.id; 377 pointers[i].copyFrom(msg->body.motion.pointers[i].coords);
|