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

  /cts/tests/tests/content/src/android/content/res/cts/
Resources_NotFoundExceptionTest.java 63 final String MESSAGE = "test";
65 ne = new NotFoundException(MESSAGE);
70 assertEquals(MESSAGE, e.getMessage());
  /external/nist-sip/java/javax/sip/message/
Request.java 1 package javax.sip.message;
6 public interface Request extends Message {
15 String MESSAGE = "MESSAGE";
  /packages/apps/Mms/tests/src/com/android/mms/
InterceptSendSms.java 52 private static String MESSAGE = "This is a test message of intercepting a SMS";
92 mTextEditor.setText(MESSAGE);
112 // Send the sms message
124 * app when the app is about to send a SMS message. We pretend to be an app that
126 * the message app doesn't actually send the message.
138 assertEquals(msgText, MESSAGE);
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
MessageDigest2Test.java 52 private static final String MESSAGE = "abc";
257 sha.update(MESSAGE.getBytes());
Signature2Test.java 50 private static final String MESSAGE = "abc";
454 sig.update(MESSAGE.getBytes());
485 byte[] bytes = MESSAGE.getBytes();
490 sig2.update(MESSAGE.getBytes());
508 byte[] bytes = MESSAGE.getBytes();
552 sig.update(MESSAGE.getBytes()[0]);
604 sig.update(MESSAGE.getBytes());
608 sig.update(MESSAGE.getBytes());
624 sig.update(MESSAGE.getBytes());
628 sig.update(MESSAGE.getBytes())
    [all...]
  /cts/tests/tests/app/src/android/app/cts/
ProgressDialogTest.java 43 private final CharSequence MESSAGE = "message";
132 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE);
143 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, false);
151 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true);
171 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false);
184 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, true);
213 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false, cL);
225 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, true, cL);
255 mProgressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE);
    [all...]
  /external/nist-sip/java/gov/nist/javax/sip/parser/
TokenNames.java 27 import javax.sip.message.Request;
52 public static final String MESSAGE = Request.MESSAGE;
TokenTypes.java 113 public static final int MESSAGE = START + 70;
  /external/protobuf/java/src/main/java/com/google/protobuf/
WireFormat.java 35 * message implementations. It is public only because those generated messages
86 MESSAGE(null);
119 GROUP (JavaType.MESSAGE , WIRETYPE_START_GROUP ) {
122 MESSAGE (JavaType.MESSAGE , WIRETYPE_LENGTH_DELIMITED) {
Descriptors.java 43 * Contains a collection of classes which describe protocol message types.
45 * Every message type has a {@link Descriptor}, which lists all
46 * its fields and other information about a type. You can get a message
48 * (given a message object of the type) {@code message.getDescriptorForType()}.
60 /** Convert the descriptor to its protocol message representation. */
76 /** Get a list of top-level message types declared in this file. */
102 * Find a message type in the file by name. Does not find nested types.
105 * @return The message type's descriptor, or {@code null} if not found.
175 * inside message types
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/
Alarm.java 114 * Message to show when alarm triggers
118 public static final String MESSAGE = "message";
137 ENABLED, VIBRATE, MESSAGE, ALERT };
  /packages/apps/Email/src/com/android/email/mail/store/imap/
ImapResponseParser.java 74 public static final String MESSAGE = "Received BYE";
76 super(MESSAGE);
101 final String message = "End of stream reached"; local
103 Log.d(Email.LOG_TAG, message);
105 return new IOException(message);
180 Log.w(Email.LOG_TAG, ByeException.MESSAGE);
194 // However, we don't want to read too much, because then it may get into an email message.
  /external/nist-sip/java/gov/nist/javax/sip/message/
SIPRequest.java 29 package gov.nist.javax.sip.message;
41 import javax.sip.message.*;
73 public final class SIPRequest extends SIPMessage implements javax.sip.message.Request, RequestExt {
122 putName(Request.MESSAGE);
192 * this into a sip message that is suitable for transmission. Note hack here if you want to
195 * @return a string which can be used to examine the message contents.
373 * @param uri the new Request URI of this request message
430 * @return an encoded String containing the encoded SIP Message.
501 * Get the message as a linked list of strings. Use this if you want to iterate through the
502 * message
    [all...]
  /packages/apps/Email/src/com/android/email/provider/
EmailProvider.java 30 import com.android.email.provider.EmailContent.Message;
76 // Version 6: Adding Message.mServerTimeStamp column
81 // Version 10: Add meeting info to message table
109 private static final int MESSAGE = MESSAGE_BASE;
149 EmailContent.Message.TABLE_NAME,
152 EmailContent.Message.UPDATED_TABLE_NAME,
153 EmailContent.Message.DELETED_TABLE_NAME,
164 Message.UPDATED_TABLE_NAME + " select * from " + Message.TABLE_NAME + " where " +
168 Message.UPDATED_TABLE_NAME + " where " + EmailContent.RECORD_ID + '='
    [all...]
  /external/protobuf/src/google/protobuf/
descriptor.cc 99 "message", // TYPE_MESSAGE
222 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD, PACKAGE
238 return type == MESSAGE || type == ENUM;
241 return type == MESSAGE || type == PACKAGE
251 CONSTRUCTOR(Descriptor , MESSAGE , descriptor )
263 case MESSAGE : return descriptor ->file();
387 // Allocate a protocol message object. Some older versions of GCC have
398 vector<Message*> messages_; // All messages in the pool.
855 // Note that FileDescriptorProto is itself a generated protocol message.
2799 string message; local
    [all...]
  /prebuilt/common/osgi/
osgi.jar 
  /prebuilt/common/ecj/
ecj.jar 

Completed in 475 milliseconds