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

1 2 3

  /development/samples/training/multiscreen/newsreader/src/com/example/android/newsreader/
NewsArticle.java 33 String mHeadline, mBody;
51 mBody = sb.toString();
61 return mBody;
  /packages/apps/Dialer/java/com/android/voicemail/impl/mail/internet/
TextBody.java 28 String mBody;
31 this.mBody = body;
36 byte[] bytes = mBody.getBytes("UTF-8");
46 return mBody;
53 byte[] b = mBody.getBytes("UTF-8");
MimeBodyPart.java 32 protected Body mBody;
81 return mBody;
86 this.mBody = body;
196 if (mBody != null) {
197 mBody.writeTo(out);
MimeMessage.java 66 private Body mBody;
133 mBody = null;
385 return mBody;
390 this.mBody = body;
515 if (mBody != null) {
516 mBody.writeTo(out);
  /packages/apps/UnifiedEmail/src/com/android/emailcommon/internet/
TextBody.java 31 String mBody;
34 this.mBody = body;
39 byte[] bytes = mBody.getBytes("UTF-8");
48 return mBody;
57 byte[] b = mBody.getBytes("UTF-8");
MimeBodyPart.java 36 protected Body mBody;
85 return mBody;
90 this.mBody = body;
204 if (mBody != null) {
205 mBody.writeTo(out);
  /developers/build/prebuilts/gradle/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 40 private String mBody;
97 * text. {@link #mBody} and {@link #mContactId} are modified accordingly.
105 mBody = intent.getStringExtra(Intent.EXTRA_TEXT);
120 mTextMessageBody.setText(mBody);
148 getString(R.string.message_sent, mBody, Contact.byId(mContactId).getName()),
  /developers/samples/android/content/DirectShare/Application/src/main/java/com/example/android/directshare/
SendMessageActivity.java 40 private String mBody;
97 * text. {@link #mBody} and {@link #mContactId} are modified accordingly.
105 mBody = intent.getStringExtra(Intent.EXTRA_TEXT);
120 mTextMessageBody.setText(mBody);
148 getString(R.string.message_sent, mBody, Contact.byId(mContactId).getName()),
  /development/samples/browseable/DirectShare/src/com.example.android.directshare/
SendMessageActivity.java 40 private String mBody;
97 * text. {@link #mBody} and {@link #mContactId} are modified accordingly.
105 mBody = intent.getStringExtra(Intent.EXTRA_TEXT);
120 mTextMessageBody.setText(mBody);
148 getString(R.string.message_sent, mBody, Contact.byId(mContactId).getName()),
  /packages/apps/Calendar/src/com/android/calendar/alerts/
QuickResponseActivity.java 97 String mBody;
101 mBody = body;
107 mEventId, mBody);
  /frameworks/base/core/tests/coretests/src/android/widget/focus/
ListWithMailMessages.java 73 private String mBody;
84 mBody = body;
97 return mBody;
101 this.mBody = body;
  /packages/apps/Email/tests/src/com/android/emailcommon/mail/
MessageTestUtils.java 174 private Body mBody;
189 mBody = body;
201 if (mBody == null) {
204 msg.setBody(mBody);
  /tools/tradefederation/core/src/com/android/tradefed/util/
IEmail.java 56 private String mBody = null;
106 mBody = body;
137 return mBody;
  /frameworks/base/packages/Osu/src/com/android/hotspot2/utils/
HTTPRequest.java 29 private final byte[] mBody;
37 mBody = payload != null ? payload.getBytes(charset) : null;
55 mHeaderFields.put(ContentLengthHeader, Integer.toString(mBody.length));
218 if (mBody != null) {
219 sb2.append(new String(mBody, StandardCharsets.ISO_8859_1));
229 if (mBody != null) {
230 out.write(mBody);
242 return mBody != null ? new ByteArrayInputStream(mBody) : null;
247 return mBody != null ? ByteBuffer.wrap(mBody) : null
    [all...]
HTTPResponse.java 24 private final ByteBuffer mBody;
63 mBody = ByteBuffer.wrap(input, body, expected - body);
128 return new ByteArrayInputStream(mBody.array(), mBody.position(),
129 mBody.limit() - mBody.position());
134 return mBody.duplicate();
139 byte[] data = new byte[mBody.remaining()];
140 mBody.duplicate().get(data);
159 sb.append(new String(mBody.array(), mBody.position()
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/
SmsCbMessage.java 130 private final String mBody;
153 mBody = body;
167 mBody = in.readString();
203 dest.writeString(mBody);
292 return mBody;
368 + mServiceCategory + ", language=" + mLanguage + ", body=" + mBody
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
AbstractDetailsDescriptionPresenter.java 42 final TextView mBody;
60 mBody = (TextView) view.findViewById(R.id.lb_details_description_body);
86 mBodyFontMetricsInt = getFontMetricsInt(mBody);
112 if (mBody.getMaxLines() != maxLines) {
113 mBody.setMaxLines(maxLines);
140 return mBody;
189 if (TextUtils.isEmpty(vh.mBody.getText())) {
190 vh.mBody.setVisibility(View.GONE);
192 vh.mBody.setVisibility(View.VISIBLE);
193 vh.mBody.setLineSpacing(vh.mBodyLineSpacing - vh.mBody.getLineHeight(
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/quickcontact/
DataAction.java 62 private CharSequence mBody;
107 mBody = item.buildDataStringForDisplay(context, kind);
260 return mBody;
332 if (!MoreContactUtils.shouldCollapse(mMimeType, mBody, that.mMimeType, that.mBody)) {
  /packages/apps/TV/src/com/android/tv/dvr/ui/
DetailsContentPresenter.java 55 final TextView mBody;
84 final int bodyLines = mBody.getLineCount();
97 mBody.setMaxLines(bodyLines);
104 if (mBody.getMaxLines() != maxLines) {
105 mBody.setMaxLines(maxLines);
118 mBody = (TextView) view.findViewById(R.id.dvr_details_description_body);
147 mBodyFontMetricsInt = getFontMetricsInt(mBody);
173 return mBody;
256 vh.mBody.setVisibility(View.GONE);
258 vh.mBody.setText(detailsContent.getDescription())
    [all...]
  /frameworks/base/tests/CoreTests/android/core/
RequestAPITest.java 465 String mBody = TestWebData.postContent;
466 int bodyLength = mBody.length();
468 Log.v(LOGTAG, "testPostWithData: body " + mBody);
470 InputStream bodyProvider = new ByteArrayInputStream(mBody.getBytes());
  /packages/experimental/DreamTheater/src/com/android/dreamtheater/
BouncyDroid.java 134 World.Body mBody;
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.p).mul(dt))
    [all...]
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduParser.java 69 private PduBody mBody = null;
134 mBody = parseParts(mPduDataStream);
135 if (null == mBody) {
146 SendReq sendReq = new SendReq(mHeaders, mBody);
173 new RetrieveConf(mHeaders, mBody);
190 PduPart firstPart = mBody.getPart(0);
191 mBody.removeAll();
192 mBody.addPart(0, firstPart);
    [all...]
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduParser.java 66 private PduBody mBody = null;
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);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduParser.java 88 private PduBody mBody = null;
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);
    [all...]
  /packages/apps/Messaging/src/com/android/messaging/sms/
DatabaseMessages.java 138 public String mBody;
160 mBody = cursor.getString(INDEX_BODY);
224 mBody = in.readString();
255 out.writeString(mBody);
    [all...]

Completed in 556 milliseconds

1 2 3