HomeSort by relevance Sort by last modified time
    Searched refs:MESSAGE (Results 1 - 25 of 51) sorted by null

1 2 3

  /external/icu4c/extra/uconv/
makedata.mak 14 !MESSAGE No configuration specified. Defaulting to common - Win32 Debug.
19 !MESSAGE Invalid configuration "$(CFG)" specified.
20 !MESSAGE You can specify a configuration when running NMAKE
21 !MESSAGE by defining the macro CFG on the command line. For example:
22 !MESSAGE
23 !MESSAGE NMAKE /f "makedata.mak" CFG="Debug"
24 !MESSAGE
25 !MESSAGE Possible choices for configuration are:
26 !MESSAGE
27 !MESSAGE "Release
    [all...]
  /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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Signature2Test.java 32 private static final String MESSAGE = "abc";
172 sig.update(MESSAGE.getBytes());
191 byte[] bytes = MESSAGE.getBytes();
202 byte[] bytes = MESSAGE.getBytes();
213 sig.update(MESSAGE.getBytes()[0]);
222 sig.update(MESSAGE.getBytes());
227 sig.update(MESSAGE.getBytes());
  /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/javax/sip/message/
Request.java 1 package javax.sip.message;
6 public interface Request extends Message {
15 String MESSAGE = "MESSAGE";
  /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) {
ExtensionRegistry.java 42 * parsing a protocol message that might have extensions, you must provide
52 * message Foo {
66 * MyProto.Foo message = MyProto.Foo.parseFrom(input, registry);
86 * could violate the expectation that message objects are immutable, since the
87 * type provided could be any arbitrary message class. An unprivileged user
88 * could take advantage of this to inject a mutable object into a message
110 /** A (Descriptor, Message) pair, returned by lookup methods. */
116 * A default instance of the extension's type, if it has a message type.
119 public final Message defaultInstance;
126 final Message defaultInstance)
    [all...]
FieldSet.java 42 * A class which represents an arbitrary set of fields of some message type.
64 // If getLiteJavaType() == MESSAGE, this merges a message object of the
120 /** See {@link Message.Builder#clear()}. */
142 * {@link Message#hasField(Descriptors.FieldDescriptor)}.
155 * {@link Message#getField(Descriptors.FieldDescriptor)}. This method
165 * {@link Message.Builder#setField(Descriptors.FieldDescriptor,Object)}.
173 "Wrong object type used with protocol message reflection.");
193 * {@link Message.Builder#clearField(Descriptors.FieldDescriptor)}.
201 * {@link Message#getRepeatedFieldCount(Descriptors.FieldDescriptor)}
    [all...]
AbstractMessage.java 43 * A partial implementation of the {@link Message} interface which implements
49 implements Message {
65 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
67 for (final Message element : (List<Message>) entry.getValue()) {
73 if (!((Message) entry.getValue()).isInitialized()) {
97 field.getType() == FieldDescriptor.Type.MESSAGE &&
99 output.writeMessageSetExtension(field.getNumber(), (Message) value);
130 field.getType() == FieldDescriptor.Type.MESSAGE &&
133 field.getNumber(), (Message) value)
    [all...]
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...]
DynamicMessage.java 41 * An implementation of {@link Message} that can represent arbitrary types,
71 /** Parse a message of the given type from the given input stream. */
78 /** Parse a message of the given type from the given input stream. */
87 /** Parse {@code data} as a message of the given type and return it. */
93 /** Parse {@code data} as a message of the given type and return it. */
100 /** Parse {@code data} as a message of the given type and return it. */
106 /** Parse {@code data} as a message of the given type and return it. */
113 /** Parse a message of the given type from {@code input} and return it. */
119 /** Parse a message of the given type from {@code input} and return it. */
126 /** Construct a {@link Message.Builder} for the given type. *
    [all...]
GeneratedMessage.java 48 * All generated protocol message classes extend this class. This class
49 * implements most of the Message and Builder interfaces using Java reflection.
51 * the Message interface directly.
61 * Get the FieldAccessorTable for this type. We can't have the message
101 if (field.getJavaType() == FieldDescriptor.JavaType.MESSAGE) {
104 List<Message> messageList = (List<Message>) getField(field);
105 for (final Message element : messageList) {
111 if (hasField(field) && !((Message) getField(field)).isInitialized()) {
162 * Get the message being built. We don't just pass this to th
603 final ExtendableMessage<MessageType> message = internalGetResult(); local
615 final ExtendableMessage<MessageType> message = internalGetResult(); local
628 final ExtendableMessage<MessageType> message = internalGetResult(); local
639 final ExtendableMessage<MessageType> message = internalGetResult(); local
655 final ExtendableMessage<MessageType> message = internalGetResult(); local
670 final ExtendableMessage<MessageType> message = internalGetResult(); local
682 final ExtendableMessage<MessageType> message = internalGetResult(); local
695 final ExtendableMessage<MessageType> message = internalGetResult(); local
708 final ExtendableMessage<MessageType> message = internalGetResult(); local
    [all...]
  /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);
  /external/quake/quake/src/QW/gas2masm/
gas2masm.mak 8 !MESSAGE No configuration specified. Defaulting to gas2masm - Win32 Debug.
13 !MESSAGE Invalid configuration "$(CFG)" specified.
14 !MESSAGE You can specify a configuration when running NMAKE on this makefile
15 !MESSAGE by defining the macro CFG on the command line. For example:
16 !MESSAGE
17 !MESSAGE NMAKE /f "gas2masm.mak" CFG="gas2masm - Win32 Debug"
18 !MESSAGE
19 !MESSAGE Possible choices for configuration are:
20 !MESSAGE
21 !MESSAGE "gas2masm - Win32 Release" (based on\
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
Signature2Test.java 43 private static final String MESSAGE = "abc";
331 sig.update(MESSAGE.getBytes());
350 byte[] bytes = MESSAGE.getBytes();
355 sig2.update(MESSAGE.getBytes());
366 byte[] bytes = MESSAGE.getBytes();
401 sig.update(MESSAGE.getBytes()[0]);
436 sig.update(MESSAGE.getBytes());
440 sig.update(MESSAGE.getBytes());
450 sig.update(MESSAGE.getBytes());
454 sig.update(MESSAGE.getBytes())
    [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;
Parser.java 91 || token.getTokenType() == MESSAGE
142 * rfc 2543 transaction matching. fix for MESSAGE request type parsing.
  /packages/apps/DeskClock/src/com/android/deskclock/
AlarmDatabaseHelper.java 50 "message TEXT, " +
56 " message, alert) VALUES ";
74 long rowId = db.insert("alarms", Alarm.Columns.MESSAGE, values);
HandleSetAlarm.java 57 String message = intent.getStringExtra(EXTRA_MESSAGE); local
58 if (message == null) {
59 message = "";
72 Alarm.Columns.MESSAGE + "=?",
73 new String[] { message }, null);
87 values.put(Alarm.Columns.MESSAGE, message);
Alarm.java 113 * Message to show when alarm triggers
117 public static final String MESSAGE = "message";
136 ENABLED, VIBRATE, MESSAGE, ALERT };
  /external/icu4c/data/
makedata.mak 28 !MESSAGE ICU data make path is $(ICUMAKE)
52 !MESSAGE ICU root path is $(ICUP)
180 !MESSAGE ICU data source archive is $(ICUDATA_SOURCE_ARCHIVE)
195 !MESSAGE Warning: cannot find "ucmcore.mk". Not building core MIME/Unix/Windows converter files.
202 !MESSAGE Warning: cannot find "ucmfiles.mk". Not building many converter files.
215 !MESSAGE Warning: cannot find "ucmebcdic.mk". Not building EBCDIC converter files.
226 !MESSAGE Information: cannot find "ucmlocal.mk". Not building user-additional converter files.
242 !MESSAGE Information: cannot find "brklocal.mk". Not building user-additional break iterator files.
245 !MESSAGE Warning: cannot find "brkfiles.mk"
275 !MESSAGE Information: cannot find "reslocal.mk". Not building user-additional resource bundle files
    [all...]
  /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(Logging.LOG_TAG, message);
105 return new IOException(message);
180 Log.w(Logging.LOG_TAG, ByeException.MESSAGE);
194 // However, we don't want to read too much, because then it may get into an email message.
  /external/protobuf/src/google/protobuf/
extension_set_heavy.cc 40 #include <google/protobuf/message.h>
120 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
138 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
154 GOOGLE_DCHECK_TYPE(*extension, REPEATED, MESSAGE);
157 // RepeatedPtrField<Message> does not know how to Add() since it cannot
206 const Message* containing_type,
221 const Message* containing_type,
249 return field->SpaceUsedExcludingSelf<GenericTypeHandler<Message> >();
289 total_size += down_cast<Message*>(message_value)->SpaceUsed();
392 HANDLE_TYPE( GROUP, Group, message);
    [all...]
extension_set.cc 412 GOOGLE_DCHECK_TYPE(iter->second, OPTIONAL, MESSAGE);
432 GOOGLE_DCHECK_TYPE(*extension, OPTIONAL, MESSAGE);
447 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE);
454 GOOGLE_DCHECK_TYPE(iter->second, REPEATED, MESSAGE);
469 GOOGLE_DCHECK_TYPE(*extension, REPEATED, MESSAGE);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
AaptQuickFix.java 72 /** Returns the error message from aapt that signals missing resources */
77 /** Returns the error message from aapt that signals a missing namespace declaration */
85 String message = null; local
87 message = (String) marker.getAttribute(IMarker.MESSAGE);
92 return message != null
93 && (message.contains(getTargetMarkerErrorMessage())
94 || message.contains(getUnboundErrorMessage()));
101 String message = (String) marker.getAttribute(IMarker.MESSAGE); local
175 String message = marker.getAttribute(IMarker.MESSAGE, ""); \/\/$NON-NLS-1\$ local
    [all...]

Completed in 1217 milliseconds

1 2 3