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

1234567891011>>

/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
H A Dbug2527998.css2 body {
H A Dcharset-media.css4 body {
6 body {
H A Dbug2527974.css7 body {
H A Dbug2527974.css.min1 /*! $LastChangedRevision: 81 $ $LastChangedDate: 2009-05-27 17:41:02 +0100 (Wed, 27 May 2009) $ */body{yo:cats}ul[id$=foo] label:hover{yo:yo
/external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/out/
H A Dbug2527998.out.b1 /*! special */body{
H A Dbug2527974.out.b1 /*! $LastChangedRevision: 81 $ $LastChangedDate: 2009-05-27 17:41:02 +0100 (Wed, 27 May 2009) $ */body{yo:cats}ul[id$=foo] label:hover{yo:yo
/external/chromium-trace/trace-viewer/third_party/Paste/tests/urlparser_data/hook/
H A Dapp.py5 body = 'user: %s' % environ['app.user']
7 body = body.encode('ascii')
8 return [body]
H A Dindex.py5 body = 'index: %s' % environ['app.user']
7 body = body.encode('ascii')
8 return [body]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/urlparser_data/not_found/user/
H A Dlist.py5 body = 'user: %s' % environ.get('app.user')
7 body = body.encode('ascii')
8 return [body]
/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 ?>
/external/chromium-trace/trace-viewer/third_party/Paste/paste/cowbell/
H A D__init__.py20 body = []
27 return body.append
32 body.extend(app_iter)
33 body = ''.join(body)
34 body = insert_head(body, self.javascript.replace('__SCRIPT_NAME__', script_name))
35 body = insert_body(body, self.resources.replace('__SCRIPT_NAME__', script_name))
36 return [body]
[all...]
/external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/about_tracing/
H A Dcommon.css6 body {
10 body {
17 body > x-profiling-view {
22 body > x-profiling-view > x-timeline-view:focus {
/external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
H A DRequestTest.java35 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8));
36 assertEquals(contentType, body.contentType());
37 assertEquals(3, body.contentLength());
38 assertEquals("616263", bodyToHex(body));
39 assertEquals("Retransmit body", "616263", bodyToHex(body));
44 RequestBody body = RequestBody.create(contentType, "\u0800");
45 assertEquals(MediaType.parse("text/plain; charset=utf-8"), body.contentType());
46 assertEquals(3, body.contentLength());
47 assertEquals("e0a080", bodyToHex(body));
155 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-form-urlencoded; charset=utf-8", body.contentType().toString());
49 assertEquals("foo", bodyAsString(body));
54 RequestBody body = request.body();
57 assertEquals("application/x-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/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_session.py16 body = str(sess['info'])
18 body = body.encode('utf8')
19 return [body]
37 assert res.body == b'no-info'
39 assert res.body ==b'no-info'
43 assert res.body == b'test'
45 assert res.body == b'test'
52 assert res.body == b'fluff'
54 assert res.body
[all...]
H A Dtest_gzipper.py16 assert int(res.header('content-length')) == len(res.body)
17 assert res.body != b'this is a test'
18 actual = gzip.GzipFile(fileobj=six.BytesIO(res.body)).read()
/external/jmonkeyengine/engine/src/bullet-native/
H A Dcom_jme3_bullet_objects_PhysicsRigidBody.cpp56 btRigidBody* body = new btRigidBody(mass, motionState, shape, localInertia); local
57 body->setUserPointer(NULL);
58 return reinterpret_cast<jlong>(body);
68 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
69 if (body == NULL) {
74 return body->isInWorld();
84 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
85 if (body == NULL) {
90 // if (body->isStaticOrKinematicObject() || !body
109 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
134 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
159 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
175 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
191 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
207 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
229 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
245 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
261 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
277 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
293 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
309 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
329 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
349 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
365 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
383 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
399 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
415 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
431 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
447 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
463 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
479 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
495 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
511 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
527 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
545 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
561 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
579 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
599 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
617 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
635 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
655 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
673 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
689 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
706 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
722 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
738 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
754 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
770 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
786 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
802 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
818 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
834 btRigidBody* body = reinterpret_cast<btRigidBody*>(bodyId); local
[all...]
/external/lldb/include/lldb/Expression/
H A DExpressionSourceCode.h26 const char *body)
30 body,
35 const char *body)
39 body,
61 const char *body,
65 m_body(body),
25 CreateWrapped(const char *prefix, const char *body) argument
34 CreateUnwrapped(const char *name, const char *body) argument
59 ExpressionSourceCode(const char *name, const char *prefix, const char *body, bool wrap) argument
/external/wpa_supplicant_8/hs20/server/www/
H A Dremediation.php5 <body>
17 </body>
H A Dfree.php5 <body>
22 </body>
/external/chromium-trace/trace-viewer/perf_insights/third_party/cloudstorage/
H A Dtest_utils.py20 def __init__(self, status, headers, body):
23 self.content = body
/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/chromium-trace/trace-viewer/third_party/Paste/paste/debug/
H A Ddebugapp.py20 body = b"<html><body>simple</body></html>"
22 ('Content-Length', str(len(body)))])
23 return [body]
55 body = "<html><body>%d bytes</body></html>" % size
57 body = ('<html><body>\
[all...]

Completed in 688 milliseconds

1234567891011>>