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

1 2 3 4 5 6 7 8 91011>>

  /external/autotest/tko/
query_history.cgi 11 def body(): function
59 print '</title></head><body>'
60 body()
61 print '</body></html>'
save_query.cgi 49 def body(): function
74 print '<body>'
75 body()
76 print '</body>'
  /external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
CacheRequest.java 22 Sink body() throws IOException; method in interface:CacheRequest
  /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
MainTest.java 33 assertNull(request.body());
40 assertEquals(3, request.body().contentLength());
45 RequestBody body = request.body(); local
48 assertEquals("application/x-www-form-urlencoded; charset=utf-8", body.contentType().toString());
49 assertEquals("foo", bodyAsString(body));
54 RequestBody body = request.body(); local
57 assertEquals("application/x-www-form-urlencoded; charset=utf-8", body.contentType().toString());
58 assertEquals("foo", bodyAsString(body));
64 RequestBody body = request.body(); local
    [all...]
  /external/okhttp/samples/simple-client/src/main/java/com/squareup/okhttp/sample/
OkHttpContributors.java 38 ResponseBody body = response.body(); local
39 Reader charStream = body.charStream();
41 body.close();
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Entity.java 30 * MIME entity. An entity has a header and a body (see RFC 2045).
37 private Body body = null; field in class:Entity
79 * Gets the body of this entity.
81 * @return the body,
83 public Body getBody() {
84 return body;
88 * Sets the body of this entity.
90 * @param body the body
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportPropertiesPage.java 65 Composite body = form.getBody(); local
68 body.setLayout(new ColumnLayout());
70 mFieldsPart = new ExportFieldsPart(body, toolkit, mEditor);
74 mLinksPart = new ExportLinksPart(body, toolkit, mEditor);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 39 mBodyText = (EditText) findViewById(R.id.body);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local
53 if (body != null) {
54 mBodyText.setText(body);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 39 mBodyText = (EditText) findViewById(R.id.body);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local
53 if (body != null) {
54 mBodyText.setText(body);
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/
HTMLDocument.java 87 * Creates a 'body' element.
89 * @return 'body' element
93 public HTMLElement body() throws IOException { method in class:HTMLDocument
94 return element("body");
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 92 const char *body = source.find("COMP\n"); local
95 read_header({ source.begin(), body }, m);
96 read_body(body, m);
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessageDecoder.java 34 * @return a decorator that decodes the body of the given message; or the
71 InputStream body = in.getBody(); local
72 if (body != null) {
74 body = new GZIPInputStream(body);
76 body = new InflaterInputStream(body);
81 this.body = body;
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RecordedResponse.java 36 public final String body; field in class:RecordedResponse
39 public RecordedResponse(Request request, Response response, WebSocket webSocket, String body,
44 this.body = body;
84 assertEquals(expectedBody, body);
105 assertNull(priorResponse.body());
116 assertNull(networkResponse.body());
139 assertNull(cacheResponse.body());
RequestTest.java 36 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); local
37 assertEquals(contentType, body.contentType());
38 assertEquals(3, body.contentLength());
39 assertEquals("616263", bodyToHex(body));
40 assertEquals("Retransmit body", "616263", bodyToHex(body));
45 RequestBody body = RequestBody.create(contentType, "\u0800"); local
46 assertEquals(MediaType.parse("text/plain; charset=utf-8"), body.contentType());
47 assertEquals(3, body.contentLength());
48 assertEquals("e0a080", bodyToHex(body));
53 RequestBody body = RequestBody.create(contentType, "\\u0800"); local
61 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); local
70 RequestBody body = RequestBody.create(contentType, ".abcd".getBytes(Util.UTF_8), 1, 3); local
84 RequestBody body = RequestBody.create(contentType, file); local
94 RequestBody body = RequestBody.create(contentType, "{}"); local
    [all...]
  /external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
PostExample.java 17 RequestBody body = RequestBody.create(JSON, json); local
20 .post(body)
23 return response.body().string();
  /libcore/support/src/test/java/libcore/tlswire/handshake/
HandshakeMessage.java 32 public byte[] body; field in class:HandshakeMessage
50 result.body = new byte[bodyLength];
51 in.readFully(result.body);
52 result.parseBody(new DataInputStream(new ByteArrayInputStream(result.body)));
57 * Parses the provided body. The default implementation does nothing.
  /libcore/support/src/test/java/tests/http/
RecordedRequest.java 29 private final byte[] body; field in class:RecordedRequest
33 int bodySize, byte[] body, int sequenceNumber) {
38 this.body = body;
51 * Returns the sizes of the chunks of this request's body, or an empty list
52 * if the request's body was empty or unchunked.
59 * Returns the total size of the body of this POST request (before
67 * Returns the body of this POST request. This may be truncated.
70 return body;
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
SimpleContentHandler.java 33 * decoding to body parts.
45 * Called when the body of a discrete (non-multipart) entity is encountered.
52 * @param is the contents of the body. Base64 or quoted-printable
87 * @see org.apache.james.mime4j.AbstractContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
89 public final void body(BodyDescriptor bd, InputStream is) throws IOException { method in class:SimpleContentHandler
  /external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
ReportPage.java 78 body(doc.body());
101 private void body(final HTMLElement body) throws IOException { method in class:ReportPage
102 body.attr("onload", getOnload());
103 final HTMLElement navigation = body.div(Styles.BREADCRUMB);
107 body.h1().text(getLinkLabel());
108 content(body);
109 footer(body);
149 private void footer(final HTMLElement body) throws IOException
    [all...]
  /external/oauth/core/src/main/java/net/oauth/client/
URLConnectionClient.java 36 * they do things like connection pooling. They also support reading the body
85 final InputStream body = request.getBody(); local
86 if (body != null) {
95 final ExcerptInputStream ex = new ExcerptInputStream(body);
105 body.close();
OAuthResponseMessage.java 70 String body = readBodyAsString(); local
71 if (body != null) {
72 addParameters(OAuth.decodeForm(body.trim()));
  /tools/tradefederation/core/prod-tests/tests/src/com/android/continuous/
SmokeTestFailureReporterTest.java 88 final String body = msg.getBody(); local
90 CLog.i("body:\n%s", body);
93 "Expected body to start with \"\"\"%s\"\"\". Body was actually: %s\n",
94 expBodyStart, body), body.startsWith(expBodyStart));
141 final String body = msg.getBody(); local
143 CLog.i("body:\n%s", body);
    [all...]
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/internal/html/
HTMLDocumentTest.java 66 doc.body();
71 + "<html xmlns=\"http://www.w3.org/1999/xhtml\"><body/></html>",
80 doc.body();
  /external/javassist/src/main/javassist/bytecode/stackmap/
BasicBlock.java 55 BasicBlock body; field in class:BasicBlock.Catch
58 body = b;
87 sbuf.append("(").append(th.body.position).append(", ")
  /external/libchrome/base/mac/
mach_port_util.cc 16 mach_msg_body_t body; member in struct:base::__anon22520::MachSendComplexMessage
23 mach_msg_body_t body; member in struct:base::__anon22520::MachReceiveComplexMessage
41 send_msg.body.msgh_descriptor_count = 1;

Completed in 978 milliseconds

1 2 3 4 5 6 7 8 91011>>