/external/clang/lib/Analysis/ |
D | AnalysisDeclContext.cpp | 89 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { in getBody() function in AnalysisDeclContext 92 Stmt *Body = FD->getBody(); in getBody() 95 return getBodyFarm(getASTContext()).getBody(FD); in getBody() 100 return MD->getBody(); in getBody() 102 return BD->getBody(); in getBody() 105 return FunTmpl->getTemplatedDecl()->getBody(); in getBody() 110 Stmt *AnalysisDeclContext::getBody() const { in getBody() function in AnalysisDeclContext 112 return getBody(Tmp); in getBody() 117 getBody(Tmp); in isBodyAutosynthesized() 162 cfg.reset(CFG::buildCFG(D, getBody(), in getCFG() [all …]
|
D | BodyFarm.h | 34 Stmt *getBody(const FunctionDecl *D);
|
D | CallGraph.cpp | 119 if (!D->getBody()) in includeInGraph() 150 if (Stmt *Body = D->getBody()) in addNodeForDecl()
|
D | CFG.cpp | 1953 assert(F->getBody()); in VisitForStmt() 1989 if (!isa<CompoundStmt>(F->getBody())) in VisitForStmt() 1990 addLocalScopeAndDtors(F->getBody()); in VisitForStmt() 1994 BodyBlock = addStmt(F->getBody()); in VisitForStmt() 2170 CFGBlock *BodyBlock = addStmt(S->getBody()); in VisitObjCForCollectionStmt() 2282 assert(W->getBody()); in VisitWhileStmt() 2303 if (!isa<CompoundStmt>(W->getBody())) in VisitWhileStmt() 2304 addLocalScopeAndDtors(W->getBody()); in VisitWhileStmt() 2307 BodyBlock = addStmt(W->getBody()); in VisitWhileStmt() 2467 assert(D->getBody()); in VisitDoStmt() [all …]
|
/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() 224 if (Stmt *Body = I->getBody()) { in checkASTDecl() 232 if (Stmt *Body = DD->getBody()) { in checkASTDecl()
|
D | MallocOverflowSecurityChecker.cpp | 176 return this->Visit(S->getBody()); in VisitWhileStmt() 179 return this->Visit(S->getBody()); in VisitForStmt() 182 return this->Visit(S->getBody()); in VisitDoStmt() 208 c.Visit(mgr.getAnalysisDeclContext(D)->getBody()); in OutputPossibleOverflows()
|
D | ObjCUnusedIVarsChecker.cpp | 47 Scan(M, BE->getBody()); in Scan() 82 Scan(M, (*I)->getBody()); in Scan() 109 Scan(M, FD->getBody()); in Scan()
|
D | CheckObjCDealloc.cpp | 189 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) { in checkObjCDealloc() 240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx) in checkObjCDealloc()
|
D | ObjCMissingSuperCallChecker.cpp | 195 if (MD->getBody()) in checkASTDecl() 203 PathDiagnosticLocation::createEnd(MD->getBody(), in checkASTDecl()
|
D | CheckSizeofPointer.cpp | 85 walker.Visit(D->getBody()); in checkASTCodeBody()
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/ |
D | DERObjectIdentifier.java | 246 protected synchronized byte[] getBody() in getBody() method in DERObjectIdentifier 268 int length = getBody().length; in encodedLength() 277 byte[] enc = getBody(); in encode() 378 if (Arrays.areEqual(enc, possibleMatch.getBody())) in fromOctetString() 396 if (Arrays.areEqual(enc, possibleMatch.getBody())) in fromOctetString() 409 if (Arrays.areEqual(enc, possibleMatch.getBody())) in fromOctetString()
|
/external/clang/lib/ARCMigrate/ |
D | TransEmptyStatementsAndDealloc.cpp | 120 if (!S->getBody()) in VisitWhileStmt() 122 return Visit(S->getBody()); in VisitWhileStmt() 130 if (!S->getBody()) in VisitDoStmt() 132 return Visit(S->getBody()); in VisitDoStmt() 140 if (!S->getBody()) in VisitObjCForCollectionStmt() 142 return Visit(S->getBody()); in VisitObjCForCollectionStmt()
|
/external/smack/src/com/kenai/jbosh/ |
D | HTTPResponse.java | 52 AbstractBody getBody() throws InterruptedException, BOSHException; in getBody() method
|
D | BOSHMessageEvent.java | 88 public AbstractBody getBody() { in getBody() method in BOSHMessageEvent
|
/external/smack/src/org/jivesoftware/smack/ |
D | BOSHConnection.java | 618 if (event.getBody() != null) { in initDebugger() 620 readerPipe.write(event.getBody().toXML()); in initDebugger() 630 if (event.getBody() != null) { in initDebugger() 632 writer.write(event.getBody().toXML()); in initDebugger()
|
/external/javassist/src/main/javassist/compiler/ast/ |
D | MethodDecl.java | 40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); } in getBody() method in MethodDecl
|
/external/clang/tools/libclang/ |
D | IndexDecl.cpp | 56 const Stmt *Body = D->getBody(); in handleObjCMethod() 83 const Stmt *Body = D->getBody(); in VisitFunctionDecl() 296 const Stmt *Body = FD->getBody(); in VisitFunctionTemplateDecl()
|
/external/smack/src/org/jivesoftware/smack/packet/ |
D | Message.java | 237 public String getBody() { in getBody() method in Message 238 return getBody(null); in getBody() 250 public String getBody(String language) { in getBody() method in Message
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/ |
D | SecureCacheResponseTest.java | 73 public InputStream getBody() throws IOException { in getBody() method in SecureCacheResponseTest.MockCacheResponse
|
/external/clang/lib/AST/ |
D | StmtPrinter.cpp | 240 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) { in VisitSwitchStmt() 246 PrintStmt(Node->getBody()); in VisitSwitchStmt() 257 PrintStmt(Node->getBody()); in VisitWhileStmt() 262 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) { in VisitDoStmt() 267 PrintStmt(Node->getBody()); in VisitDoStmt() 296 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) { in VisitForStmt() 301 PrintStmt(Node->getBody()); in VisitForStmt() 315 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) { in VisitObjCForCollectionStmt() 320 PrintStmt(Node->getBody()); in VisitObjCForCollectionStmt() 332 PrintStmt(Node->getBody()); in VisitCXXForRangeStmt() [all …]
|
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/ |
D | AbstractHttpInputStream.java | 47 OutputStream cacheBody = cacheRequest != null ? cacheRequest.getBody() : null; in AbstractHttpInputStream()
|
D | HttpEngine.java | 83 @Override public InputStream getBody() throws IOException { 194 setResponse(new ResponseHeaders(uri, rawResponseHeaders), cacheResponse.getBody()); in sendRequest() 222 cachedResponseBody = candidate.getBody(); in initResponseSource()
|
/external/oauth/core/src/main/java/net/oauth/http/ |
D | HttpMessageDecoder.java | 71 InputStream body = in.getBody(); in HttpMessageDecoder()
|
/external/oauth/core/src/main/java/net/oauth/client/ |
D | OAuthResponseMessage.java | 57 return http.getBody(); in getBodyAsStream()
|
/external/mockwebserver/src/main/java/com/google/mockwebserver/ |
D | RecordedRequest.java | 91 public byte[] getBody() { in getBody() method in RecordedRequest
|