HomeSort by relevance Sort by last modified time
    Searched refs:body (Results 176 - 200 of 3245) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/webkit/Source/WebKit/chromium/src/
WebDocument.cpp 94 WebElement WebDocument::body() const function in class:WebKit::WebDocument
96 return WebElement(constUnwrap<Document>()->body());
  /frameworks/base/core/java/com/google/android/mms/pdu/
RetrieveConf.java 49 * Constructor with given headers and body
52 * @param body Body of this PDu.
54 RetrieveConf(PduHeaders headers, PduBody body) {
55 super(headers, body);
  /packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastListItem.java 87 String body = message.getMessageBody(); local
89 SpannableStringBuilder buf = new SpannableStringBuilder(body);
101 // Speak the date first, then channel name, then message body
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/export/
ExportFieldsPart.java 33 public ExportFieldsPart(Composite body, FormToolkit toolkit, ExportEditor editor) {
34 super(body, toolkit, editor);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
OverviewInfoPart.java 38 public OverviewInfoPart(Composite body, FormToolkit toolkit, ManifestEditor editor) {
39 super(body, toolkit, editor,
  /system/core/sh/
nodes.h 74 union node *body; member in struct:nfor
90 union node *body; member in struct:nclist
  /external/v8/src/
debug-debugger.js 1003 body: { invocationText: this.exec_state_.frame(0).invocationText(),
1010 o.body.sourceLine = this.sourceLine(),
1011 o.body.sourceColumn = this.sourceColumn(),
1012 o.body.sourceLineText = this.sourceLineText(),
1013 o.body.script = MakeScriptObject_(script, false);
1018 o.body.breakpoints = [];
1030 o.body.breakpoints.push(number);
    [all...]
rewriter.cc 125 // Rewrite the body.
127 Visit(node->body());
342 ZoneList<Statement*>* body = function->body();
343 if (!body->is_empty()) {
347 processor.Process(body);
352 body->Add(new ReturnStatement(result_proxy));
  /external/javassist/src/main/javassist/
CtNewMethod.java 33 * The source code must include not only the method body
49 * The source code must include not only the method body
92 * @param body the source text of the method body.
102 String body, CtClass declaring)
106 body, declaring);
118 * @param body the source text of the method body.
129 String body, CtClass declaring)
137 cm.setBody(body);
    [all...]
  /external/javassist/src/main/javassist/compiler/
Parser.java 40 /* A method body is not parsed.
101 * Note that a method body is not parsed.
142 /* Parses a method body.
147 Stmnt body = null; local
151 body = parseBlock(tbl);
152 if (body == null)
153 body = new Stmnt(BLOCK);
156 md.sublist(4).setHead(body);
285 Stmnt body = null; local
290 body = (Stmnt)ASTList.concat(body, new Stmnt(BLOCK, s))
325 Stmnt body = parseStatement(tbl); local
333 Stmnt body = parseStatement(tbl); local
380 Stmnt body = parseStatement(tbl2); local
395 Stmnt body = parseSwitchBlock(tbl); local
413 Stmnt body = new Stmnt(BLOCK, s); local
461 Stmnt body = parseBlock(tbl); local
    [all...]
  /external/webkit/LayoutTests/fast/dom/TreeWalker/resources/
TreeWalker-currentNode.js 5 document.body.appendChild(subTree);
49 w.currentNode = document.body;
53 document.body.removeChild(subTree);
  /external/webkit/Source/WebCore/loader/
FormSubmission.cpp 66 String body = data.flattenToString(); local
70 body = decodeURLEscapeSequences(body.replace('&', "\r\n").replace('+', ' ') + "\r\n");
74 bodyData.append("body=", 5);
75 FormDataBuilder::encodeStringAsFormData(bodyData, body.utf8());
76 body = String(bodyData.data(), bodyData.size()).replace('+', "%20");
81 query.append(body);
  /external/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-handle.js 64 return response.body.handle;
116 var obj = response.body[handle_o];
134 obj = response.body[handle_p];
147 obj = response.body[handle_f];
158 assertEquals('string', response_name.body[ref].type);
159 assertEquals("f", response_name.body[ref].value);
165 assertEquals('number', response_length.body[ref].type);
166 assertEquals(1, response_length.body[ref].value);
189 var val = response.body[ref];
212 for (var handle in response.body) {
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLDocument19.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
112 doc.write("<body>");
114 doc.write("</body>");
118 doc.write("</body>");
HTMLDocument20.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
112 doc.writeln("<body>");
114 doc.writeln("</body>");
118 doc.writeln("</body>");
HTMLDocument21.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
116 doc.writeln("<body>");
118 doc.writeln("</body>");
127 doc.writeln("</body>");
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
HTMLDocument19.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
112 doc.write("<body>");
114 doc.write("</body>");
118 doc.write("</body>");
HTMLDocument20.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
112 doc.writeln("<body>");
114 doc.writeln("</body>");
118 doc.writeln("</body>");
HTMLDocument21.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
116 doc.writeln("<body>");
118 doc.writeln("</body>");
127 doc.writeln("</body>");
  /external/webkit/Source/WebKit/gtk/tests/
testdomdocument.c 29 #define HTML_DOCUMENT_TITLE "<html><head><title>This is the title</title></head><body></body></html>"
30 #define HTML_DOCUMENT_ELEMENTS "<html><body><ul><li>1</li><li>2</li><li>3</li></ul></body></html>"
31 #define HTML_DOCUMENT_ELEMENTS_CLASS "<html><body><div class=\"test\"></div><div class=\"strange\"></div><div class=\"test\"></div></body></html>"
32 #define HTML_DOCUMENT_ELEMENTS_ID "<html><body><div id=\"testok\"></div><div id=\"testbad\">first</div><div id=\"testbad\">second</div></body></html>"
33 #define HTML_DOCUMENT_LINKS "<html><head><title>Title</title></head><body><a href=\"about:blank\">blank</a><a href=\"http://www.google.com\">google</a><a href=\"http://www.webkit.org\">webkit</a></body></html>
208 WebKitDOMHTMLElement* body = webkit_dom_document_get_body(document); local
    [all...]
  /frameworks/base/obex/javax/obex/
ServerOperation.java 175 byte[] body = ObexHelper.updateHeaderSet(requestHeader, data);
177 if (body != null) {
208 if (body != null) {
209 mPrivateInput.writeBytes(body, 1);
351 * Determine if I can send the whole body or just part of
352 * the body. Remember that there is the 3 bytes for the
359 byte[] body = mPrivateOutput.readBytes(bodyLength);
364 * (End of Body) otherwise, we need to send 0x48 (Body)
375 out.write(body);
    [all...]
  /frameworks/base/core/java/android/provider/
Telephony.java 133 * The body of the message
136 public static final String BODY = "body";
212 * @param body the body of the message
220 Uri uri, String address, String body, String subject,
222 return addMessageToUri(resolver, uri, address, body, subject,
232 * @param body the body of the message
241 Uri uri, String address, String body, String subject
    [all...]
  /external/chromium/chrome/browser/history/
text_database_manager.cc 35 // haven't gotten a title and/or body.
67 if (bdy.empty()) // Make the body nonempty when we set it for EverybodySet.
205 // If this page was already indexed, we could have a body that came in
207 // current body, or have a special setter for only the title, but this is
211 // kExpirationSec yet we got a body in less than that time, since the
225 title, info.body());
234 const string16& body) {
253 url_row.title(), body);
261 info.title(), body);
266 info.set_body(body);
    [all...]
  /external/chromium/net/url_request/
url_request_job_tracker_unittest.cc 160 std::string body; local
161 ASSERT_TRUE(GetResponseBody(gurl, &body));
167 MemEq(body.data(), body.size()),
168 Eq(static_cast<int>(body.size()))));

Completed in 1518 milliseconds

1 2 3 4 5 6 78 91011>>