HomeSort by relevance Sort by last modified time
    Searched defs:Message (Results 26 - 50 of 107) sorted by null

12 3 4 5

  /external/llvm/tools/bugpoint/
ExecutionDriver.cpp 153 std::string Message;
159 AbstractInterpreter::createCBE(getToolName(), Message, GCCBinary,
163 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
168 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
174 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
179 Message = "Sorry, I can't automatically select an interpreter!\n";
183 Interpreter = AbstractInterpreter::createLLI(getToolName(), Message,
189 Interpreter = AbstractInterpreter::createLLC(getToolName(), Message,
195 Interpreter = AbstractInterpreter::createJIT(getToolName(), Message,
200 Interpreter = AbstractInterpreter::createCBE(getToolName(), Message,
    [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 37 static void Message(const char *Type, const Twine &Msg) {
42 Message("error", Msg);
47 Message("warning", Msg);
380 return Error("unable to read input: '" + ec.message() + "'");
  /external/nist-sip/java/javax/sip/message/
Message.java 1 package javax.sip.message;
15 public interface Message extends Cloneable, Serializable {
  /external/protobuf/java/src/main/java/com/google/protobuf/
Message.java 41 * Abstract interface implemented by Protocol Message objects.
44 * users care about. {@link Message} adds to it methods that are not available
46 * reflection -- i.e., getting descriptors for the message type and accessing
51 public interface Message extends MessageLite {
53 * Get the message's type's descriptor. This differs from the
54 * {@code getDescriptor()} method of generated message classes in that
55 * this method is an abstract method of the {@code Message} interface
62 Message getDefaultInstanceForType();
65 * Returns a collection of all the fields in this message which are set
88 * embedded message fields, the sub-message is returned. For repeate
    [all...]
  /external/webkit/Source/WebKit2/Scripts/webkit2/
messages.py 61 return itertools.chain((parameter for message in self.messages for parameter in message.parameters),
62 (reply_parameter for message in self.messages if message.reply_parameters for reply_parameter in message.reply_parameters))
110 messages.append(Message(name, parameters, reply_parameters, is_delayed, dispatch_on_connection_queue, condition))
114 class Message(object):
156 result += [surround_in_condition(' %s,\n' % message.id(), message.condition) for message in messages
    [all...]
  /packages/apps/Email/tests/src/com/android/email/
ControllerProviderOpsTests.java 29 import com.android.emailcommon.provider.EmailContent.Message;
178 * Test the "move message" function.
181 Account account1 = ProviderTestUtils.setupAccount("message-move", true, mProviderContext);
190 Message message1 = ProviderTestUtils.setupMessage("message1", account1Id, box1Id, false,
192 Message message2 = ProviderTestUtils.setupMessage("message2", account1Id, box2Id, false,
201 assertEquals(boxDestId, EmailContent.Message.restoreMessageWithId(mProviderContext,
203 assertEquals(boxDestId, EmailContent.Message.restoreMessageWithId(mProviderContext,
208 * Test the "delete message" function. Sunny day:
209 * - message/mailbox/account all exist
213 Account account1 = ProviderTestUtils.setupAccount("message-delete", true, mProviderContext)
232 Message message = ProviderTestUtils.setupMessage("message1", account1Id, boxId, false, local
246 Message message = ProviderTestUtils.setupMessage("message3", account1Id, trashBoxId, local
258 Message message = ProviderTestUtils.setupMessage("message3", account1Id, draftBoxId, local
419 Message message = ProviderTestUtils.setupMessage("message1", account1Id, box1Id, false, local
    [all...]
  /cts/tests/tests/view/src/android/view/cts/
AccessibilityEventTest.java 19 import android.os.Message;
104 String message = "New fields have been added, so add code to test marshaling them."; local
105 assertEquals(message, NON_STATIC_FIELD_COUNT, nonStaticFieldCount);
127 sentEvent.setParcelableData(Message.obtain(null, 1, 2, 3));
145 record.setParcelableData(Message.obtain(null, 1, 2, 3));
230 String message = "text has incorrect value"; local
232 TestCase.assertEquals(message, expectedText.size(), receivedText.size());
239 TestCase.assertEquals(message, expectedTextIterator.next().toString(),
  /external/chromium/third_party/libjingle/source/talk/base/
messagequeue.h 47 struct Message;
50 // MessageQueueManager does cleanup of of message queues
124 struct Message {
125 Message() {
138 typedef std::list<Message> MessageList;
145 DelayedMessage(int delay, uint32 trigger, uint32 num, const Message& msg)
156 Message msg_;
178 // 1) A message is available (returns true)
181 virtual bool Get(Message *pmsg, int cmsWait = kForever,
183 virtual bool Peek(Message *pmsg, int cmsWait = 0)
    [all...]
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 111 /// A diagnostic message which has been conditionally emitted pending
168 return StringRef(DeprecationData.Message,
196 const char *Message;
  /external/clang/lib/CodeGen/
CodeGenAction.cpp 201 // Strip "error: " off the start of the message string.
202 StringRef Message = D.getMessage();
203 if (Message.startswith("error: "))
204 Message = Message.substr(7);
216 Diags.Report(LocCookie, diag::err_fe_inline_asm).AddString(Message);
235 Diags.Report(Loc, diag::err_fe_inline_asm).AddString(Message);
  /external/llvm/lib/MC/
MCLoggingStreamer.cpp 31 void LogCall(const char *Function, const Twine &Message) {
32 OS << Function << ": " << Message << "\n";
  /external/llvm/tools/llvm-ld/
llvm-ld.cpp 132 /// PrintAndExit - Prints a message to standard error and exits with error code
135 /// Message - The message to print to standard error.
137 static void PrintAndExit(const std::string &Message, Module *M, int errcode = 1) {
138 errs() << progname << ": " << Message << "\n";
  /external/protobuf/src/google/protobuf/
message.cc 38 #include <google/protobuf/message.h>
58 Message::~Message() {}
60 void Message::MergeFrom(const Message& from) {
63 << ": Tried to merge from a message with a different type. "
69 void Message::CheckTypeAndMergeFrom(const MessageLite& other) {
70 MergeFrom(*down_cast<const Message*>(&other));
73 void Message::CopyFrom(const Message& from)
    [all...]
  /frameworks/base/core/java/android/os/
Message.java 26 * Defines a message containing a description and arbitrary data object that can be
30 * <p class="note">While the constructor of Message is public, the best way to get
31 * one of these is to call {@link #obtain Message.obtain()} or one of the
35 public final class Message implements Parcelable {
37 * User-defined message code so that the recipient can identify
38 * what this message is about. Each {@link Handler} has its own name-space
39 * for message codes, so you do not need to worry about yours conflicting
60 * {@link Messenger} to send the message across processes this can only
71 * Optional Messenger where replies to this message can be sent. The
77 /** If set message is in use *
    [all...]
  /frameworks/base/core/java/android/speech/
RecognitionService.java 27 import android.os.Message;
75 public void handleMessage(Message msg) {
155 * @param listener to send the error message to in case of error
168 Log.e(TAG, "sending ERROR_INSUFFICIENT_PERMISSIONS message failed", re);
254 Message.obtain(mHandler, MSG_RESET).sendToTarget();
291 Message.obtain(mHandler, MSG_RESET).sendToTarget();
317 mInternalService.mHandler.sendMessage(Message.obtain(mInternalService.mHandler,
326 mInternalService.mHandler.sendMessage(Message.obtain(mInternalService.mHandler,
334 mInternalService.mHandler.sendMessage(Message.obtain(mInternalService.mHandler,
  /frameworks/base/core/java/android/webkit/
GeolocationPermissions.java 20 import android.os.Message;
66 private Vector<Message> mQueuedMessages;
68 // Message ids
75 // Message ids on the UI thread
95 * Creates the UI message handler. Must be called on the UI thread.
102 public void handleMessage(Message msg) {
124 * Creates the message handler. Must be called on the WebKit thread.
131 public void handleMessage(Message msg) {
140 postUIMessage(Message.obtain(null, RETURN_ORIGINS, values));
150 postUIMessage(Message.obtain(null, RETURN_ALLOWED, retValues))
    [all...]
  /frameworks/base/core/java/android/widget/
Chronometer.java 23 import android.os.Message;
256 mHandler.sendMessageDelayed(Message.obtain(mHandler, TICK_WHAT), 1000);
265 public void handleMessage(Message m) {
269 sendMessageDelayed(Message.obtain(this, TICK_WHAT), 1000);
  /frameworks/base/include/utils/
Looper.h 48 * A message that can be posted to a Looper.
50 struct Message {
51 Message() : what(0) { }
52 Message(int what) : what(what) { }
54 /* The message type. (interpretation is left up to the handler) */
60 * Interface for a Looper message handler.
62 * The Looper holds a strong reference to the message handler whenever it has
63 * a message to deliver to it. Make sure to call Looper::removeMessages
73 * Handles a message.
75 virtual void handleMessage(const Message& message) = 0
304 Message message; member in struct:android::Looper::MessageEnvelope
    [all...]
  /frameworks/base/services/java/com/android/server/
LightsService.java 24 import android.os.Message;
99 mH.sendMessageDelayed(Message.obtain(mH, 1, this), onMS);
198 public void handleMessage(Message msg) {
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Message.java 22 public abstract class Message implements Part, Body {
23 public static final Message[] EMPTY_ARRAY = new Message[0];
98 // Always use these instead of getHeader("Message-ID") or setHeader("Message-ID");
  /packages/apps/Email/emailcommon/src/org/apache/james/mime4j/message/
Message.java 20 package org.apache.james.mime4j.message;
37 * Represents a MIME message. The following code parses a stream into a
38 * <code>Message</code> object.
41 * Message msg = new Message(new BufferedInputStream(
47 * @version $Id: Message.java,v 1.3 2004/10/02 12:41:11 ntherning Exp $
49 public class Message extends Entity implements Body {
52 * Creates a new empty <code>Message</code>.
54 public Message() {
58 * Parses the specified MIME message stream into a <code>Message</code>
    [all...]
  /packages/apps/Email/src/com/android/email/widget/
EmailWidgetLoader.java 23 import com.android.emailcommon.provider.EmailContent.Message;
37 * - The message count shown in the widget header.
38 * It's currently just the same as the message count, but this will be updated to the unread
68 * addition to a message count and account name. The later elements were opportunistically
105 super(context, Message.CONTENT_URI, WIDGET_PROJECTION, null,
114 // Reset the notification Uri to our Message table notifier URI
115 messagesCursor.setNotificationUri(mContext.getContentResolver(), Message.NOTIFIER_URI);
120 messageCount = EmailContent.count(mContext, Message.CONTENT_URI, selection,
185 setSelection(Message.ALL_INBOX_SELECTION);
187 setSelection(Message.ALL_UNREAD_SELECTION)
    [all...]
  /cts/tests/tests/os/src/android/os/cts/
MessageTest.java 21 import android.os.Message;
29 @TestTargetClass(Message.class)
38 private Message mMessage;
42 public void handleMessage(Message msg) {
57 mMessage = new Message();
62 notes = "Test constructor(s) of {@link Message}",
63 method = "Message",
67 new Message();
120 Message expected = Message.obtain(mHandler, mRunnable)
141 Message message = Message.obtain(); local
160 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ); local
278 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ); local
297 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2, OBJ); local
316 Message message = Message.obtain(mHandler, WHAT, ARG1, ARG2); local
353 Message message = Message.obtain(mHandler); local
    [all...]
  /development/samples/BluetoothHDP/src/com/example/bluetooth/health/
BluetoothHDPActivity.java 36 import android.os.Message;
78 public void handleMessage(Message msg) {
205 Message msg = Message.obtain(null, BluetoothHDPService.MSG_REG_CLIENT);
303 // Sends a message to {@link BluetoothHDPService}.
311 mHealthService.send(Message.obtain(null, what, value, 0));
318 // Sends an update message, along with an HDP BluetoothDevice object, to
328 mHealthService.send(Message.obtain(null, what, mDevice));
BluetoothHDPService.java 29 import android.os.Message;
78 // Message codes received from the UI client.
103 public void handleMessage(Message msg) {
265 // Sends an update message to registered UI client.
273 mClient.send(Message.obtain(null, what, value, 0));

Completed in 566 milliseconds

12 3 4 5