Searched refs:body (Results 76 - 100 of 1196) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/devtools/device/usb/
H A Dandroid_rsa.h21 const std::string& body);
/external/chromium_org/chrome/browser/extensions/
H A Dsettings_api_bubble_controller.cc170 base::string16 body; local
173 body = l10n_util::GetStringUTF16(
176 body += l10n_util::GetStringUTF16(
179 body += l10n_util::GetStringUTF16(
182 body += l10n_util::GetStringUTF16(
187 body = l10n_util::GetStringUTF16(
190 body += l10n_util::GetStringUTF16(
193 body += l10n_util::GetStringUTF16(
196 body += l10n_util::GetStringUTF16(
201 body
[all...]
/external/chromium_org/chrome/browser/resources/chromeos/first_run/
H A Dpreload.css14 body::after {
35 body::after {
/external/chromium_org/chrome/browser/resources/chromeos/login/
H A Ddemo_user_login.css7 body {
12 body {
/external/chromium_org/chrome/browser/resources/
H A Dcomponents.js53 var bodyContainer = $('body-container');
54 var body = document.body;
57 body.className = '';
79 body.className = 'show-tmi-mode-initial';
/external/chromium_org/chrome/test/ispy/client/
H A Dwait_on_ajax.js5 var target = document.body;
/external/chromium_org/content/public/common/
H A Dshow_desktop_notification_params.h25 base::string16 body; member in struct:content::ShowDesktopNotificationHostMsgParams
/external/chromium_org/content/shell/browser/
H A Dipc_echo_message_filter.h24 void OnEchoPing(int routing_id, int id, const std::string& body);
/external/chromium_org/mojo/examples/content_handler_demo/
H A Dcontent_handler_demo.cc47 void PrintResponse(ScopedDataPipeConsumerHandle body) const {
51 MojoResult result = ReadDataRaw(body.get(), buf, &num_bytes,
54 Wait(body.get(),
79 printf("ContentHandler::OnConnect - url:%s - body follows\n\n",
81 content_handler_app_->PrintResponse(response->body.Pass());
/external/chromium_org/native_client_sdk/src/build_tools/screenshot_extension/
H A Dinjected.js6 if (!document.body.getAttribute('screenshot_extension_injected')) {
7 document.body.setAttribute('screenshot_extension_injected', true);
/external/chromium_org/third_party/WebKit/PerformanceTests/Layout/Shapes/resources/
H A Dshapes.js65 document.body.appendChild(floatingObjects);
70 document.body.offsetTop;
74 document.body.offsetTop;
77 document.body.removeChild(floatingObjects);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderTableCellTest.cpp86 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
94 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
102 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
110 RenderTableCell* cell = toRenderTableCell(document().body()->firstChild()->firstChild()->firstChild()->firstChild()->renderer());
/external/chromium_org/third_party/jinja2/
H A Doptimizer.py46 body = node.body
48 body = node.else_
50 for node in body:
/external/chromium_org/third_party/libsrtp/srtp/include/
H A Drtp_priv.h56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon12831
/external/chromium_org/tools/telemetry/telemetry/web_components/
H A Dweb_component_bootstrap.js18 document.body.appendChild(g_results);
/external/chromium_org/ui/accessibility/extensions/caretbrowsing/
H A Doptions.js35 document.body.classList.add('mac');
37 document.body.classList.add('nonmac');
42 document.body.classList.add('cros');
44 document.body.classList.add('noncros');
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-references.js60 assertTrue(response.body instanceof Array);
62 assertEquals(count, response.body.length);
64 assertTrue(response.body.length > 0);
90 var handle = response.body.handle;
H A Ddebug-scripts-request.js83 assertTrue(response.body.length >= 1);
85 var script = response.body[0];
90 assertEquals(1, response.body.length);
91 assertEquals(script.id, response.body[0].id);
/external/clang/lib/ARCMigrate/
H A DTransUnusedInitDelegate.cpp44 void transformBody(Stmt *body, Decl *ParentD) { argument
45 Body = body;
46 collectRemovables(body, Removables);
47 TraverseStmt(body);
/external/libunwind/src/ia64/
H A Dlongjmp.S34 .body
/external/okhttp/samples/guide/src/main/java/com/squareup/okhttp/guide/
H A DPostExample.java16 byte[] body = bowlingJson("Jesse", "Jake").getBytes("UTF-8");
17 String result = post(new URL("http://www.roundsapp.com/post"), body);
21 String post(URL url, byte[] body) throws IOException { argument
29 out.write(body);
/external/srtp/include/
H A Drtp_priv.h56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon31211
/external/chromium_org/chrome/test/chromedriver/third_party/googlecode/
H A Dgooglecode_upload.py93 content_type, body = encode_upload_request(form_fields, file)
105 server.request('POST', upload_uri, body, headers)
117 """Encode the given fields and file into a multipart form body.
123 Returns: (content_type, body) ready for httplib.HTTP instance
128 body = []
132 body.extend(
145 body.extend(
155 # Finalize the form body
156 body.extend(['--' + BOUNDARY + '--', ''])
158 return 'multipart/form-data; boundary=%s' % BOUNDARY, CRLF.join(body)
[all...]
/external/chromium_org/chrome/browser/resources/sync_file_system_internals/
H A Ddump_database.js33 * Creates a table by filling |header| and |body|.
37 * @param {HTMLElement} body The table body element to be filled by this
45 function createDatabaseDumpTable(div, header, body, databaseDump) {
59 body.appendChild(tr);
74 var body = document.createElement('tbody');
75 createDatabaseDumpTable(div, header, body, databaseDump[i]);
77 table.appendChild(body);
/external/chromium_org/tools/code_coverage/
H A Dcroc_html.py85 # Create head and body elements
88 self.body = root.E('body')
151 def AddCaptionForFile(self, body, path):
155 body: Body elemement.
160 hdr = body.E('h2')
169 def AddCaptionForSubdir(self, body, path):
173 body: Body elemement.
177 hdr = body.E('h2')
295 body
[all...]

Completed in 1242 milliseconds

1234567891011>>