HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 226 - 250 of 3250) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/dom/xhtml/level3/core/
textiselementcontentwhitespace06.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
119 bodyList = doc.getElementsByTagName("body");
127 bodyList = doc.getElementsByTagName("body");
  /external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/
multiple-frames.js 37 document.body.appendChild(childFrame);
  /external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
callback-to-deleted-context.js 17 document.body.appendChild(iframe);
clear-watch-invalid-id-crash.js 9 document.body.onload = function() {
disconnected-frame-already.js 32 document.body.appendChild(iframe);
disconnected-frame.js 28 document.body.appendChild(iframe);
  /external/webkit/Source/WebCore/inspector/front-end/
ExtensionPanel.js 74 _addStyleRule: function(selector, body)
77 style.textContent = selector + " { " + body + " }";
  /external/webkit/Source/WebKit/chromium/src/
WebNotification.cpp 93 WebString WebNotification::body() const function in class:WebKit::WebNotification
96 return m_private->contents().body();
  /external/webkit/Source/WebKit2/Platform/CoreIPC/mac/
ConnectionMac.cpp 177 mach_msg_body_t* body = reinterpret_cast<mach_msg_body_t*>(header + 1); local
178 body->msgh_descriptor_count = numberOfPortDescriptors + numberOfOOLMemoryDescriptors;
180 uint8_t* descriptorData = reinterpret_cast<uint8_t*>(body + 1);
236 uint8_t* body = reinterpret_cast<uint8_t*>(header + 1); local
238 return adoptPtr(new ArgumentDecoder(body, bodySize));
243 mach_msg_body_t* body = reinterpret_cast<mach_msg_body_t*>(header + 1); local
244 mach_msg_size_t numDescriptors = body->msgh_descriptor_count;
249 uint8_t* descriptorData = reinterpret_cast<uint8_t*>(body + 1);
251 // If the message body was sent out-of-line, don't treat the last descriptor
252 // as an attachment, since it is really the message body
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_results_uploader.py 51 (content_type, body) ready for httplib.HTTP instance.
79 body = CRLF.join(lines)
81 return content_type, body
  /frameworks/base/core/java/com/google/android/mms/pdu/
SendReq.java 82 * Constructor with given headers and body
85 * @param body Body of this PDu.
87 SendReq(PduHeaders headers, PduBody body) {
88 super(headers, body);
  /frameworks/base/sax/java/android/sax/
RootElement.java 50 * public void end(String body) {
51 * System.out.println("Entry ID: " + body);
193 String body = bodyBuilder.toString(); local
197 current.endTextElementListener.end(body);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertDialog.java 88 * @param body the message body contents
92 public CellBroadcastAlertDialog(Context context, int titleId, CharSequence body,
99 setMessage(body);
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 38 * .text("<body>").cidImg("contetid@domain").text("</body>").build("</html");
40 * .text("<body>").uriImg(contentUri).text("</body>").build("</html");
72 * @param mimeType MIME type of body part
74 * @return MimeBodyPart object which body is null.
89 * @param text body text string
90 * @return MimeBodyPart object whose body is TextBody
157 * @return BodyPart whose body is intended Multipart.
170 * This builder object accepts Body and then can produce Message object
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportLinksPart.java 41 public ExportLinksPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
42 super(body, toolkit, Section.TWISTIE | Section.EXPANDED, true /* description */);
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp 503 String body = createMarkup(document); local
507 m_requestEntityBody = FormData::create(encoding.encode(body.characters(), body.length(), EntitiesForUnencodables));
515 void XMLHttpRequest::send(const String& body, ExceptionCode& ec)
520 if (!body.isNull() && m_method != "GET" && m_method != "HEAD" && m_url.protocolInHTTPFamily()) {
534 m_requestEntityBody = FormData::create(UTF8Encoding().encode(body.characters(), body.length(), EntitiesForUnencodables));
542 void XMLHttpRequest::send(Blob* body, ExceptionCode& ec)
551 if (body->isFile())
552 m_requestEntityBody->appendFile(static_cast<File*>(body)->path())
    [all...]
  /external/chromium/chrome/browser/resources/ntp4/
new_tab.css 9 /* It's necessary to put this here instead of in body in order to get the
14 body {
24 body,
  /external/chromium/chrome/browser/resources/
print_preview_animations.js 55 while (!el.classList.contains('scrollbar-inside') && el != document.body)
131 el = document.body;
168 if (insideEl == document.body)
195 document.body.appendChild(el);
253 document.body.classList.add('loaded');
260 if (document.querySelector('body > .sidebar'))
261 addTransientScrollbars(document.querySelector('body > .sidebar'));
263 addTransientScrollbars(document.body);
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 56 r.selectNode(document.body);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/gdocs/
chrome_ex_oauth.js 141 * "body" {String} A request body to send. Defaults to null.
148 var body = opt_params && opt_params['body'] || null;
154 ChromeExOAuth.sendRequest(method, signedUrl, headers, body, function (xhr) {
283 * @param {String} body Optional body content.
288 ChromeExOAuth.sendRequest = function(method, url, headers, body, callback) {
301 xhr.send(body);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/oauth_contacts/
chrome_ex_oauth.js 141 * "body" {String} A request body to send. Defaults to null.
148 var body = opt_params && opt_params['body'] || null;
154 ChromeExOAuth.sendRequest(method, signedUrl, headers, body, function (xhr) {
283 * @param {String} body Optional body content.
288 ChromeExOAuth.sendRequest = function(method, url, headers, body, callback) {
301 xhr.send(body);
  /external/chromium/chrome/common/extensions/docs/examples/extensions/wave/
chrome_ex_oauth.js 141 * "body" {String} A request body to send. Defaults to null.
148 var body = opt_params && opt_params['body'] || null;
154 ChromeExOAuth.sendRequest(method, signedUrl, headers, body, function (xhr) {
283 * @param {String} body Optional body content.
288 ChromeExOAuth.sendRequest = function(method, url, headers, body, callback) {
301 xhr.send(body);
  /external/chromium/chrome/common/extensions/docs/js/
bootstrap.js 24 // Hide body content initially to minimize flashing.
26 document.write('body { display:none!important; }');
  /external/dbus/dbus/
dbus-test.h 80 DBusString *body);
  /external/javassist/src/main/javassist/tools/rmi/
StubGenerator.java 207 CtMethod body; local
209 body = forwardStaticMethod;
211 body = forwardMethod;
218 body,

Completed in 188 milliseconds

1 2 3 4 5 6 7 8 91011>>