Home
last modified time | relevance | path

Searched refs:getBody (Results 1 – 25 of 141) sorted by relevance

123456

/external/clang/lib/CodeGen/
DCodeGenPGO.cpp137 CounterMap[D->getBody()] = NextCounter++; in VisitDecl()
247 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody())); in VisitFunctionDecl()
248 CountMap[D->getBody()] = BodyCount; in VisitFunctionDecl()
249 Visit(D->getBody()); in VisitFunctionDecl()
259 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody())); in VisitCapturedDecl()
260 CountMap[D->getBody()] = BodyCount; in VisitCapturedDecl()
261 Visit(D->getBody()); in VisitCapturedDecl()
266 uint64_t BodyCount = setCount(PGO.getRegionCount(D->getBody())); in VisitObjCMethodDecl()
267 CountMap[D->getBody()] = BodyCount; in VisitObjCMethodDecl()
268 Visit(D->getBody()); in VisitObjCMethodDecl()
[all …]
DCoverageMappingGen.cpp311 auto Body = D->getBody(); in VisitDecl()
581 Stmt *Body = D->getBody(); in VisitDecl()
631 extendRegion(S->getBody()); in VisitWhileStmt()
632 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitWhileStmt()
654 extendRegion(S->getBody()); in VisitDoStmt()
656 propagateCounts(addCounters(ParentCount, BodyCount), S->getBody()); in VisitDoStmt()
678 extendRegion(S->getBody()); in VisitForStmt()
679 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitForStmt()
710 extendRegion(S->getBody()); in VisitCXXForRangeStmt()
711 Counter BackedgeCount = propagateCounts(BodyCount, S->getBody()); in VisitCXXForRangeStmt()
[all …]
/external/clang/lib/Analysis/
DAnalysisDeclContext.cpp93 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { in getBody() function in AnalysisDeclContext
96 Stmt *Body = FD->getBody(); in getBody()
98 Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD); in getBody()
105 Stmt *Body = MD->getBody(); in getBody()
107 Body = getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(MD); in getBody()
113 return BD->getBody(); in getBody()
116 return FunTmpl->getTemplatedDecl()->getBody(); in getBody()
121 Stmt *AnalysisDeclContext::getBody() const { in getBody() function in AnalysisDeclContext
123 return getBody(Tmp); in getBody()
128 getBody(Tmp); in isBodyAutosynthesized()
[all …]
DBodyFarm.h37 Stmt *getBody(const FunctionDecl *D);
40 Stmt *getBody(const ObjCMethodDecl *D);
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/
DContactManager.java73 Body bodyA = fixtureA.getBody(); in addPair()
74 Body bodyB = fixtureB.getBody(); in addPair()
127 bodyA = fixtureA.getBody(); in addPair()
128 bodyB = fixtureB.getBody(); in addPair()
178 Body bodyA = fixtureA.getBody(); in destroy()
179 Body bodyB = fixtureB.getBody(); in destroy()
241 Body bodyA = fixtureA.getBody(); in collide()
242 Body bodyB = fixtureB.getBody(); in collide()
/external/clang/lib/ARCMigrate/
DTransEmptyStatementsAndDealloc.cpp117 if (!S->getBody()) in VisitWhileStmt()
119 return Visit(S->getBody()); in VisitWhileStmt()
127 if (!S->getBody()) in VisitDoStmt()
129 return Visit(S->getBody()); in VisitDoStmt()
137 if (!S->getBody()) in VisitObjCForCollectionStmt()
139 return Visit(S->getBody()); in VisitObjCForCollectionStmt()
/external/clang/lib/StaticAnalyzer/Checkers/
DVirtualCallChecker.cpp72 if (!FD || !FD->getBody()) in Enqueue()
91 assert(FD && FD->getBody()); in Execute()
97 Visit(FD->getBody()); in Execute()
228 if (Stmt *Body = I->getBody()) { in checkASTDecl()
236 if (Stmt *Body = DD->getBody()) { in checkASTDecl()
DObjCUnusedIVarsChecker.cpp47 Scan(M, BE->getBody()); in Scan()
81 Scan(M, I->getBody()); in Scan()
103 Scan(M, FD->getBody()); in Scan()
DIdenticalExprChecker.cpp386 if (!isIdenticalStmt(Ctx, ForStmt1->getBody(), ForStmt2->getBody(), in isIdenticalStmt()
398 if (!isIdenticalStmt(Ctx, DStmt1->getBody(), DStmt2->getBody(), in isIdenticalStmt()
410 if (!isIdenticalStmt(Ctx, WStmt1->getBody(), WStmt2->getBody(), in isIdenticalStmt()
DMallocOverflowSecurityChecker.cpp244 return this->Visit(S->getBody()); in VisitWhileStmt()
247 return this->Visit(S->getBody()); in VisitForStmt()
250 return this->Visit(S->getBody()); in VisitDoStmt()
276 c.Visit(mgr.getAnalysisDeclContext(D)->getBody()); in OutputPossibleOverflows()
DObjCMissingSuperCallChecker.cpp189 if (MD->getBody()) in checkASTDecl()
197 PathDiagnosticLocation::createEnd(MD->getBody(), in checkASTDecl()
/external/deqp/framework/randomshaders/
DrsgFunctionGenerator.cpp48 statementStack.push_back(&m_function.getBody()); in generate()
49 m_function.getBody().init(m_state); in generate()
79 m_function.getBody().addChild(new AssignStatement(m_state, variable, valueRange.asAccess())); in generate()
DrsgShader.hpp51 BlockStatement& getBody (void) { return m_functionBlock; } in getBody() function in rsg::Function
52 const BlockStatement& getBody (void) const { return m_functionBlock; } in getBody() function in rsg::Function
/external/clang/include/clang/Analysis/
DCodeInjector.h41 virtual Stmt *getBody(const FunctionDecl *D) = 0;
42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
/external/clang/lib/StaticAnalyzer/Frontend/
DModelInjector.h46 Stmt *getBody(const FunctionDecl *D) override;
47 Stmt *getBody(const ObjCMethodDecl *D) override;
DModelInjector.cpp30 Stmt *ModelInjector::getBody(const FunctionDecl *D) { in getBody() function in ModelInjector
35 Stmt *ModelInjector::getBody(const ObjCMethodDecl *D) { in getBody() function in ModelInjector
DModelConsumer.cpp38 Bodies.insert(std::make_pair(func->getName(), func->getBody())); in HandleTopLevelDecl()
/external/libgdx/extensions/gdx-box2d/gdx-box2d-gwt/src/com/badlogic/gdx/physics/box2d/gwt/emu/org/jbox2d/dynamics/contacts/
DContact.java142 final Body bodyA = m_fixtureA.getBody(); in getWorldManifold()
143 final Body bodyB = m_fixtureB.getBody(); in getWorldManifold()
276 Body bodyA = m_fixtureA.getBody(); in update()
277 Body bodyB = m_fixtureB.getBody(); in update()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DASN1ObjectIdentifier.java309 private synchronized byte[] getBody() in getBody() method in ASN1ObjectIdentifier
331 int length = getBody().length; in encodedLength()
340 byte[] enc = getBody(); in encode()
437 OidHandle hdl = new OidHandle(getBody()); in intern()
/external/clang/include/clang/AST/
DStmtCXX.h161 Stmt *getBody() { return SubExprs[BODY]; } in getBody() function
178 const Stmt *getBody() const { return SubExprs[BODY]; } in getBody() function
326 Stmt *getBody() const { in getBody() function
348 return getBody()->getLocStart(); in getLocStart()
351 return getBody()->getLocEnd(); in getLocEnd()
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
DRecordedRequest.java101 public Buffer getBody() { in getBody() method in RecordedRequest
107 return getBody().readUtf8(); in getUtf8Body()
/external/okhttp/okhttp-apache/src/test/java/com/squareup/okhttp/apache/
DOkApacheClientTest.java101 assertEquals("Hello, world!", request.getBody().readUtf8()); in postByteEntity()
114 assertEquals("Hello, world!", request.getBody().readUtf8()); in postInputStreamEntity()
124 assertNotNull(request.getBody()); in postEmptyEntity()
133 assertNotNull(request.getBody()); in putEmptyEntity()
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
DCallTest.java127 assertEquals(0, recordedRequest.getBody().size()); in get()
211 assertEquals(0, recordedRequest.getBody().size()); in head()
239 assertEquals("def", recordedRequest.getBody().readUtf8()); in post()
268 assertEquals(0, recordedRequest.getBody().size()); in postZeroLength()
329 assertEquals(body, recordedRequest1.getBody().readUtf8()); in postBodyRetransmittedAfterAuthorizationFail()
334 assertEquals(body, recordedRequest2.getBody().readUtf8()); in postBodyRetransmittedAfterAuthorizationFail()
383 assertEquals(0, recordedRequest.getBody().size()); in delete()
412 assertEquals("def", recordedRequest.getBody().readUtf8()); in deleteWithRequestBody()
429 assertEquals("def", recordedRequest.getBody().readUtf8()); in put()
458 assertEquals("def", recordedRequest.getBody().readUtf8()); in patch()
[all …]
/external/libgdx/tests/gdx-tests/src/com/badlogic/gdx/tests/box2d/
DContactListenerTest.java188 final Body toRemove = contact.getFixtureA().getBody().getType() == BodyType.DynamicBody ? in beginContact()
189 contact.getFixtureA().getBody() : in beginContact()
190 contact.getFixtureB().getBody(); in beginContact()
/external/okhttp/okhttp-android-support/src/test/java/com/squareup/okhttp/internal/huc/
DJavaApiConverterTest.java114 @Override public InputStream getBody() throws IOException { in createOkResponseForCacheGet()
146 @Override public InputStream getBody() throws IOException { in createOkResponseForCacheGet_withMissingStatusLine()
174 @Override public InputStream getBody() throws IOException { in createOkResponseForCacheGet_secure()
520 assertNull(javaCacheResponse.getBody()); in createJavaCacheResponse_httpGet()
544 assertEquals("ResponseBody", readAll(javaCacheResponse.getBody())); in createJavaCacheResponse_httpPost()
571 assertEquals("ResponseBody", readAll(javaCacheResponse.getBody())); in createJavaCacheResponse_httpsPost()

123456