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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/browser/resources/
about_credits.js 25 document.body.onload = function () {
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/fx/
content.js 48 if ((window == window.top) && document.body && !document.body.onresize) {
49 document.body.onresize = function(event) {
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
commitmessage.py 47 def body(self, lstrip=False): member in class:CommitMessage
  /external/chromium_org/third_party/angle/src/compiler/translator/
ForLoopUnroll.cpp 52 TIntermNode *body = node->getBody(); local
53 if (body != NULL)
56 body->traverse(this);
  /external/chromium_org/ui/base/ime/
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/chrome/test/chromedriver/server/
http_handler_unittest.cc 44 request.data = "body";
72 base::DictionaryValue body; local
73 body.SetInteger("status", kOk);
74 body.SetInteger("value", 1);
75 body.SetString("sessionId", "session_id");
77 base::JSONWriter::Write(&body, &json);
78 ASSERT_EQ(json, response.body());
117 base::DictionaryValue body; local
118 body.SetInteger("status", kOk);
119 body.SetInteger("value", 1)
    [all...]
  /external/chromium_org/content/public/common/
show_desktop_notification_params.h 25 base::string16 body; member in struct:content::ShowDesktopNotificationHostMsgParams
  /external/chromium_org/v8/test/mjsunit/regress/
regress-1081309.js 53 ParsedResponse.prototype.body = function() {
54 return this.response_.body;
78 var backtrace = response.body();
  /external/smack/src/com/kenai/jbosh/
BOSHMessageEvent.java 36 private final AbstractBody body; field in class:BOSHMessageEvent
42 * @param cBody message body
50 "message body may not be null"));
52 body = cBody;
60 * @param body message body
65 final AbstractBody body) {
66 return new BOSHMessageEvent(source, body);
74 * @param body message body
    [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/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...]
RecordedResponse.java 33 public final String body; field in class:RecordedResponse
36 RecordedResponse(Request request, Response response, String body, Failure failure) {
39 this.body = body;
61 assertEquals(expectedBody, body);
82 assertNull(redirectedBy.body());
  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/message/
Entity.java 30 * MIME entity. An entity has a header and a body (see RFC 2045).
37 private Body body = null; field in class:Entity
79 * Gets the body of this entity.
81 * @return the body,
83 public Body getBody() {
84 return body;
88 * Sets the body of this entity.
90 * @param body the body
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportPropertiesPage.java 65 Composite body = form.getBody(); local
68 body.setLayout(new ColumnLayout());
70 mFieldsPart = new ExportFieldsPart(body, toolkit, mEditor);
74 mLinksPart = new ExportLinksPart(body, toolkit, mEditor);
  /development/tutorials/NotepadCodeLab/Notepadv2Solution/src/com/android/demo/notepad2/
NoteEdit.java 39 mBodyText = (EditText) findViewById(R.id.body);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local
53 if (body != null) {
54 mBodyText.setText(body);
  /development/tutorials/NotepadCodeLab/Notepadv3/src/com/android/demo/notepad3/
NoteEdit.java 39 mBodyText = (EditText) findViewById(R.id.body);
47 String body = extras.getString(NotesDbAdapter.KEY_BODY); local
53 if (body != null) {
54 mBodyText.setText(body);
  /external/chromium_org/chrome/browser/chromeos/login/
eula_browsertest.cc 102 std::string body; local
105 "window.domAutomationController.send(document.body.textContent)",
106 &body));
107 EXPECT_NE(std::string(), body); local
  /external/chromium_org/content/renderer/npapi/
webplugin_impl_unittest.cc 30 const WebHTTPBody& body = request.httpBody(); local
31 if (body.isNull())
37 while (body.elementAt(i++, element)) {
96 EXPECT_EQ("body", GetBodyText(request));
126 // Test a simple case with headers and no body
140 // Test a simple case with headers and no body
151 // Test with headers and no body
179 EXPECT_EQ("body", GetBodyText(request));
192 EXPECT_EQ("body", GetBodyText(request));
205 EXPECT_EQ("body\r\n\r\nbody2", GetBodyText(request))
224 std::string body = GetBodyText(request); local
    [all...]
  /external/chromium_org/net/server/
http_server_response_info.cc 29 const std::string& body) {
31 response.SetBody(body, "text/html");
40 void HttpServerResponseInfo::SetBody(const std::string& body,
43 body_ = body;
45 base::StringPrintf("%" PRIuS, body.length()));
63 const std::string& HttpServerResponseInfo::body() const { function in class:net::HttpServerResponseInfo
  /external/chromium_org/third_party/WebKit/Source/core/dom/
TreeScopeTest.cpp 54 RefPtrWillBeRawPtr<Element> body = document->createElement("body", nullAtom, ASSERT_NO_EXCEPTION); local
55 html->appendChild(body);
58 RefPtrWillBeRawPtr<ShadowRoot> shadowRootB = body->createShadowRoot(ASSERT_NO_EXCEPTION);
77 RefPtrWillBeRawPtr<Element> body = document->createElement("body", nullAtom, ASSERT_NO_EXCEPTION); local
78 html->appendChild(body);
81 RefPtrWillBeRawPtr<ShadowRoot> shadowRootB = body->createShadowRoot(ASSERT_NO_EXCEPTION);
  /external/chromium_org/third_party/WebKit/Source/platform/network/
HTTPRequest.h 58 const Vector<unsigned char>& body() const { return m_body; } function in class:WebCore::HTTPRequest
  /external/chromium_org/third_party/libsrtp/srtp/include/
rtp_priv.h 56 char body[RTP_MAX_BUF_LEN]; member in struct:__anon16475
  /external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 92 const char *body = source.find("COMP\n"); local
95 read_header({ source.begin(), body }, m);
96 read_body(body, m);
  /external/chromium_org/v8/test/mjsunit/
debug-backtrace.js 67 ParsedResponse.prototype.body = function() {
68 return this.response_.body;
105 backtrace = response.body();
128 backtrace = response.body();
146 backtrace = response.body();
163 frame = response.body();
178 frame = response.body();
192 frame = response.body();
203 frame = response.body();
211 source = response.body();
    [all...]
debug-return-value.js 49 ParsedResponse.prototype.body = function() {
50 return this.response_.body;
117 frames = response.body().frames;

Completed in 420 milliseconds

1 2 3 4 5 6 7 8 91011>>