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

1 2 3

  /cts/tests/tests/content/src/android/content/res/cts/
Resources_NotFoundExceptionTest.java 46 final String MESSAGE = "test";
48 ne = new NotFoundException(MESSAGE);
53 assertEquals(MESSAGE, e.getMessage());
  /external/eigen/bench/btl/generic_bench/utils/
utilities.h 59 # define MESSAGE(chain) {HERE ; cerr << chain << endl ;}
76 # define MESSAGE(chain)
  /external/chromium_org/v8/tools/push-to-trunk/
auto_roll.py 22 MESSAGE = "Check active roll."
47 MESSAGE = "Detect commit ID of the last push to trunk."
55 MESSAGE = "Detect commit ID of the last Chromium roll."
69 MESSAGE = "Roll V8 into Chromium."
auto_push.py 51 MESSAGE = "Preparation."
59 MESSAGE = "Checking settings file."
71 MESSAGE = "Checking v8 tree status message."
76 self["tree_message"] = json.loads(status_json)["message"]
83 MESSAGE = "Fetching V8 LKGR."
92 MESSAGE = "Checking last V8 push to trunk."
98 # the push commit message.
115 MESSAGE = "Pushing to trunk if specified."
chromium_roll.py 23 MESSAGE = "Preparation."
30 MESSAGE = "Detect commit ID of last push to trunk."
41 MESSAGE = "Ask for chromium checkout."
53 MESSAGE = "Switch to Chromium checkout."
69 MESSAGE = "Update the checkout and create a new branch."
80 MESSAGE = "Create and upload CL."
113 MESSAGE = "Returning to V8 checkout."
121 MESSAGE = "Done!"
merge_to_branch.py 53 MESSAGE = "Preparation."
76 MESSAGE = "Create a fresh branch for the patch."
84 MESSAGE = "Search for corresponding architecture ports."
119 MESSAGE = "Find the git revisions associated with the patches."
136 # The commit message title is added below after the version is specified.
155 MESSAGE = "Apply patches for selected revisions."
169 MESSAGE = "Prepare version file."
179 MESSAGE = "Increment version number."
204 MESSAGE = "Commit to local branch."
207 # Add a commit message title
    [all...]
push_to_trunk.py 55 MESSAGE = "Preparation."
70 MESSAGE = "Create a fresh branch."
77 MESSAGE = "Check which revision to push."
89 MESSAGE = "Detect commit ID of last push to trunk."
106 # the push commit message.
128 MESSAGE = "Increment version number."
156 MESSAGE = "Prepare raw ChangeLog entry."
159 """Attempts to reload the commit message from rietveld in order to allow
209 MESSAGE = "Edit ChangeLog entry."
232 MESSAGE = ("Fetch straggler commits that sneaked in since this script was
    [all...]
releases.py 34 # Expression for retrieving the bleeding edge revision from a commit message.
37 # Expression for retrieving the merged patches from a merge commit message
41 # Expression for retrieving reverted patches from a commit message (old and
127 MESSAGE = "Preparation."
135 MESSAGE = "Retrieve all V8 releases."
186 # Link to the commit message on google code.
256 MESSAGE = "Check the chromium checkout."
263 MESSAGE = "Switch to Chromium checkout."
278 MESSAGE = "Update the checkout and create a new branch."
289 MESSAGE = "Retrieve V8 releases from Chromium DEPS.
    [all...]
common_includes.py 132 """Grep for "BUG=xxxx" lines in the commit message and convert them to
451 MESSAGE = "Upload for code review."
465 MESSAGE = "Determine the V8 sheriff for code review."
505 message = step_class.MESSAGE
507 message = step_class.__name__
513 return step_class(message, requires, number=number, config=config,
  /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/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
Signature2Test.java 32 private static final String MESSAGE = "abc";
173 sig.update(MESSAGE.getBytes());
192 byte[] bytes = MESSAGE.getBytes();
203 byte[] bytes = MESSAGE.getBytes();
214 sig.update(MESSAGE.getBytes()[0]);
223 sig.update(MESSAGE.getBytes());
228 sig.update(MESSAGE.getBytes());
MessageDigest2Test.java 46 private static final String MESSAGE = "abc";
222 sha.update(MESSAGE.getBytes("UTF-8"));
  /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 45 private static final String MESSAGE = "abc";
206 sha.update(MESSAGE.getBytes());
Signature2Test.java 44 private static final String MESSAGE = "abc";
342 sig.update(MESSAGE.getBytes());
361 byte[] bytes = MESSAGE.getBytes();
366 sig2.update(MESSAGE.getBytes());
377 byte[] bytes = MESSAGE.getBytes();
412 sig.update(MESSAGE.getBytes()[0]);
447 sig.update(MESSAGE.getBytes());
451 sig.update(MESSAGE.getBytes());
461 sig.update(MESSAGE.getBytes());
465 sig.update(MESSAGE.getBytes())
    [all...]
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
IntentSenderTest.java 37 private static final String MESSAGE = "Sample Message";
66 * This intent will have, in the ClipData, a uri whose associated file stores a message.
67 * The receiver will read the message from the uri, and put it inside the result intent.
70 Uri uri = getUriWithTextInFile("reading_test", MESSAGE);
78 assertEquals(MESSAGE, result.getStringExtra("extra_response"));
83 * This intent will have a message in an extra, and a uri specified by the ClipData.
84 * The receiver will read the message from the extra, and write it to the uri in
94 intent.putExtra("extra_message", MESSAGE);
99 assertEquals(MESSAGE, getFirstLineFromUri(uri))
    [all...]
  /external/chromium_org/third_party/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) {
  /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;
  /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) {
  /cts/tests/tests/app/src/android/app/cts/
ProgressDialogTest.java 38 private final CharSequence MESSAGE = "message";
95 ProgressDialog.show(mContext, TITLE, MESSAGE);
101 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, false);
109 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true);
124 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false);
138 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, true);
160 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, false, cL);
173 dialog = ProgressDialog.show(mContext, TITLE, MESSAGE, true, true, cL);
192 progressDialog = ProgressDialog.show(mContext, TITLE, MESSAGE);
    [all...]
  /developers/build/prebuilts/gradle/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 305 MESSAGE("msg"),
  /developers/samples/android/ui/notifications/LNotifications/Application/src/main/java/com/example/android/lnotifications/
OtherMetadataFragment.java 305 MESSAGE("msg"),
  /development/samples/browseable/LNotifications/src/com.example.android.lnotifications/
OtherMetadataFragment.java 305 MESSAGE("msg"),
  /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 LogUtils.d(Logging.LOG_TAG, message);
105 return new IOException(message);
180 LogUtils.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/smack/src/org/jivesoftware/smackx/bytestreams/ibb/
InBandBytestreamManager.java 45 * send data packets or message stanzas. If IQ stanzas are used every data packet is acknowledged by
46 * the receiver. This is the recommended way to avoid possible rate-limiting penalties. Message
48 * flow-control method like <a href="http://xmpp.org/extensions/xep-0079.html">Advanced Message
87 * Message stanza.
89 MESSAGE
359 * href="http://xmpp.org/extensions/xep-0047.html#message">XEP-0047</a> Section 4.
371 * href="http://xmpp.org/extensions/xep-0047.html#message">XEP-0047</a> Section 4.

Completed in 1309 milliseconds

1 2 3