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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium-trace/trace-viewer/tracing/third_party/tvcm/third_party/rcssmin/tests/yui/
bug2527998.css 2 body {
charset-media.css 4 body {
6 body {
bug2527974.css 7 body {
bug2527974.css.min 1 /*! $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/
bug2527998.out.b 1 /*! special */body{
bug2527974.out.b 1 /*! $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/
app.py 5 body = 'user: %s' % environ['app.user']
7 body = body.encode('ascii')
8 return [body]
index.py 5 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/
list.py 5 body = 'user: %s' % environ.get('app.user')
7 body = body.encode('ascii')
8 return [body]
  /frameworks/base/sax/java/android/sax/
EndTextElementListener.java 25 * Invoked at the end of a text element with the body of the element.
27 * @param body of the element
29 void end(String body);
  /external/chromium-trace/trace-viewer/tracing/tracing/ui/extras/about_tracing/
common.css 6 body {
10 body {
17 body > x-profiling-view {
22 body > x-profiling-view > x-timeline-view:focus {
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/cowbell/
__init__.py 20 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...]
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/field/
UnstructuredField.java 34 protected UnstructuredField(String name, String body, String raw, String value) {
35 super(name, body, raw);
44 public Field parse(final String name, final String body, final String raw) {
45 final String value = DecoderUtil.decodeEncodedWords(body);
46 return new UnstructuredField(name, body, raw, value);
FieldParser.java 20 Field parse(final String name, final String body, final String raw);
Field.java 60 private final String body; field in class:Field
63 protected Field(final String name, final String body, final String raw) {
65 this.body = body;
101 String body = unfolded.substring(fieldMatcher.end()); local
102 if (body.length() > 0 && body.charAt(0) == ' ') {
103 body = body.substring(1);
106 return parser.parse(name, body, raw)
    [all...]
  /packages/services/Telephony/src/org/apache/james/mime4j/field/
UnstructuredField.java 34 protected UnstructuredField(String name, String body, String raw, String value) {
35 super(name, body, raw);
44 public Field parse(final String name, final String body, final String raw) {
45 final String value = DecoderUtil.decodeEncodedWords(body);
46 return new UnstructuredField(name, body, raw, value);
FieldParser.java 20 Field parse(final String name, final String body, final String raw);
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RequestTest.java 35 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); local
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"); local
45 assertEquals(MediaType.parse("text/plain; charset=utf-8"), body.contentType());
46 assertEquals(3, body.contentLength());
47 assertEquals("e0a080", bodyToHex(body));
52 RequestBody body = RequestBody.create(contentType, "\\u0800"); local
60 RequestBody body = RequestBody.create(contentType, "abc".getBytes(Util.UTF_8)); local
69 RequestBody body = RequestBody.create(contentType, ".abcd".getBytes(Util.UTF_8), 1, 3); local
83 RequestBody body = RequestBody.create(contentType, file); local
93 RequestBody body = RequestBody.create(contentType, "{}"); local
    [all...]
  /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-form-urlencoded; charset=utf-8", body.contentType().toString());
49 assertEquals("foo", bodyAsString(body));
54 RequestBody body = request.body(); local
57 assertEquals("application/x-form-urlencoded; charset=utf-8", body.contentType().toString());
58 assertEquals("foo", bodyAsString(body));
64 RequestBody body = request.body(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Perl5/examples/tweak/
T.g 23 : 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/
test_session.py 16 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 == b'fluff
    [all...]
  /external/jmonkeyengine/engine/src/bullet-native/
com_jme3_bullet_objects_PhysicsRigidBody.cpp 56 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->isInWorld()
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/
ExpressionSourceCode.h 26 const char *body)
30 body,
35 const char *body)
39 body,
61 const char *body,
65 m_body(body),
  /external/wpa_supplicant_8/hs20/server/www/
remediation.php 5 <body>
17 </body>
  /libcore/support/src/test/java/tests/http/
MockResponse.java 37 private byte[] body = EMPTY_BODY; field in class:MockResponse
92 return body;
95 public MockResponse setBody(byte[] body) {
96 if (this.body == EMPTY_BODY) {
99 this.headers.add("Content-Length: " + body.length);
100 this.body = body;
104 public MockResponse setBody(String body) {
106 return setBody(body.getBytes(ASCII));
112 public MockResponse setChunkedBody(byte[] body, int maxChunkSize) throws IOException
    [all...]

Completed in 435 milliseconds

1 2 3 4 5 6 7 8 91011>>