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

12345

/external/smack/src/com/kenai/jbosh/
H A DHTTPResponse.java52 AbstractBody getBody() throws InterruptedException, BOSHException; method in interface:HTTPResponse
H A DBOSHMessageEvent.java88 public AbstractBody getBody() { method in class:BOSHMessageEvent
/external/clang/lib/Analysis/
H A DBodyFarm.h34 Stmt *getBody(const FunctionDecl *D);
H A DAnalysisDeclContext.cpp92 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { function in class:AnalysisDeclContext
95 Stmt *Body = FD->getBody();
98 return getBodyFarm(getASTContext()).getBody(FD);
103 return MD->getBody();
105 return BD->getBody();
108 return FunTmpl->getTemplatedDecl()->getBody();
113 Stmt *AnalysisDeclContext::getBody() const { function in class:AnalysisDeclContext
115 return getBody(Tmp);
120 getBody(Tmp);
178 cfg.reset(CFG::buildCFG(D, getBody(),
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DVirtualCallChecker.cpp72 if (!FD || !FD->getBody())
91 assert(FD && FD->getBody());
97 Visit(FD->getBody());
224 if (Stmt *Body = I->getBody()) {
232 if (Stmt *Body = DD->getBody()) {
H A DCheckSizeofPointer.cpp85 walker.Visit(D->getBody());
H A DMallocOverflowSecurityChecker.cpp176 return this->Visit(S->getBody());
179 return this->Visit(S->getBody());
182 return this->Visit(S->getBody());
208 c.Visit(mgr.getAnalysisDeclContext(D)->getBody());
H A DObjCMissingSuperCallChecker.cpp195 if (MD->getBody())
203 PathDiagnosticLocation::createEnd(MD->getBody(),
H A DUndefCapturedBlockVarChecker.cpp92 if (const Expr *Ex = FindBlockDeclRefExpr(BE->getBody(), VD))
H A DCheckObjCDealloc.cpp189 if (MD->getBody() && !scan_dealloc(MD->getBody(), S)) {
240 if (scan_ivar_release(MD->getBody(), ID, PD, RS, SelfII, Ctx)
H A DObjCUnusedIVarsChecker.cpp47 Scan(M, BE->getBody());
82 Scan(M, (*I)->getBody());
109 Scan(M, FD->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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DDERObjectIdentifier.java260 protected synchronized byte[] getBody() method in class:DERObjectIdentifier
282 int length = getBody().length;
291 byte[] enc = getBody();
399 if (Arrays.areEqual(enc, possibleMatch.getBody()))
417 if (Arrays.areEqual(enc, possibleMatch.getBody()))
430 if (Arrays.areEqual(enc, possibleMatch.getBody()))
/external/clang/lib/ARCMigrate/
H A DTransEmptyStatementsAndDealloc.cpp120 if (!S->getBody())
122 return Visit(S->getBody());
130 if (!S->getBody())
132 return Visit(S->getBody());
140 if (!S->getBody())
142 return Visit(S->getBody());
H A DTransBlockObjCVariable.cpp95 bool onlyValueOfVarIsNeeded = checker.TraverseStmt(block->getBody());
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/net/
H A DSecureCacheResponseTest.java73 public InputStream getBody() throws IOException { method in class:SecureCacheResponseTest.MockCacheResponse
/external/oauth/core/src/main/java/net/oauth/client/
H A DOAuthResponseMessage.java57 return http.getBody();
H A DURLConnectionClient.java85 final InputStream body = request.getBody();
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java71 InputStream body = in.getBody();
/external/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DAbstractHttpInputStream.java47 OutputStream cacheBody = cacheRequest != null ? cacheRequest.getBody() : null;
/external/clang/lib/AST/
H A DStmtPrinter.cpp240 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
246 PrintStmt(Node->getBody());
257 PrintStmt(Node->getBody());
262 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
267 PrintStmt(Node->getBody());
296 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
301 PrintStmt(Node->getBody());
315 if (CompoundStmt *CS = dyn_cast<CompoundStmt>(Node->getBody())) {
320 PrintStmt(Node->getBody());
332 PrintStmt(Node->getBody());
[all...]
/external/clang/tools/libclang/
H A DIndexDecl.cpp65 const Stmt *Body = D->getBody();
92 const Stmt *Body = D->getBody();
312 const Stmt *Body = FD->getBody();
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DRecordedRequest.java132 public byte[] getBody() { method in class:RecordedRequest
/external/smack/src/org/jivesoftware/smack/
H A DBOSHConnection.java618 if (event.getBody() != null) {
620 readerPipe.write(event.getBody().toXML());
630 if (event.getBody() != null) {
632 writer.write(event.getBody().toXML());
/external/clang/include/clang/AST/
H A DStmtCXX.h157 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::CXXForRangeStmt
174 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::CXXForRangeStmt

Completed in 1355 milliseconds

12345