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

1 2

  /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 17 MESSAGE = "Check active roll."
42 MESSAGE = "Detect commit ID of the last push to trunk."
51 MESSAGE = "Detect commit ID of the last Chromium roll."
69 MESSAGE = "Check ClusterFuzz api for new problems."
87 MESSAGE = "Roll V8 into Chromium."
auto_tag.py 13 MESSAGE = "Preparation."
23 MESSAGE = "Get all V8 tags."
37 MESSAGE = "Check if there's a version on bleeding edge without a tag."
93 MESSAGE = "Get the last lkgrs."
103 MESSAGE = "Calculate the revision to tag."
151 MESSAGE = "Tag the version."
160 MESSAGE = "Clean up."
chromium_roll.py 14 MESSAGE = "Preparation."
22 MESSAGE = "Detect commit ID of last push to trunk."
33 MESSAGE = "Switch to Chromium checkout."
49 MESSAGE = "Update the checkout and create a new branch."
64 MESSAGE = "Create and upload CL."
98 MESSAGE = "Returning to V8 checkout."
105 MESSAGE = "Done!"
auto_push.py 42 MESSAGE = "Preparation."
50 MESSAGE = "Checking settings file."
62 MESSAGE = "Checking v8 tree status message."
67 self["tree_message"] = json.loads(status_json)["message"]
74 MESSAGE = "Fetching V8 LKGR."
83 MESSAGE = "Checking last V8 push to trunk."
89 # the push commit message.
106 MESSAGE = "Pushing to trunk if specified."
bump_up_version.py 32 MESSAGE = "Preparation."
50 MESSAGE = "Get latest bleeding edge version."
67 MESSAGE = "Stop script if the last change modified the version."
77 MESSAGE = "Fetching V8 LKGR."
88 MESSAGE = "Get bleeding edge lkgr version."
93 # message.
114 MESSAGE = "Stop script if the lkgr has a renewed version."
131 MESSAGE = "Get latest trunk version."
143 MESSAGE = "Calculate the new version."
174 MESSAGE = "Checking v8 tree status message.
    [all...]
merge_to_branch.py 36 MESSAGE = "Preparation."
59 MESSAGE = "Create a fresh branch for the patch."
67 MESSAGE = "Search for corresponding architecture ports."
102 MESSAGE = "Find the git revisions associated with the patches."
119 # The commit message title is added below after the version is specified.
138 MESSAGE = "Apply patches for selected revisions."
152 MESSAGE = "Prepare version file."
162 MESSAGE = "Increment version number."
187 MESSAGE = "Commit to local branch."
190 # Add a commit message title
    [all...]
push_to_trunk.py 41 MESSAGE = "Preparation."
56 MESSAGE = "Create a fresh branch."
63 MESSAGE = "Check which revision to push."
75 MESSAGE = "Detect commit ID of last push to trunk."
92 # the push commit message.
116 MESSAGE = "Get latest bleeding edge version."
128 MESSAGE = "Increment version number."
172 MESSAGE = "Prepare raw ChangeLog entry."
175 """Attempts to reload the commit message from rietveld in order to allow
225 MESSAGE = "Edit ChangeLog entry.
    [all...]
releases.py 28 # Expression for retrieving the bleeding edge revision from a commit message.
31 # Expression for retrieving the merged patches from a merge commit message
35 # Expression for retrieving reverted patches from a commit message (old and
116 MESSAGE = "Preparation."
124 MESSAGE = "Retrieve all V8 releases."
165 # Link to the commit message on google code.
266 MESSAGE = "Switch to Chromium checkout."
279 MESSAGE = "Update the checkout and create a new branch."
297 MESSAGE = "Retrieve V8 releases from Chromium DEPS."
350 MESSAGE = "Retrieve Chromium branch information.
    [all...]
common_includes.py 133 """Grep for "BUG=xxxx" lines in the commit message and convert them to
538 MESSAGE = "Upload for code review."
553 MESSAGE = "Determine the V8 sheriff for code review."
593 message = step_class.MESSAGE
595 message = step_class.__name__
597 return step_class(message, 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"));
  /external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
PostMessageTest.java 25 private static final String MESSAGE = "Foo";
76 contentViewCore.postMessageToFrame(null, MESSAGE, SOURCE_ORIGIN, "*");
78 assertEquals(MESSAGE, mMessageObject.getData());
  /cts/hostsidetests/devicepolicy/app/IntentSender/src/com/android/cts/intent/sender/
ContentTest.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/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;
  /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/notification/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"),
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/configuration/org.eclipse.osgi/bundles/67/1/.cp/ant_tasks/
director-ant.jar 
  /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.
377 * @param uri the new Request URI of this request message
434 * @return an encoded String containing the encoded SIP Message.
505 * Get the message as a linked list of strings. Use this if you want to iterate through the
506 * message
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/
descriptor.cc 101 "message", // TYPE_MESSAGE
123 "message", // CPPTYPE_MESSAGE
237 NULL_SYMBOL, MESSAGE, FIELD, ENUM, ENUM_VALUE, SERVICE, METHOD,
254 return type == MESSAGE || type == ENUM;
257 return type == MESSAGE || type == PACKAGE
267 CONSTRUCTOR(Descriptor , MESSAGE , descriptor )
279 case MESSAGE : return descriptor ->file();
428 // Allocate a protocol message object. Some older versions of GCC have
439 vector<Message*> messages_; // All messages in the pool.
3148 string message; local
    [all...]

Completed in 429 milliseconds

1 2