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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/news_a11y/
feed_iframe.css 7 body {
  /external/chromium_org/chrome/browser/resources/help/
help.css 6 body {
  /external/chromium_org/ui/base/ime/
infolist_entry.cc 10 const base::string16& body)
11 : title(title), body(body), highlighted(false) {}
14 return title == other.title && body == other.body &&
infolist_entry.h 16 base::string16 body; member in struct:ui::InfolistEntry
19 InfolistEntry(const base::string16& title, const base::string16& body);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/bullet/
scenes.js 17 var body = {};
18 body.shape = 'box';
19 body.position = {};
20 body.position.x = Math.random() * 30 - 15;
21 body.position.y = Math.random() * 50 + 10;
22 body.position.z = Math.random() * zwidth - (zwidth/2);
23 body.rotation = {};
24 body.rotation.x = ( Math.random() * 360 ) * Math.PI / 180;
25 body.rotation.y = ( Math.random() * 360 ) * Math.PI / 180;
26 body.rotation.z = ( Math.random() * 360 ) * Math.PI / 180
    [all...]
  /external/chromium_org/extensions/renderer/resources/
extension_fonts.css 9 body {
platform_app.css 11 body {
24 html, body {
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
RequestTest.java 30 Request.Body body = Request.Body.create(contentType, "abc".getBytes(Util.UTF_8)); local
31 assertEquals(contentType, body.contentType());
32 assertEquals(3, body.contentLength());
33 assertEquals("616263", bodyToHex(body));
34 assertEquals("Retransmit body", "616263", bodyToHex(body));
39 Request.Body body = Request.Body.create(contentType, "\u0800") local
47 Request.Body body = Request.Body.create(contentType, "\\u0800"); local
55 Request.Body body = Request.Body.create(contentType, "abc".getBytes(Util.UTF_8)); local
69 Request.Body body = Request.Body.create(contentType, file); local
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/mappy/
popup.css 7 body {
  /external/chromium_org/chrome/common/extensions/docs/examples/api/fontSettings/css/
uber_shared.css 5 body.uber-frame {
10 html[dir='rtl'] body.uber-frame {
18 body.uber-frame #extension-settings.page,
19 body.uber-frame #mainview-content .page,
20 body.uber-frame .subpage-sheet-container .page,
21 body.uber-frame > .page {
28 body.uber-frame header {
47 html[dir='rtl'] body.uber-frame header {
52 body.uber-frame header > .search-field-container,
53 body.uber-frame header > .header-extras
    [all...]
  /external/okhttp/okcurl/src/test/java/com/squareup/okhttp/curl/
MainTest.java 32 assertNull(request.body());
39 assertNull(request.body());
44 Request.Body body = request.body(); local
47 assertEquals("application/x-form-urlencoded; charset=utf-8", body.contentType().toString());
48 assertEquals("foo", bodyAsString(body));
53 Request.Body body = request.body(); local
63 Request.Body 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/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/chromium_org/third_party/tcmalloc/chromium/src/base/
googleinit.h 73 #define REGISTER_MODULE_INITIALIZER(name, body) \
75 static void google_init_module_##name () { body; } \
80 #define REGISTER_MODULE_DESTRUCTOR(name, body) \
82 static void google_destruct_module_##name () { body; } \
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
googleinit.h 58 #define REGISTER_MODULE_INITIALIZER(name, body) \
60 static void google_init_module_##name () { body; } \
65 #define REGISTER_MODULE_DESTRUCTOR(name, body) \
67 static void google_destruct_module_##name () { body; } \
  /external/chromium_org/chrome/browser/resources/uber/
uber_shared.css 5 body {
10 body.uber-frame {
14 html[dir='rtl'] body.uber-frame {
22 body #extension-settings.page,
23 body #mainview-content .page,
24 body .subpage-sheet-container .page,
25 body > .page {
32 body header {
53 body.uber-frame header {
57 html[dir='rtl'] body header
    [all...]
  /external/chromium_org/remoting/webapp/
message_window.css 6 body {
  /external/chromium_org/third_party/WebKit/ManualTests/inspector/resources/
script-error.js 1 var test = document.body;
  /external/chromium_org/third_party/WebKit/Source/core/css/
navigationTransitions.css 7 body {
  /external/chromium_org/third_party/google_appengine_cloudstorage/cloudstorage/
test_utils.py 20 def __init__(self, status, headers, body):
23 self.content = body
  /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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
RequestInit.cpp 32 v8::Local<v8::Value> body; local
33 if (!DictionaryHelper::get(options, "body", body) || body->IsUndefined() || body->IsNull())
37 if (body->IsArrayBuffer()) {
38 ArrayBuffer* arrayBuffer = V8ArrayBuffer::toImpl(v8::Handle<v8::Object>::Cast(body));
41 } else if (body->IsArrayBufferView()) {
42 ArrayBufferView* arrayBufferView = V8ArrayBufferView::toImpl(v8::Handle<v8::Object>::Cast(body));
45 } else if (V8Blob::hasInstance(body, isolate))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DockController.js 133 var body = document.body;
136 body.classList.remove("undocked");
137 body.classList.remove("dock-to-right");
138 body.classList.remove("dock-to-left");
139 body.classList.add("dock-to-bottom");
142 body.classList.remove("undocked");
143 body.classList.add("dock-to-right");
144 body.classList.remove("dock-to-left");
145 body.classList.remove("dock-to-bottom")
    [all...]
  /external/mockwebserver/src/main/java/com/google/mockwebserver/
MockResponse.java 40 /** 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) {
158 setHeader("Content-Length", body.length);
159 this.body = body
    [all...]
  /external/okhttp/mockwebserver/src/main/java/com/squareup/okhttp/mockwebserver/
MockResponse.java 36 /** The response body content, or null if {@code bodyStream} is set. */
37 private byte[] body; field in class:MockResponse
38 /** The response body content, or null if {@code body} is set. */
51 /** Creates a new mock response with an empty body. */
136 return body;
141 return bodyStream != null ? bodyStream : new ByteArrayInputStream(body);
144 public MockResponse setBody(byte[] body) {
145 setHeader("Content-Length", body.length);
146 this.body = body
    [all...]

Completed in 1571 milliseconds

1 2 3 4 5 6 7 8 91011>>