Searched refs:body (Results 1 - 25 of 700) sorted by relevance

1234567891011>>

/external/doclava/res/assets/templates/
H A Dindex.cs5 <body>
7 </body>
H A Dtrailer.cs1 </div> <!-- end body-content --> <?cs # normally opened by header.cs ?>
H A Ddesignpage.cs5 <body class="gc-documentation">
9 <div id="body-content">
19 </body>
H A Dnosidenavpage.cs5 <body class="gc-documentation" itemscope itemtype="http://schema.org/Article">
9 <div id="body-content">
19 </body>
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRequestTest.java36 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8));
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");
46 assertEquals(MediaType.parse("text/plain; charset=utf-8"), body.contentType());
47 assertEquals(3, body.contentLength());
48 assertEquals("e0a080", bodyToHex(body));
231 bodyToHex(RequestBody body) argument
[all...]
/external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
H A DMainTest.java33 assertNull(request.body());
40 assertEquals(3, request.body().contentLength());
45 RequestBody body = request.body();
48 assertEquals("application/x-www-form-urlencoded; charset=utf-8", body.contentType().toString());
49 assertEquals("foo", bodyAsString(body));
54 RequestBody body = request.body();
57 assertEquals("application/x-www-form-urlencoded; charset=utf-8", body.contentType().toString());
58 assertEquals("foo", bodyAsString(body));
93 bodyAsString(RequestBody body) argument
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
H A DT.g23 : m='method' ID '(' ')' body
27 body
29 // decls is on body's local variable stack but is visible to
30 // any rule that body calls such as stat. From other rules
31 // it is referenced as $body::decls
32 // From within rule body, you can use $decls shorthand
36 $body::decls = [];
41 foreach my $id ($body::decls) {
47 stat: ID '=' expr ';' { $body::decls->add($ID.text); } // track left-hand-sides
/external/wpa_supplicant_8/hs20/server/www/
H A Dremediation.php5 <body>
17 </body>
H A Dfree.php5 <body>
22 </body>
H A Dfree-remediation.php5 <body>
18 </body>
/external/doclava/res/assets/templates-sdk/
H A Dbody_tag.cs0 <body class="gc-documentation <?cs
/external/oauth/core/src/main/java/net/oauth/http/
H A DHttpMessageDecoder.java34 * @return a decorator that decodes the body of the given message; or the
71 InputStream body = in.getBody();
72 if (body != null) {
74 body = new GZIPInputStream(body);
76 body = new InflaterInputStream(body);
81 this.body = body;
/external/autotest/scheduler/
H A Demail_manager.py29 def send_email(self, to_string, subject, body):
35 @param body: String, message body
43 gmail_lib.send_email(to_string, subject, body)
58 body = 'Subject: ' + subject + '\n'
59 body += "%s / %s / %s\n%s" % (socket.gethostname(),
62 self._emails.append(body)
71 body = separator.join(self._emails)
73 self.send_email(self._notify_address, subject, body)
/external/mockwebserver/src/main/java/com/google/mockwebserver/
H A DMockResponse.java40 /** The response body content, or null if {@code bodyStream} is set. */
41 private byte[] body; field in class:MockResponse
42 /** The response body content, or null if {@code body} is set. */
54 * Creates a new mock response with an empty body.
147 return body;
154 return bodyStream != null ? bodyStream : new ByteArrayInputStream(body);
157 public MockResponse setBody(byte[] body) { argument
158 setHeader("Content-Length", body.length);
159 this.body
174 setBody(String body) argument
186 setChunkedBody(byte[] body, int maxChunkSize) argument
214 setChunkedBody(String body, int maxChunkSize) argument
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/internal/http/
H A DCacheRequest.java22 Sink body() throws IOException; method in interface:CacheRequest
/external/skia/src/sksl/ir/
H A DSkSLFunctionDefinition.h22 std::unique_ptr<Block> body)
25 , fBody(std::move(body)) {}
21 FunctionDefinition(Position position, const FunctionDeclaration& declaration, std::unique_ptr<Block> body) argument
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/token-rewrite/
H A Dvia-parser.rb21 : m='method' ID '(' ')' body
25 body
30 $body::decls = []
34 $body::decls.uniq!
35 for it in $body::decls
41 stat: ID '=' expr ';' {$body::decls << $ID.text.to_s}
/external/curl/tests/
H A Dhttp_pipe.py217 body = "WE ROOLZ: {}\r\n".format(os.getpid());
220 'Content-Length: {}'.format(len(body)),
221 'Cache-Control: no-store'], body)
224 body = 'abcdefghijklmnopqrstuvwxyz'
228 'Cache-Control: no-store'], body)
231 body = 'zyxwvutsrqponmlkjihgfedcba'
233 '200 OK', ['Content-Length: 26', 'Cache-Control: no-store'], body)
236 body = ('7\r\nchunked\r\n'
243 body)
246 body
[all...]
/external/okhttp/okhttp/src/main/java/com/squareup/okhttp/
H A DRequest.java25 * An HTTP request. Instances of this class are immutable if their {@link #body}
32 private final RequestBody body; field in class:Request
43 this.body = builder.body;
85 public RequestBody body() { method in class:Request
86 return body;
124 private RequestBody body; field in class:Request.Builder
135 this.body = request.body;
194 * OkHttp may replace {@code value} with a header derived from the request body
231 post(RequestBody body) argument
235 delete(RequestBody body) argument
243 put(RequestBody body) argument
247 patch(RequestBody body) argument
251 method(String method, RequestBody body) argument
[all...]
/external/mesa3d/src/gallium/drivers/svga/svgadump/
H A Dsvga_dump.c1484 const uint8_t *body = (const uint8_t *)data; local
1485 const uint8_t *next = body + size;
1491 const SVGA3dCmdDefineSurface *cmd = (const SVGA3dCmdDefineSurface *)body;
1493 body = (const uint8_t *)&cmd[1];
1494 while(body + sizeof(SVGA3dSize) <= next) {
1495 dump_SVGA3dSize((const SVGA3dSize *)body);
1496 body += sizeof(SVGA3dSize);
1503 const SVGA3dCmdDestroySurface *cmd = (const SVGA3dCmdDestroySurface *)body;
1505 body = (const uint8_t *)&cmd[1];
1511 const SVGA3dCmdSurfaceCopy *cmd = (const SVGA3dCmdSurfaceCopy *)body;
1801 const uint8_t *body = (const uint8_t *)&header[1]; local
[all...]
/external/autotest/site_utils/
H A Dpubsub_utils.py62 body = {'messages': messages}
64 body=body).execute(num_retries=_PUBSUB_NUM_RETRIES)
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/html/page/
H A DReportPage.java78 body(doc.body());
101 private void body(final HTMLElement body) throws IOException { argument
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) throw argument
173 content(final HTMLElement body) argument
[all...]
/external/vboot_reference/tests/
H A Dvb2_firmware_tests.sh22 # Dummy firmware body
23 echo 'This is a test firmware body. This is only a test. Lalalalala' \
24 > body.test
49 --fv body.test \
56 ${BUILD_RUN}/tests/vb20_verify_fw gbb.test vblock.test body.test
/external/autotest/client/common_lib/cros/graphite/
H A Delasticsearch_mock_unittest.py17 self.es.index(index='blah', doc_type='blah blah', body='random')
32 self.es.search(index='index', body='query')
/external/mesa3d/src/glsl/
H A Dir_function_can_inline.cpp33 * (0) loop surrounding the function body.
66 v.run((exec_list *) &callee->body);
71 ir_instruction *last = (ir_instruction *)callee->body.get_tail();

Completed in 702 milliseconds

1234567891011>>