Searched defs:mBody (Results 1 - 14 of 14) sorted by relevance

/packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
H A DTextBody.java28 String mBody; field in class:TextBody
31 this.mBody = body;
36 byte[] bytes = mBody.getBytes("UTF-8");
46 return mBody;
53 byte[] b = mBody.getBytes("UTF-8");
H A DMimeBodyPart.java32 protected Body mBody; field in class:MimeBodyPart
81 return mBody;
86 this.mBody = body;
196 if (mBody != null) {
197 mBody.writeTo(out);
H A DMimeMessage.java68 private Body mBody; field in class:MimeMessage
135 mBody = null;
409 return mBody;
414 this.mBody = body;
539 if (mBody != null) {
540 mBody.writeTo(out);
/packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
H A DTextBody.java31 String mBody; field in class:TextBody
34 this.mBody = body;
39 byte[] bytes = mBody.getBytes("UTF-8");
48 return mBody;
57 byte[] b = mBody.getBytes("UTF-8");
H A DMimeBodyPart.java36 protected Body mBody; field in class:MimeBodyPart
85 return mBody;
90 this.mBody = body;
204 if (mBody != null) {
205 mBody.writeTo(out);
H A DMimeMessage.java68 private Body mBody; field in class:MimeMessage
135 mBody = null;
397 return mBody;
402 this.mBody = body;
529 if (mBody != null) {
530 mBody.writeTo(out);
/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DQuickResponseActivity.java97 String mBody; field in class:QuickResponseActivity.QueryThread
101 mBody = body;
107 mEventId, mBody);
/packages/apps/Email/tests/src/com/android/emailcommon/mail/
H A DMessageTestUtils.java174 private Body mBody; field in class:MessageTestUtils.MessageBuilder
189 mBody = body;
201 if (mBody == null) {
204 msg.setBody(mBody);
/packages/apps/Contacts/src/com/android/contacts/quickcontact/
H A DDataAction.java62 private CharSequence mBody; field in class:DataAction
107 mBody = item.buildDataStringForDisplay(context, kind);
260 return mBody;
332 if (!MoreContactUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) {
/packages/apps/Messaging/src/android/support/v7/mms/pdu/
H A DPduParser.java66 private PduBody mBody = null; field in class:PduParser
131 mBody = parseParts(mPduDataStream);
132 if (null == mBody) {
143 SendReq sendReq = new SendReq(mHeaders, mBody);
170 new RetrieveConf(mHeaders, mBody);
187 PduPart firstPart = mBody.getPart(0);
188 mBody.removeAll();
189 mBody.addPart(0, firstPart);
/packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
H A DPduParser.java88 private PduBody mBody = null; field in class:PduParser
153 mBody = parseParts(mPduDataStream);
154 if (null == mBody) {
165 SendReq sendReq = new SendReq(mHeaders, mBody);
192 new RetrieveConf(mHeaders, mBody);
212 PduPart firstPart = mBody.getPart(0);
213 mBody.removeAll();
214 mBody.addPart(0, firstPart);
/packages/apps/TV/src/com/android/tv/dvr/ui/browse/
H A DDetailsContentPresenter.java58 final TextView mBody; field in class:DetailsContentPresenter.ViewHolder
87 final int bodyLines = mBody.getLineCount();
106 int oldMaxLines = mBody.getMaxLines();
107 mBody.setMaxLines(bodyLines);
120 if (mBody.getMaxLines() != maxLines) {
121 mBody.setMaxLines(maxLines);
148 mBody = (TextView) view.findViewById(R.id.dvr_details_description_body);
182 mBodyFontMetricsInt = getFontMetricsInt(mBody);
208 return mBody;
291 vh.mBody
[all...]
/packages/experimental/DreamTheater/src/com/android/dreamtheater/
H A DBouncyDroid.java134 World.Body mBody; field in class:BouncyDroid.BouncyView
204 mBody = new World.Body(mass, new World.Vec(200,200));
205 mBody.r = RADIUS;
206 mWorld.addBody(mBody);
216 mBody.clearForces();
221 mBody.applyImpulse(new World.Vec(400000, -200000));
227 mBody.applyForce(new World.Vec(0, mass * World.GRAVITY));
238 mBody.v = mBody.v.add(newPos.sub(mBody
[all...]
/packages/apps/Messaging/src/com/android/messaging/sms/
H A DDatabaseMessages.java138 public String mBody; field in class:DatabaseMessages.SmsMessage
160 mBody = cursor.getString(INDEX_BODY);
224 mBody = in.readString();
255 out.writeString(mBody);

Completed in 360 milliseconds