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

1 23 4 5 6 7 8 91011>>

  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
Message.java 49 public class Message extends Entity implements Body {
89 Body body = getBody(); local
90 if (body instanceof Multipart) {
91 Multipart mp = (Multipart) body;
94 body.writeTo(out);
173 * @see org.apache.james.mime4j.ContentHandler#body(org.apache.james.mime4j.BodyDescriptor, java.io.InputStream)
175 public void body(BodyDescriptor bd, InputStream is) throws IOException { method in class:Message.MessageBuilder
185 Body body = null; local
    [all...]
  /external/webkit/Source/WebCore/html/
PluginDocument.cpp 80 RefPtr<Element> body = document()->createElement(bodyTag, false); local
81 body->setAttribute(marginwidthAttr, "0");
82 body->setAttribute(marginheightAttr, "0");
83 body->setAttribute(bgcolorAttr, "rgb(38,38,38)");
85 rootElement->appendChild(body, ec);
103 body->appendChild(embedElement, ec);
  /external/flac/libFLAC/
ogg_helper.c 81 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, page->body_len, 0, 0, client_data) != FLAC__STREAM_ENCODER_WRITE_STATUS_OK)
    [all...]
  /external/webkit/LayoutTests/fast/events/touch/script-tests/
document-create-touch-list.js 14 var t = document.createTouch(window, document.body, 12341, 60, 65, 100, 105);
15 var t2 = document.createTouch(window, document.body, 12342, 50, 55, 115, 120);
21 document.body.addEventListener("touchstart", function handleTouchStart(ev) {
30 document.body.dispatchEvent(evt);
  /external/webkit/Source/WebCore/notifications/
NotificationCenter.idl 38 [V8Custom] Notification createNotification(in DOMString iconUrl, in DOMString title, in DOMString body) raises(Exception);
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/internet/
TextBody.java 19 import com.android.emailcommon.mail.Body;
30 public class TextBody implements Body {
33 public TextBody(String body) {
34 this.mBody = body;
43 * Get the text of the body in it's unencoded format.
51 * Returns an InputStream that reads this body's text in UTF-8 format.
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/
DelegatingFieldParser.java 43 public Field parse(final String name, final String body, final String raw) {
45 return parser.parse(name, body, raw);
ContentTypeField.java 75 protected ContentTypeField(String name, String body, String raw, String mimeType, Map<String, String> parameters, ParseException parseException) {
76 super(name, body, raw);
211 public Field parse(final String name, final String body, final String raw) {
216 ContentTypeParser parser = new ContentTypeParser(new StringReader(body));
222 log.debug("Parsing value '" + body + "': "+ e.getMessage());
228 log.debug("Parsing value '" + body + "': "+ e.getMessage());
256 return new ContentTypeField(name, body, raw, mimeType, parameters, parseException);
  /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/webkit/LayoutTests/fast/dom/Geolocation/script-tests/
notimer-after-unload.js 5 document.body.onload = function() {
9 document.body.onunload = function() {
  /frameworks/base/obex/javax/obex/
PrivateInputStream.java 142 * Allows the <code>OperationImpl</code> thread to add body data to the
144 * @param body the data to add to the stream
145 * @param start the start of the body to array to copy
147 public synchronized void writeBytes(byte[] body, int start) {
149 int length = (body.length - start) + (mData.length - mIndex);
153 System.arraycopy(body, start, temp, mData.length - mIndex, body.length - start);
  /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);
  /external/chromium/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/clang/test/CodeGenCXX/
for-range-temporaries.cpp 67 void body(const I &);
80 body(i);
85 body(i);
113 // CHECK: br i1 %[[CMP]], label %[[BODY:.*]], label %[[CLEANUP:.*]]
122 // CHECK: [[BODY]]:
  /external/oauth/core/src/main/java/net/oauth/client/
OAuthResponseMessage.java 70 String body = readBodyAsString(); local
71 if (body != null) {
72 addParameters(OAuth.decodeForm(body.trim()));
  /external/webkit/Tools/TestWebKitAPI/Tests/WebKit2/
CanHandleRequest.cpp 38 static void didReceiveMessageFromInjectedBundle(WKContextRef, WKStringRef messageName, WKTypeRef body, const void*)
43 TEST_ASSERT(WKGetTypeID(body) == WKBooleanGetTypeID());
44 canHandleRequest = WKBooleanGetValue(static_cast<WKBooleanRef>(body));
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
canonicalform07.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
93 var body;
121 bodyList = doc.getElementsByTagName("body");
122 body = bodyList.item(0);
123 child = body.firstChild;
126 child = body.insertBefore(text,child);
131 bodyList = doc.getElementsByTagName("body");
132 body = bodyList.item(0);
133 child = body.firstChild
    [all...]
elementcontentwhitespace01.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
97 var body;
112 bodyList = doc.getElementsByTagName("body");
113 body = bodyList.item(0);
114 child = body.firstChild;
123 child = body.insertBefore(text,child);
128 bodyList = doc.getElementsByTagName("body");
129 body = bodyList.item(0);
130 child = body.firstChild
    [all...]
elementcontentwhitespace03.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
93 var body;
114 bodyList = doc.getElementsByTagName("body");
115 body = bodyList.item(0);
116 child = body.firstChild;
119 child = body.insertBefore(text,child);
131 bodyList = doc.getElementsByTagName("body");
132 body = bodyList.item(0);
133 child = body.firstChild
    [all...]
infoset08.js 33 // raised when entering the body of the test.
69 // body of the test to be executed.
93 var body;
116 bodyList = doc.getElementsByTagName("body");
117 body = bodyList.item(0);
118 child = body.firstChild;
121 child = body.insertBefore(text,child);
126 bodyList = doc.getElementsByTagName("body");
127 body = bodyList.item(0);
128 child = body.firstChild
    [all...]
  /external/oauth/core/src/main/java/net/oauth/http/
HttpMessage.java 49 public HttpMessage(String method, URL url, InputStream body)
53 this.body = body;
59 protected InputStream body = null; field in class:HttpMessage
102 if (body == null) {
105 body = new ExcerptInputStream(raw);
108 return body;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
ConversionUtilities.java 31 * Values for HEADER_ANDROID_BODY_QUOTED_PART to tag body parts
58 * Copy body text (plain and/or HTML) from MimeMessage to provider Message
60 public static boolean updateBodyFields(EmailContent.Body body,
64 body.mMessageKey = localMessage.mId;
106 // Most of the time, just process regular body parts
114 // write the combined data to the body part
117 body.mTextContent = text;
122 body.mHtmlContent = text;
128 body.mHtmlReply = sbHtmlReply.toString()
    [all...]
  /external/webkit/LayoutTests/dom/html/level2/html/
HTMLBodyElement09.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
88 var body;
99 body = doc.body;
101 hasXML = body.isSupported("XML",version);
102 state = body.isSupported("xhTmL",version);
HTMLBodyElement10.js 33 // raised when entering the body of the test.
68 // body of the test to be executed.
88 var body;
98 body = doc.body;
100 hasXML = body.isSupported("XML",version);
101 state = body.isSupported("xhTmL",version);

Completed in 600 milliseconds

1 23 4 5 6 7 8 91011>>