HomeSort by relevance Sort by last modified time
    Searched defs:Body (Results 1 - 6 of 6) sorted by null

  /packages/apps/Email/src/com/android/email/mail/
Body.java 23 public interface Body {
  /packages/apps/Email/src/org/apache/james/mime4j/message/
Body.java 26 * Encapsulates the body of an entity (see RFC 2045).
29 * @version $Id: Body.java,v 1.4 2004/10/04 15:36:43 ntherning Exp $
31 public interface Body {
34 * Gets the parent of this body.
41 * Sets the parent of this body.
48 * Writes this body to the given stream in MIME message format.
  /external/webkit/SunSpider/tests/sunspider-0.9/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
121 var body = this.bodies[i];
122 body.x += dt * body.vx
    [all...]
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
access-nbody.js 9 function Body(x,y,z,vx,vy,vz,mass){
19 Body.prototype.offsetMomentum = function(px,py,pz) {
27 return new Body(
39 return new Body(
51 return new Body(
63 return new Body(
75 return new Body(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, SOLAR_MASS);
121 var body = this.bodies[i];
122 body.x += dt * body.vx
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 23 import com.android.email.provider.EmailContent.Body;
343 * Returns null if the message has no body.
345 private Body loadBodyForMessageId(long messageId) {
349 EmailContent.Body.CONTENT_URI,
350 EmailContent.Body.CONTENT_PROJECTION,
351 EmailContent.Body.MESSAGE_KEY + "=?",
355 assertTrue("at most one body", numBodies < 2);
356 return c.moveToFirst() ? EmailContent.getContent(c, Body.class) : null;
373 // Test a simple message (saved with no body)
380 // Test a message saved with a body
566 Body body = loadBodyForMessageId(message2Id); local
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailContent.java 181 // Foreign key to the message corresponding to this body
187 // Replied-to or forwarded body (in html form)
189 // Replied-to or forwarded body (in text form)
199 public static final class Body extends EmailContent implements BodyColumns {
200 public static final String TABLE_NAME = "Body";
201 public static final Uri CONTENT_URI = Uri.parse(EmailContent.CONTENT_URI + "/body");
245 public Body() {
264 private static Body restoreBodyWithCursor(Cursor cursor) {
267 return getContent(cursor, Body.class);
276 public static Body restoreBodyWithId(Context context, long id)
    [all...]

Completed in 513 milliseconds