/external/clang/lib/CodeGen/ |
D | CodeGenPGO.cpp | 137 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 …]
|
D | CoverageMappingGen.cpp | 311 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/ |
D | AnalysisDeclContext.cpp | 93 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 …]
|
D | BodyFarm.h | 37 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/ |
D | ContactManager.java | 73 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/ |
D | TransEmptyStatementsAndDealloc.cpp | 117 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/ |
D | VirtualCallChecker.cpp | 72 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()
|
D | ObjCUnusedIVarsChecker.cpp | 47 Scan(M, BE->getBody()); in Scan() 81 Scan(M, I->getBody()); in Scan() 103 Scan(M, FD->getBody()); in Scan()
|
D | IdenticalExprChecker.cpp | 386 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()
|
D | MallocOverflowSecurityChecker.cpp | 244 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()
|
D | ObjCMissingSuperCallChecker.cpp | 189 if (MD->getBody()) in checkASTDecl() 197 PathDiagnosticLocation::createEnd(MD->getBody(), in checkASTDecl()
|
/external/deqp/framework/randomshaders/ |
D | rsgFunctionGenerator.cpp | 48 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()
|
D | rsgShader.hpp | 51 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/ |
D | CodeInjector.h | 41 virtual Stmt *getBody(const FunctionDecl *D) = 0; 42 virtual Stmt *getBody(const ObjCMethodDecl *D) = 0;
|
/external/clang/lib/StaticAnalyzer/Frontend/ |
D | ModelInjector.h | 46 Stmt *getBody(const FunctionDecl *D) override; 47 Stmt *getBody(const ObjCMethodDecl *D) override;
|
D | ModelInjector.cpp | 30 Stmt *ModelInjector::getBody(const FunctionDecl *D) { in getBody() function in ModelInjector 35 Stmt *ModelInjector::getBody(const ObjCMethodDecl *D) { in getBody() function in ModelInjector
|
D | ModelConsumer.cpp | 38 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/ |
D | Contact.java | 142 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/ |
D | ASN1ObjectIdentifier.java | 309 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/ |
D | StmtCXX.h | 161 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/ |
D | RecordedRequest.java | 101 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/ |
D | OkApacheClientTest.java | 101 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/ |
D | CallTest.java | 127 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/ |
D | ContactListenerTest.java | 188 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/ |
D | JavaApiConverterTest.java | 114 @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()
|