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

1 23 4 5

  /external/clang/lib/Basic/
Diagnostic.cpp 794 StringRef Message)
795 : ID(ID), Level(Level), Loc(), Message(Message) { }
805 llvm::SmallString<64> Message;
806 Info.FormatDiagnostic(Message);
807 this->Message.assign(Message.begin(), Message.end());
819 StringRef Message, FullSourceLoc Loc,
822 : ID(ID), Level(Level), Loc(Loc), Message(Message)
    [all...]
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
Connection.h 65 // Whether this message should be dispatched when waiting for a sync reply.
129 // handling the message on the client thread first.
142 template<typename T> bool send(const T& message, uint64_t destinationID, unsigned messageSendFlags = 0);
143 template<typename T> bool sendSync(const T& message, const typename T::Reply& reply, uint64_t destinationID, double timeout = DefaultTimeout);
151 // All clients should move to the overloads that take a message type.
157 template<typename T> class Message {
159 Message()
164 Message(MessageID messageID, PassOwnPtr<T> arguments)
189 typedef Message<ArgumentEncoder> OutgoingMessage;
213 typedef Message<ArgumentDecoder> IncomingMessage
    [all...]
  /frameworks/base/core/java/android/speech/
SpeechRecognizer.java 28 import android.os.Message;
122 public void handleMessage(Message msg) {
144 private final Queue<Message> mPendingTasks = new LinkedList<Message>();
165 // always done on the application main thread, so no need to send message to mHandler
174 // always done on the application main thread, so no need to send message to mHandler
244 putMessage(Message.obtain(mHandler, MSG_CHANGE_LISTENER, listener));
289 putMessage(Message.obtain(mHandler, MSG_START, recognizerIntent));
304 putMessage(Message.obtain(mHandler, MSG_STOP));
314 putMessage(Message.obtain(mHandler, MSG_CANCEL))
    [all...]
  /frameworks/base/core/java/android/view/textservice/
SpellCheckerSession.java 27 import android.os.Message;
109 public void handleMessage(Message msg) {
274 mAsyncHandler.sendMessage(Message.obtain(mAsyncHandler, 1, scp));
302 @Override public void handleMessage(Message msg) {
378 mHandler.sendMessage(Message.obtain(mHandler,
  /frameworks/base/core/java/android/webkit/
WebIconDatabase.java 23 import android.os.Message;
48 // Message ids
56 // Message for dispatching icon request results
61 private Vector<Message> mMessages = new Vector<Message>();
78 public void handleMessage(Message msg) {
79 // Note: This is the message handler for the UI thread.
92 public void handleMessage(Message msg) {
93 // Note: This is the message handler for the WebCore
140 private synchronized void postMessage(Message msg)
    [all...]
WebStorage.java 20 import android.os.Message;
53 // Message ids
62 // Message ids on the UI thread
132 * Message handler, UI side
138 public void handleMessage(Message msg) {
166 * Message handler, webcore side
172 public void handleMessage(Message msg) {
196 postUIMessage(Message.obtain(null, RETURN_ORIGINS, values));
211 postUIMessage(Message.obtain(null, RETURN_USAGE_ORIGIN, retValues));
226 postUIMessage(Message.obtain(null, RETURN_QUOTA_ORIGIN, retValues))
    [all...]
  /external/clang/lib/Lex/
Pragma.cpp 381 // Lex tokens at the end of the message and include them in the message.
382 std::string Message;
385 Message += getSpelling(DependencyTok) + " ";
390 if (!Message.empty())
391 Message.erase(Message.end()-1);
392 Diag(FilenameTok, diag::pp_out_of_date_dependency) << Message;
482 /// HandlePragmaMessage - Handle the microsoft and gcc #pragma message
484 /// #pragma message(string
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 843 OS << Message;
    [all...]
  /frameworks/base/services/tests/servicestests/src/com/android/server/
AccessibilityManagerServiceTest.java 25 import android.os.Message;
541 sentEvent.setParcelableData(Message.obtain(null, 1, null));
639 StringBuilder message = new StringBuilder(); local
640 message.append("Mock accessibility services not started or system not bound as a client: ");
642 message.append(MyFirstMockAccessibilityService.sComponentName);
643 message.append(" ");
646 message.append(MySecondMockAccessibilityService.sComponentName);
648 throw new IllegalStateException(message.toString());
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfActivity.java 27 import android.os.Message;
121 @Override public void handleMessage(Message msg) {
280 Message msg = Message.obtain(null, TestService.CMD_START_TEST, bundle);
337 Message msg = Message.obtain(null, TestService.CMD_TERMINATE);
360 mHandler.sendMessageDelayed(Message.obtain(null, MSG_DO_NEXT_TEST), 100);
  /packages/apps/DeskClock/src/com/android/deskclock/
DeskClock.java 40 import android.os.Message;
147 public void handleMessage(Message m) {
214 Message.obtain(mHandy, SCREEN_SAVER_TIMEOUT_MSG),
  /packages/apps/Email/src/com/android/email/activity/
MessagesAdapter.java 38 import com.android.emailcommon.provider.EmailContent.Message;
84 * Set of seleced message IDs.
92 /** Called when the use starts/unstars a message */
94 /** Called when the user selects/unselects a message */
207 itemView.mHasInvite = (flags & Message.FLAG_INCOMING_MEETING_INVITE) != 0;
208 itemView.mHasBeenRepliedTo = (flags & Message.FLAG_REPLIED_TO) != 0;
209 itemView.mHasBeenForwarded = (flags & Message.FLAG_FORWARDED) != 0;
294 super(context, EmailContent.Message.CONTENT_URI,
305 setSelection(Message.buildMessageListSelection(mContext, mAccountId, mMailboxId));
UIControllerBase.java 40 import com.android.emailcommon.provider.EmailContent.Message;
105 * In some UI layouts such as the one-pane view, the message list may not be visible, but is
116 public void onMessagingError(final long accountId, long mailboxId, final String message) {
579 * Returns the id of the mailbox used for the message list fragment.
590 * Shortcut for {@link #open} with {@link Message#NO_MESSAGE}.
593 open(MessageListContext.forMailbox(accountId, mailboxId), Message.NO_MESSAGE);
598 * @param listContext the list context for the message list to open
599 * @param messageId if specified and not {@link Message#NO_MESSAGE}, will open the message
600 * in the message list
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/
EasOutboxService.java 36 import com.android.emailcommon.provider.EmailContent.Message;
77 // This needs to be long enough to send the longest reasonable message, without being so long
89 * representation of the message body as stored in a temporary file) into the serializer stream
96 private final Message mMessage;
102 Message message) {
108 mMessage = message;
141 * Write the message to the output stream
157 // The Message-Id for this message (note that we cannot use the messageId stored i
    [all...]
  /packages/apps/Email/tests/src/com/android/email/provider/
ProviderTests.java 49 import com.android.emailcommon.provider.EmailContent.Message;
145 /** Sets the message count of all mailboxes to {@code -1}. */
162 /** Creates a new message. */
163 private static Message createMessage(Context c, Mailbox b, boolean starred, boolean read,
165 Message message = ProviderTestUtils.setupMessage( local
167 message.mFlagLoaded = flagLoaded;
168 message.save(c);
169 return message;
408 * Returns null if the message has no body
590 Message message = ProviderTestUtils.setupMessage("message", account.mId, box.mId, false, local
    [all...]
  /development/samples/GlobalTime/src/com/android/globaltime/
GLView.java 31 class Message {
36 public Message(String text, long expirationTime) {
308 private Map<String,Message> mMessages = new HashMap<String,Message>();
502 Message msg = mMessages.get(key);
516 * Displays the message overlay on the given Canvas. The
600 mMessages.put(key, new Message(text, expirationTime));
  /external/chromium/chrome/common/extensions/docs/examples/apps/hello-python/httplib2/
__init__.py 31 import email.Message
368 info = email.Message.Message()
    [all...]
  /external/chromium/net/tools/dump_cache/
upgrade.cc 45 // This is the basic message to use between the two processes. It is intended
48 // of the message has |buffer_bytes| of length with the actual data.
49 struct Message {
62 Message() {
65 Message& operator= (const Message& other) {
71 const int kBufferSize = kChannelSize - sizeof(Message);
73 Message msg;
122 bool SendMsg(const Message& msg);
164 bool BaseSM::SendMsg(const Message& msg)
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 165 OS << Message;
264 /// if the \p Message parameter is non-NULL, it will be set to a
271 std::string *Message) {
288 if (Message) {
289 Message->clear();
290 llvm::raw_string_ostream Out(*Message);
300 if (Message) {
301 Message->clear();
302 llvm::raw_string_ostream Out(*Message);
312 if (Message) {
    [all...]
  /frameworks/base/opengl/libs/GLES2_dbg/src/
debugger_message.pb.cpp 15 delete Message::default_instance_;
24 Message::default_instance_ = new Message();
25 Message::default_instance_->InitAsDefaultInstance();
239 const Message_Function Message::glActiveTexture;
240 const Message_Function Message::glAttachShader;
241 const Message_Function Message::glBindAttribLocation;
242 const Message_Function Message::glBindBuffer;
243 const Message_Function Message::glBindFramebuffer;
244 const Message_Function Message::glBindRenderbuffer
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 464 /// \param Message If non-NULL and the result is not \c
465 /// AR_Available, will be set to a (possibly empty) message
468 AvailabilityResult getAvailability(std::string *Message = 0) const;
472 /// \param Message If non-NULL and the declaration is deprecated,
473 /// this will be set to the message describing why the declaration
475 bool isDeprecated(std::string *Message = 0) const {
476 return getAvailability(Message) == AR_Deprecated;
481 /// \param Message If non-NULL and the declaration is unavailable,
482 /// this will be set to the message describing why the declaration
484 bool isUnavailable(std::string *Message = 0) const
    [all...]
  /external/gtest/test/
gtest_unittest.cc 122 using testing::Message;
    [all...]
  /external/quake/src/com/android/quake/
DownloaderActivity.java 56 import android.os.Message;
537 Message.obtain(mHandler, MSG_DOWNLOAD_SUCCEEDED));
542 Message.obtain(mHandler, MSG_DOWNLOAD_FAILED, reason));
547 Message.obtain(mHandler, MSG_REPORT_PROGRESS, progress, 0));
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NetworkController.java 37 import android.os.Message;
717 public void handleMessage(Message msg) {
721 mWifiChannel.sendMessage(Message.obtain(this,
    [all...]
  /packages/apps/Phone/src/com/android/phone/
CellBroadcastSms.java 31 import android.os.Message;
185 Message.obtain(mHandler, MESSAGE_ACTIVATE_CB_SMS));
192 Message.obtain(mHandler, MESSAGE_ACTIVATE_CB_SMS));
437 mPhone.getCellBroadcastSmsConfig(Message.obtain(mHandler, MESSAGE_GET_CB_SMS_CONFIG));
447 Message.obtain(mHandler, MESSAGE_SET_CB_SMS_CONFIG));
534 public void handleMessage(Message msg) {
537 //Only a log message here, because the received response is always null
549 Message.obtain(mHandler, MESSAGE_ACTIVATE_CB_SMS));
561 //Only a log message here, because the received response is always null
565 Log.e(LOG_TAG, "Error! Unhandled message in CellBroadcastSms.java. Message:
    [all...]

Completed in 1235 milliseconds

1 23 4 5