HomeSort by relevance Sort by last modified time
    Searched defs:getBody (Results 1 - 25 of 38) sorted by null

1 2

  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsArticle.java 60 public String getBody() {
  /external/javassist/src/main/javassist/compiler/ast/
MethodDecl.java 40 public Stmnt getBody() { return (Stmnt)sublist(4).head(); }
  /cts/tests/tests/net/src/android/net/cts/
MailToTest.java 50 assertNull(mailTo_1.getBody());
61 assertNull(mailTo_2.getBody());
73 assertEquals("send current-issue", mailTo_3.getBody());
83 Log.d("Trace", mailTo_4.toString() + " " + mailTo_4.getBody());
86 assertEquals("send current-issue\r\nsend index", mailTo_4.getBody());
102 assertEquals("hello", mailTo_5.getBody());
117 assertEquals("hello", mailTo_6.getBody());
  /external/deqp/framework/randomshaders/
rsgShader.hpp 51 BlockStatement& getBody (void) { return m_functionBlock; }
52 const BlockStatement& getBody (void) const { return m_functionBlock; }
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 100 public final InputStream getBody() throws IOException
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
RecordedRequest.java 122 public byte[] getBody() {
MockResponse.java 135 public byte[] getBody() {
MockWebServer.java 699 if (response.getBody() != null) {
700 body.write(response.getBody());
756 byte[] pushedBody = pushPromise.getResponse().getBody();
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
JavaApiConverter.java 126 Response.Body okBody = createOkBody(okHeaders, javaResponse.getBody());
223 public InputStream getBody() throws IOException {
237 public InputStream getBody() throws IOException {
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/
DERObjectIdentifier.java 281 protected synchronized byte[] getBody()
303 int length = getBody().length;
312 byte[] enc = getBody();
420 if (Arrays.areEqual(enc, possibleMatch.getBody()))
438 if (Arrays.areEqual(enc, possibleMatch.getBody()))
451 if (Arrays.areEqual(enc, possibleMatch.getBody()))
  /external/clang/include/clang/AST/
StmtCXX.h 157 Stmt *getBody() { return SubExprs[BODY]; }
174 const Stmt *getBody() const { return SubExprs[BODY]; }
StmtObjC.h 39 Stmt *getBody() { return SubExprs[BODY]; }
45 const Stmt *getBody() const { return SubExprs[BODY]; }
DeclBase.h 809 /// getBody - If this Decl represents a declaration for a body of code,
812 virtual Stmt* getBody() const { return nullptr; }
818 virtual bool hasBody() const { return getBody() != nullptr; }
    [all...]
  /external/clang/lib/Analysis/
BodyFarm.cpp 356 Stmt *BodyFarm::getBody(const FunctionDecl *D) {
448 Stmt *BodyFarm::getBody(const ObjCMethodDecl *D) {
AnalysisDeclContext.cpp 92 Stmt *AnalysisDeclContext::getBody(bool &IsAutosynthesized) const {
95 Stmt *Body = FD->getBody();
97 Body = getBodyFarm(getASTContext()).getBody(FD);
104 Stmt *Body = MD->getBody();
106 Body = getBodyFarm(getASTContext()).getBody(MD);
112 return BD->getBody();
115 return FunTmpl->getTemplatedDecl()->getBody();
120 Stmt *AnalysisDeclContext::getBody() const {
122 return getBody(Tmp);
127 getBody(Tmp)
    [all...]
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
HTMLDocument.java 69 public IElement getBody ()
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 146 public byte[] getBody() {
RecordedRequest.java 161 public byte[] getBody() {
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
HttpResponseCache.java 381 @Override public OutputStream getBody() throws IOException {
  /external/clang/lib/AST/
DeclObjC.cpp 673 Stmt *ObjCMethodDecl::getBody() const {
793 if (Stmt *Body = getBody())
    [all...]
ExprCXX.cpp     [all...]
Expr.cpp     [all...]
Decl.cpp     [all...]
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/internal/http/
JavaApiConverterTest.java 220 public InputStream getBody() throws IOException {
253 public InputStream getBody() throws IOException {
595 assertNull(javaCacheResponse.getBody());
619 assertArrayEquals(responseBody.bytes(), readAll(javaCacheResponse.getBody()));
646 assertArrayEquals(responseBody.bytes(), readAll(javaCacheResponse.getBody()));
  /external/chromium_org/third_party/angle/src/compiler/translator/
IntermNode.h 327 TIntermNode *getBody() { return mBody; }

Completed in 2013 milliseconds

1 2