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

1 2 3 4 5 6

  /external/swiftshader/third_party/subzero/src/
IceLoopAnalyzer.h 22 Loop(CfgNode *Header, CfgNode *PreHeader, CfgUnorderedSet<SizeT> Body)
23 : Header(Header), PreHeader(PreHeader), Body(Body) {}
26 CfgUnorderedSet<SizeT> Body; // Node IDs
  /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/Dialer/java/com/android/voicemail/impl/mail/
Body.java 22 public interface Body {
  /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/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/unittests/Analysis/
CFGTest.cpp 37 Stmt *Body = Func->getBody();
38 if (!Body)
42 CFG::buildCFG(nullptr, Body, Result.Context, CFG::BuildOptions());
  /external/clang/lib/StaticAnalyzer/Checkers/
DirectIvarAssignment.cpp 147 const Stmt *Body = M->getBody();
148 assert(Body);
152 MC.VisitStmt(Body);
  /frameworks/ml/nn/runtime/
ExecutionPlan.h 203 struct Body {
204 virtual ~Body() {}
210 struct SimpleBody : Body {
222 struct CompoundBody : Body {
242 Body* mBody = nullptr;
  /device/linaro/bootloader/edk2/NetworkPkg/HttpBootDxe/
HttpBootSupport.h 198 CHAR8 *Body;
278 @param[in] BodyLength Length in bytes of the HTTP body.
279 @param[in] Body Body associated with the HTTP request.
295 IN VOID *Body OPTIONAL
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter4/
KaleidoscopeJIT.h 44 std::unique_ptr<ExprAST> Body;
48 std::unique_ptr<ExprAST> Body)
49 : Proto(std::move(Proto)), Body(std::move(Body)) {}
  /external/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter5/
KaleidoscopeJIT.h 46 std::unique_ptr<ExprAST> Body;
50 std::unique_ptr<ExprAST> Body)
51 : Proto(std::move(Proto)), Body(std::move(Body)) {}
  /device/linaro/bootloader/edk2/NetworkPkg/HttpDxe/
HttpImpl.c 221 Token->Message->Body is not NULL,
768 @retval EFI_SUCCESS Continue to parser the message body.
782 CHAR8 *Body;
793 Body = Wrap->HttpToken->Message->Body;
795 if (Data < Body + BodyLength) {
907 // Cache the part of body.
982 // Init message-body parser by header information.
1029 if ((HttpMsg->Body == NULL) || (HttpMsg->BodyLength == 0)) {
1036 // Receive the response body.
    [all...]
  /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 170 /// Create a fake body for dispatch_once.
192 // Everything checks out. Create a fakse body that checks the predicate,
247 /// Create a fake body for dispatch_sync.
259 // Everything checks out. Create a fake body that just calls the block.
284 // Generate body:
323 // Construct the body of the IfStmt.
337 CompoundStmt *Body = M.makeCompound(Stmts);
347 Comparison, Body, SourceLocation(), Else);
436 // Look to see if Sema has synthesized a body for us. This happens in
465 // Generate our body
    [all...]
  /external/clang/lib/CodeGen/
CGObjCRuntime.cpp 150 const Stmt *Body;
199 Handler.Body = CatchStmt->getCatchBody();
217 // Emit the try body.
241 CodeGenFunction::LexicalScope cleanups(CGF, Handler.Body->getSourceRange());
262 CGF.EmitStmt(Handler.Body);
343 // Emit the body of the statement.
  /external/clang/lib/Index/
IndexDecl.cpp 86 const Stmt *Body = D->getBody();
87 if (Body) {
88 IndexCtx.indexBody(Body, D, D);
127 const Stmt *Body = D->getBody();
128 if (Body) {
129 IndexCtx.indexBody(Body, D, D);
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 156 std::unique_ptr<ExprAST> Body;
160 std::unique_ptr<ExprAST> Body)
161 : Proto(std::move(Proto)), Body(std::move(Body)) {}
  /external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter2/
toy.cpp 131 ExprAST *Body;
133 FunctionAST(PrototypeAST *proto, ExprAST *body)
134 : Proto(proto), Body(body) {}
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/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...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/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...]

Completed in 560 milliseconds

1 2 3 4 5 6