Searched defs:message (Results 1 - 25 of 120) sorted by relevance

12345

/packages/apps/Tag/src/com/android/apps/tag/message/
H A DNdefMessageParser.java17 package com.android.apps.tag.message;
43 public static ParsedNdefMessage parse(NdefMessage message) { argument
44 return new ParsedNdefMessage(getRecords(message));
47 public static List<ParsedNdefRecord> getRecords(NdefMessage message) { argument
48 return getRecords(message.getRecords());
H A DParsedNdefMessage.java17 package com.android.apps.tag.message;
42 * Returns the list of parsed records on this message.
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
H A DBinaryBody.java20 package org.apache.james.mime4j.message;
H A DTextBody.java20 package org.apache.james.mime4j.message;
H A DAbstractBody.java20 package org.apache.james.mime4j.message;
34 * @see org.apache.james.mime4j.message.Body#getParent()
41 * @see org.apache.james.mime4j.message.Body#setParent(org.apache.james.mime4j.message.Entity)
H A DBodyPart.java20 package org.apache.james.mime4j.message;
36 * @see org.apache.james.mime4j.message.Entity#writeTo(java.io.OutputStream)
H A DBody.java20 package org.apache.james.mime4j.message;
48 * Writes this body to the given stream in MIME message format.
H A DMemoryBinaryBody.java20 package org.apache.james.mime4j.message;
66 * @see org.apache.james.mime4j.message.AbstractBody#getParent()
73 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
80 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
87 * @see org.apache.james.mime4j.message.Body#writeTo(java.io.OutputStream)
H A DMemoryTextBody.java20 package org.apache.james.mime4j.message;
71 * @see org.apache.james.mime4j.message.TextBody#getReader()
113 * @see org.apache.james.mime4j.message.Body#writeTo(java.io.OutputStream)
H A DTempFileBinaryBody.java20 package org.apache.james.mime4j.message;
65 * @see org.apache.james.mime4j.message.AbstractBody#getParent()
72 * @see org.apache.james.mime4j.message.AbstractBody#setParent(org.apache.james.mime4j.message.Entity)
79 * @see org.apache.james.mime4j.message.BinaryBody#getInputStream()
86 * @see org.apache.james.mime4j.message.Body#writeTo(java.io.OutputStream)
H A DTempFileTextBody.java20 package org.apache.james.mime4j.message;
70 * @see org.apache.james.mime4j.message.TextBody#getReader()
112 * @see org.apache.james.mime4j.message.Body#writeTo(java.io.OutputStream)
/packages/apps/Nfc/src/com/android/nfc/snep/
H A DSnepException.java21 public SnepException(String message) { argument
22 super(message);
29 public SnepException(String message, Exception cause) { argument
30 super(message, cause);
/packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
H A DAuthenticationFailedException.java23 public AuthenticationFailedException(String message) { argument
24 super(MessagingException.AUTHENTICATION_FAILED, message);
27 public AuthenticationFailedException(int exceptionType, String message) { argument
28 super(exceptionType, message);
31 public AuthenticationFailedException(String message, Throwable throwable) { argument
32 super(MessagingException.AUTHENTICATION_FAILED, message, throwable);
H A DCertificateValidationException.java23 public CertificateValidationException(String message) { argument
24 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message);
27 public CertificateValidationException(String message, Throwable throwable) { argument
28 super(MessagingException.CERTIFICATE_VALIDATION_ERROR, message, throwable);
/packages/apps/Email/emailcommon/src/org/apache/commons/io/
H A DIOExceptionWithCause.java38 * Constructs a new instance with the given message and cause.
40 * As specified in {@link Throwable}, the message in the given <code>cause</code> is not used in this instance's
41 * message.
44 * @param message
45 * the message (see {@link #getMessage()})
49 public IOExceptionWithCause(String message, Throwable cause) { argument
50 super(message);
57 * The message is set to <code>cause==null ? null : cause.toString()</code>, which by default contains the class
58 * and message of <code>cause</code>. This constructor is useful for call sites that just wrap another throwable.
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DSynchronizedHandler.java33 public void dispatchMessage(Message message) { argument
36 super.dispatchMessage(message);
/packages/apps/Mms/src/org/w3c/dom/events/
H A DEventException.java22 public EventException(short code, String message) { argument
23 super(message);
/packages/providers/DownloadProvider/src/com/android/providers/downloads/
H A DStopRequestException.java21 * Note the message passed to this exception will be logged and therefore must be guaranteed
28 public StopRequestException(int finalStatus, String message) { argument
29 super(message);
33 public StopRequestException(int finalStatus, String message, Throwable throwable) { argument
34 super(message, throwable);
/packages/apps/BasicSmsReceiver/src/com/android/basicsmsreceiver/
H A DSmsMessageReceiver.java43 SmsMessage message = SmsMessage.createFromPdu((byte[]) pdus[i]);
44 String fromAddress = message.getOriginatingAddress();
45 String messageBody = message.getMessageBody().toString();
47 Log.i(LOG_TAG, "From: " + fromAddress + " message: " + messageBody);
53 private void addNotification(Context context, String fromAddress, String message) { argument
57 .setTicker(message)
60 .setContentText(message)
62 .setContentIntent(createDisplayMessageIntent(context, fromAddress, message,
74 String message, int notificationId) {
81 di.putExtra(DialogSmsDisplay.SMS_MESSAGE_EXTRA, message);
73 createDisplayMessageIntent(Context context, String fromAddress, String message, int notificationId) argument
[all...]
/packages/inputmethods/LatinIME/tools/makedict/src/com/android/inputmethod/latin/
H A DMakedictLog.java24 private static void print(String message) { argument
25 System.out.println(message);
28 public static void d(String message) { argument
29 print(message);
31 public static void e(String message) { argument
32 print(message);
34 public static void i(String message) { argument
35 print(message);
37 public static void w(String message) { argument
38 print(message);
[all...]
/packages/providers/ContactsProvider/tests/src/com/android/providers/contacts/
H A DEvenMoreAsserts.java32 public static <T extends Exception> void assertThrows(String message, Class<T> exception, argument
42 caught +" thrown.", message));
48 message));
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
H A DCellBroadcastAlertService.java74 // create message from first PDU
75 SmsCbMessage message = SmsCbMessage.createFromPdu((byte[]) pdus[0]);
76 if (message == null) {
81 // append message bodies from any additional PDUs (GSM only)
85 message.appendToBody(nextPage.getMessageBody());
92 final CellBroadcastMessage cbm = new CellBroadcastMessage(message);
139 * This allows us to enable an entire range of message identifiers in the
140 * radio and not have to explicitly disable the message identifiers for
145 * @param message the message t
148 isMessageEnabledByUser(CellBroadcastMessage message) argument
179 addToNotificationBar(CellBroadcastMessage message) argument
214 createDisplayMessageIntent(Context context, CellBroadcastMessage message, int notificationId) argument
[all...]
H A DCellBroadcastListItem.java65 mMessageView = (TextView) findViewById(R.id.message);
70 * @param message the message contents to bind
72 public void bind(CellBroadcastMessage message) { argument
73 mCbMessage = message;
75 Drawable background = message.isRead() ?
81 mChannelView.setText(message.getDialogTitleResource());
82 mDateView.setText(message.getDateString(getContext()));
83 mMessageView.setText(formatMessage(message));
86 private static CharSequence formatMessage(CellBroadcastMessage message) { argument
[all...]
/packages/apps/Contacts/tests/src/com/android/contacts/
H A DContactsUtilsTests.java160 private void assertCollapses(String message, boolean expected, CharSequence mimetype1, argument
162 assertEquals(message, expected,
164 assertEquals(message, expected,
175 assertEquals(message, expected,
178 assertEquals(message, expected,
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/address/parser/
H A DParseException.java39 * print the error message in the form:
69 public ParseException(String message) { argument
70 super(message);
106 * error message and returns it. If this object has been created
109 * of the final stack trace, and hence the correct error message

Completed in 412 milliseconds

12345