Searched refs:getBody (Results 1 - 25 of 165) sorted by relevance

1234567

/external/clang/include/clang/Analysis/
H A DCodeInjector.h29 /// The getBody function will be called each time the static analyzer examines a
41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
/external/clang/lib/Analysis/
H A DBodyFarm.h37 Stmt *getBody(const FunctionDecl *D);
40 Stmt *getBody(const ObjCMethodDecl *D);
H A DAnalysisDeclContext.cpp93 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { function in class:AnalysisDeclContext
96 Stmt *Body = FD->getBody();
99 getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD);
108 Stmt *Body = MD->getBody();
111 getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(MD);
119 return BD->getBody();
122 return FunTmpl->getTemplatedDecl()->getBody();
127 Stmt *AnalysisDeclContext::getBody() const { function in class:AnalysisDeclContext
129 return getBody(Tmp);
134 getBody(Tm
[all...]
/external/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.h46 Stmt *getBody(const FunctionDecl *D) override;
47 Stmt *getBody(const ObjCMethodDecl *D) override;
H A DModelConsumer.cpp38 Bodies.insert(std::make_pair(func->getName(), func->getBody()));
H A DModelInjector.cpp30 Stmt *ModelInjector::getBody(const FunctionDecl *D) { function in class:ModelInjector
35 Stmt *ModelInjector::getBody(const ObjCMethodDecl *D) { function in class:ModelInjector
/external/deqp/framework/randomshaders/
H A DrsgFunctionGenerator.cpp48 statementStack.push_back(&m_function.getBody());
49 m_function.getBody().init(m_state);
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange.asAccess()));
H A DrsgShader.hpp51 BlockStatement& getBody (void) { return m_functionBlock; } function in class:rsg::Function
52 const BlockStatement& getBody (void) const { return m_functionBlock; } function in class:rsg::Function
/external/volley/src/main/java/com/android/volley/toolbox/
H A DJsonRequest.java82 * @deprecated Use {@link #getBody()}.
87 return getBody();
96 public byte[] getBody() { method in class:JsonRequest
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp72 if (!FD || !FD->getBody())
91 assert(FD && FD->getBody());
97 Visit(FD->getBody());
228 if (Stmt *Body = I->getBody()) {
236 if (Stmt *Body = DD->getBody()) {
H A DObjCUnusedIVarsChecker.cpp47 Scan(M, BE->getBody());
81 Scan(M, I->getBody());
103 Scan(M, FD->getBody());
H A DCheckSizeofPointer.cpp86 walker.Visit(D->getBody());
H A DIdenticalExprChecker.cpp384 if (!isIdenticalStmt(Ctx, ForStmt1->getBody(), ForStmt2->getBody(),
396 if (!isIdenticalStmt(Ctx, DStmt1->getBody(), DStmt2->getBody(),
408 if (!isIdenticalStmt(Ctx, WStmt1->getBody(), WStmt2->getBody(),
H A DObjCMissingSuperCallChecker.cpp189 if (MD->getBody())
197 PathDiagnosticLocation::createEnd(MD->getBody(),
H A DMallocOverflowSecurityChecker.cpp244 return this->Visit(S->getBody());
247 return this->Visit(S->getBody());
250 return this->Visit(S->getBody());
276 c.Visit(mgr.getAnalysisDeclContext(D)->getBody());
H A DUndefCapturedBlockVarChecker.cpp90 if (const Expr *Ex = FindBlockDeclRefExpr(BE->getBody(), VD))
/external/clang/unittests/Analysis/
H A DCFGTest.cpp37 Stmt *Body = Func->getBody();
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); } method in class:MethodDecl
/external/clang/lib/CodeGen/
H A DCodeGenPGO.cpp142 CounterMap[D->getBody()] = NextCounter++;
252 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody()));
253 CountMap[D->getBody()] = BodyCount;
254 Visit(D->getBody());
264 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody()));
265 CountMap[D->getBody()] = BodyCount;
266 Visit(D->getBody());
271 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody()));
272 CountMap[D->getBody()] = BodyCount;
273 Visit(D->getBody());
[all...]
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DRecordedRequest.java101 public Buffer getBody() { method in class:RecordedRequest
105 /** @deprecated Use {@link #getBody() getBody().readUtf8()}. */
107 return getBody().readUtf8();
/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp117 if (!S->getBody())
119 return Visit(S->getBody());
127 if (!S->getBody())
129 return Visit(S->getBody());
137 if (!S->getBody())
139 return Visit(S->getBody());
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java310 private synchronized byte[] getBody() method in class:ASN1ObjectIdentifier
332 int length = getBody().length;
341 byte[] enc = getBody();
437 final OidHandle hdl = new OidHandle(getBody());
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java57 return http.getBody();
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java71 InputStream body = in.getBody();
/external/volley/src/test/java/com/android/volley/mock/
H A DMockHttpStack.java76 mLastPostBody = request.getBody();

Completed in 404 milliseconds

1234567