Searched defs:getBody (Results 1 - 25 of 52) sorted by relevance

123

/external/clang/lib/StaticAnalyzer/Frontend/
H A DModelInjector.cpp30 Stmt *ModelInjector::getBody(const FunctionDecl *D) { function in class:ModelInjector
35 Stmt *ModelInjector::getBody(const ObjCMethodDecl *D) { function in class:ModelInjector
/external/javassist/src/main/javassist/compiler/ast/
H A DMethodDecl.java40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); } method in class:MethodDecl
/external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
H A DRecordedRequest.java101 public Buffer getBody() { method in class:RecordedRequest
105 /** @deprecated Use {@link #getBody() getBody().readUtf8()}. */
107 return getBody().readUtf8();
H A DMockResponse.java143 public Buffer getBody() { method in class:MockResponse
/external/volley/src/main/java/com/android/volley/toolbox/
H A DJsonRequest.java82 * @deprecated Use {@link #getBody()}.
87 return getBody();
96 public byte[] getBody() { method in class:JsonRequest
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
H A DASN1ObjectIdentifier.java310 private synchronized byte[] getBody() method in class:ASN1ObjectIdentifier
332 int length = getBody().length;
341 byte[] enc = getBody();
437 final OidHandle hdl = new OidHandle(getBody());
/external/emma/core/java12/com/vladium/emma/report/html/doc/
H A DHTMLDocument.java69 public IElement getBody () method in class:HTMLDocument
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DRecordedRequest.java161 public byte[] getBody() { method in class:RecordedRequest
H A DMockResponse.java146 public byte[] getBody() { method in class:MockResponse
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessage.java100 public final InputStream getBody() throws IOException method in class:HttpMessage
/external/deqp/framework/randomshaders/
H A DrsgShader.hpp51 BlockStatement& getBody (void) { return m_functionBlock; } function in class:rsg::Function
52 const BlockStatement& getBody (void) const { return m_functionBlock; } function in class:rsg::Function
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
H A DSmaliMethod.java121 @Nullable @Override public PsiCodeBlock getBody() { method in class:SmaliMethod
/external/clang/include/clang/AST/
H A DStmtObjC.h39 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::ObjCForCollectionStmt
45 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::ObjCForCollectionStmt
H A DStmtCXX.h162 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::CXXForRangeStmt
182 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::CXXForRangeStmt
331 Stmt *getBody() const { function in class:clang::CoroutineBodyStmt
353 return getBody()->getLocStart();
356 return getBody()->getLocEnd();
H A DStmtOpenMP.h722 const Stmt *getBody() const { function in class:clang::OMPLoopDirective
725 Body = cast<ForStmt>(Body)->getBody();
728 Body = cast<ForStmt>(Body)->getBody();
H A DDeclBase.h866 /// getBody - If this Decl represents a declaration for a body of code,
869 virtual Stmt* getBody() const { return nullptr; } function
875 virtual bool hasBody() const { return getBody() != nullptr; }
H A DStmt.h995 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::SwitchStmt
1000 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::SwitchStmt
1078 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::WhileStmt
1079 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::WhileStmt
1123 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::DoStmt
1124 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::DoStmt
1188 Stmt *getBody() { return SubExprs[BODY]; } function in class:clang::ForStmt
1193 const Stmt *getBody() const { return SubExprs[BODY]; } function in class:clang::ForStmt
/external/clang/lib/Analysis/
H A DBodyFarm.cpp352 Stmt *BodyFarm::getBody(const FunctionDecl *D) { function in class:BodyFarm
382 else if (Injector) { Val = Injector->getBody(D); }
484 Stmt *BodyFarm::getBody(const ObjCMethodDecl *D) { function in class:BodyFarm
H A DAnalysisDeclContext.cpp93 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const { function in class:AnalysisDeclContext
96 Stmt *Body = FD->getBody();
99 getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(FD);
108 Stmt *Body = MD->getBody();
111 getBodyFarm(getASTContext(), Manager->Injector.get()).getBody(MD);
119 return BD->getBody();
122 return FunTmpl->getTemplatedDecl()->getBody();
127 Stmt *AnalysisDeclContext::getBody() const { function in class:AnalysisDeclContext
129 return getBody(Tmp);
134 getBody(Tm
[all...]
/external/volley/src/main/java/com/android/volley/
H A DRequest.java376 * @deprecated Use {@link #getBody()} instead.
381 // here instead of simply calling the getBody() function because this function must
395 * <p>Note that you can directly override {@link #getBody()} for custom data.</p>
435 public byte[] getBody() throws AuthFailureError { method in class:Request
/external/clang/lib/AST/
H A DDeclObjC.cpp784 Stmt *ObjCMethodDecl::getBody() const { function in class:ObjCMethodDecl
908 if (Stmt *Body = getBody())
H A DExprCXX.cpp893 *Stored++ = getCallOperator()->getBody();
1010 CompoundStmt *LambdaExpr::getBody() const { function in class:LambdaExpr
1011 // FIXME: this mutation in getBody is bogus. It should be
1016 getCallOperator()->getBody();
H A DDecl.cpp2467 Stmt *S = getBody();
2491 Stmt *FunctionDecl::getBody(const FunctionDecl *&Definition) const { function in class:FunctionDecl
3147 assert(getPrimaryTemplate()->getTemplatedDecl()->getBody() &&
4073 Stmt *CapturedDecl::getBody() const { return BodyAndNothrow.getPointer(); } function in class:CapturedDecl
H A DExpr.cpp1880 const Stmt *BlockExpr::getBody() const { function in class:BlockExpr
1881 return TheBlock->getBody();
1883 Stmt *BlockExpr::getBody() { function in class:BlockExpr
1884 return TheBlock->getBody();
/external/swiftshader/src/OpenGL/compiler/
H A Dintermediate.h369 TIntermNode* getBody() { return body; } function in class:TIntermLoop

Completed in 2142 milliseconds

123