Home
last modified time | relevance | path

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

12345

/external/clang/lib/Analysis/
DAnalysisDeclContext.cpp89 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 …]
DBodyFarm.h34 Stmt *getBody(const FunctionDecl *D);
DCallGraph.cpp119 if (!D->getBody()) in includeInGraph()
150 if (Stmt *Body = D->getBody()) in addNodeForDecl()
DCFG.cpp1953 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/
DVirtualCallChecker.cpp72 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()
DMallocOverflowSecurityChecker.cpp176 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()
DObjCUnusedIVarsChecker.cpp47 Scan(M, BE->getBody()); in Scan()
82 Scan(M, (*I)->getBody()); in Scan()
109 Scan(M, FD->getBody()); in Scan()
DCheckObjCDealloc.cpp189 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) { in checkObjCDealloc()
240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx) in checkObjCDealloc()
DObjCMissingSuperCallChecker.cpp195 if (MD->getBody()) in checkASTDecl()
203 PathDiagnosticLocation::createEnd(MD->getBody(), in checkASTDecl()
DCheckSizeofPointer.cpp85 walker.Visit(D->getBody()); in checkASTCodeBody()
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DDERObjectIdentifier.java246 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/
DTransEmptyStatementsAndDealloc.cpp120 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/
DHTTPResponse.java52 AbstractBody getBody() throws InterruptedException, BOSHException; in getBody() method
DBOSHMessageEvent.java88 public AbstractBody getBody() { in getBody() method in BOSHMessageEvent
/external/smack/src/org/jivesoftware/smack/
DBOSHConnection.java618 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/
DMethodDecl.java40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); } in getBody() method in MethodDecl
/external/clang/tools/libclang/
DIndexDecl.cpp56 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/
DMessage.java237 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/
DSecureCacheResponseTest.java73 public InputStream getBody() throws IOException { in getBody() method in SecureCacheResponseTest.MockCacheResponse
/external/clang/lib/AST/
DStmtPrinter.cpp240 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/
DAbstractHttpInputStream.java47 OutputStream cacheBody = cacheRequest != null ? cacheRequest.getBody() : null; in AbstractHttpInputStream()
DHttpEngine.java83 @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/
DHttpMessageDecoder.java71 InputStream body = in.getBody(); in HttpMessageDecoder()
/external/oauth/core/src/main/java/net/oauth/client/
DOAuthResponseMessage.java57 return http.getBody(); in getBodyAsStream()
/external/mockwebserver/src/main/java/com/google/mockwebserver/
DRecordedRequest.java91 public byte[] getBody() { in getBody() method in RecordedRequest

12345