Searched refs:body (Results 126 - 150 of 1196) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/common/extensions/docs/examples/howto/sandbox/
H A Deventpage.js19 body: 'HTML Received for "' + event.data.name + '": `' +
/external/chromium_org/chrome/renderer/resources/extensions/
H A Dtag_watcher.js6 if (!document.body)
15 findChildTags(document.body);
/external/chromium_org/content/browser/resources/accessibility/
H A Daccessibility.css7 body {
/external/chromium_org/content/public/browser/
H A Ddevtools_protocol_constants_generator.py122 body = ""
123 body += "".join(indent + format_string.format(key, value)
125 body += "".join(FormatNamespace(key, value, indent, format_string)
127 return body
132 body = '\n' + indent + "namespace " + title + " {\n"
133 body += FormatContents(tree, indent + " ", format_string)
134 body += indent + "} // " + title + "\n"
135 return body
/external/chromium_org/content/shell/renderer/
H A Dshell_render_view_observer.cc53 void ShellRenderViewObserver::OnEchoPong(int id, const std::string& body) { argument
54 ipc_echo_->DidRespondEcho(id, body.size());
/external/chromium_org/net/server/
H A Dhttp_server_response_info_unittest.cc26 ASSERT_EQ(std::string(), response.body());
27 response.SetBody("body", "type");
28 ASSERT_EQ("body", response.body());
/external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/
H A Die.css11 body { text-align: center; }
/external/chromium_org/third_party/WebKit/Source/core/editing/
H A DFrameSelectionTest.cpp50 m_document->body()->appendChild(m_textNode.get());
81 RefPtrWillBeRawPtr<Element> body = documentWithoutFrame->createElement(HTMLNames::bodyTag, false); local
82 documentWithoutFrame->appendChild(body);
84 body->appendChild(anotherText);
106 document().body()->removeChild(textNode());
118 document().body()->setContentEditable("true", ASSERT_NO_EXCEPTION);
119 document().body()->focus();
120 EXPECT_TRUE(document().body()->focused());
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-evaluate-bool-constructor.js55 assertEquals('object', response.body.type);
56 assertEquals('Object', response.body.className);
H A Ddebug-stepout-scope-part3.js75 var body = with_bodies[j];
76 eval(pre + body);
H A Ddebug-stepout-scope-part4.js77 var body = bodies[j];
78 eval(pre + body);
H A Ddebug-stepout-scope-part6.js76 var body = bodies[j];
77 eval("'use strict'; " + pre + body);
H A Ddebug-stepout-scope-part7.js76 var body = bodies[j];
77 Function(pre + body)();
/external/flac/libFLAC/
H A Dogg_helper.c81 page->body = 0;
89 if(page->body)
90 free(page->body);
103 FLAC__ASSERT(page->body == 0);
157 /* allocate space for the page body */
158 if(0 == (page->body = (unsigned char *)safe_malloc_(page->body_len))) {
163 /* read in the page body */
164 if(!full_read_(encoder, page->body, page->body_len, read_callback, client_data))
184 FLAC__ASSERT(page->body != 0);
203 if(write_callback((FLAC__StreamEncoder*)encoder, page->body, pag
[all...]
/external/wpa_supplicant_8/hs20/server/www/
H A Dsignup.php5 <body>
45 </body>
/external/chromium_org/chrome/browser/chromeos/ui/
H A Daccessibility_focus_ring.h28 // rectangles defining a top line, a body, and a bottom line, which are
86 const gfx::Rect& body,
/external/chromium_org/chrome/browser/notifications/
H A Dnotification.cc10 const base::string16& body,
18 body,
33 const base::string16& body,
44 body,
7 Notification(const GURL& origin_url, const GURL& icon_url, const base::string16& title, const base::string16& body, blink::WebTextDirection dir, const base::string16& display_source, const base::string16& replace_id, NotificationDelegate* delegate) argument
29 Notification( message_center::NotificationType type, const GURL& origin_url, const base::string16& title, const base::string16& body, const gfx::Image& icon, blink::WebTextDirection dir, const message_center::NotifierId& notifier_id, const base::string16& display_source, const base::string16& replace_id, const message_center::RichNotificationData& rich_notification_data, NotificationDelegate* delegate) argument
/external/chromium_org/chrome/common/extensions/docs/examples/api/notifications/
H A Dbackground.js16 body: 'Time to make the toast.'
/external/chromium_org/components/proximity_auth/
H A Dwire_message.cc14 // [ message version ] [ body length ] [ JSON body ]
15 // 1 byte 2 bytes body length
16 // The JSON body contains two fields: an optional permit_id field and a required
89 base::DictionaryValue* body; local
90 bool success = body_value->GetAsDictionary(&body);
96 body->GetString(kPermitIdKey, &permit_id);
99 if (!body->GetString(kPayloadKey, &payload_base64) ||
/external/chromium_org/content/browser/frame_host/
H A Dnavigation_request.h30 // NavigationRequest. After calling this function, |body| can no longer be
32 void BeginNavigation(scoped_refptr<ResourceRequestBody> body);
/external/chromium_org/content/browser/loader/
H A Dupload_data_stream_builder.h33 // Creates a new UploadDataStream from this request body.
35 // If |body| contains any blob references, the caller is responsible for
44 ResourceRequestBody* body,
/external/chromium_org/content/common/
H A Ddesktop_notification_messages.h17 IPC_STRUCT_TRAITS_MEMBER(body)
/external/chromium_org/mojo/examples/wget/
H A Dwget.cc27 PrintResponseBody(response->body.Pass());
42 void PrintResponseBody(ScopedDataPipeConsumerHandle body) const {
43 // Read response body in blocking fashion.
49 MojoResult result = ReadDataRaw(body.get(), buf, &num_bytes,
52 Wait(body.get(),
/external/chromium_org/net/quic/
H A Dquic_in_memory_cache.h35 REGULAR_RESPONSE, // Send the headers and body like a server should.
40 // Container for response header/body pairs.
48 const base::StringPiece body() const { return base::StringPiece(body_); } function in class:net::QuicInMemoryCache::Response
56 void set_body(base::StringPiece body) { argument
57 body.CopyToString(&body_);
76 // only contain the "content-length" header with the length of |body|.
81 base::StringPiece body);
/external/chromium_org/net/tools/quic/
H A Dquic_in_memory_cache.h36 REGULAR_RESPONSE, // Send the headers and body like a server should.
41 // Container for response header/body pairs.
49 const base::StringPiece body() const { return base::StringPiece(body_); } function in class:net::tools::QuicInMemoryCache::Response
57 void set_body(base::StringPiece body) { argument
58 body.CopyToString(&body_);
77 // only contain the "content-length" header with the lenght of |body|.
83 base::StringPiece body);

Completed in 480 milliseconds

1234567891011>>