HomeSort by relevance Sort by last modified time
    Searched full:messages (Results 176 - 200 of 4742) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/chromium/chrome/common/
devtools_messages.h 8 // to the pages resources, DOM, v8 etc. by means of IPC messages.
11 // renderer and converts IPC messages to frontend method calls and allows the
12 // frontend to send messages to the DevToolsAgent.
14 // All the messages are routed through browser process. There is a
16 // routing logistics. It is also capable of sending direct messages to the
17 // agent rather than forwarding messages between agents and clients only.
57 // These are messages sent from DevToolsAgent to DevToolsClient through the
69 // These are messages sent from DevToolsClient to DevToolsAgent through the
86 // be handled on IO thread(while all other devtools messages are handled in
99 // These are messages sent from the browser to the renderer
    [all...]
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
filetestcase.py 39 # list of message IDs. Used to extract expected messages from testdata files.
77 """Parse a file and get a sorted list of expected messages."""
78 messages = []
93 messages.append((line, self._converter(msg_id.strip())))
95 messages.sort()
96 return messages
99 """Trap gpylint's output parse it to get messages added."""
  /external/webkit/Source/WebKit2/UIProcess/
WebCookieManagerProxy.cpp 80 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::GetHostnamesWithCookies(callbackID));
103 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::DeleteCookiesForHostname(hostname));
109 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::DeleteAllCookies());
115 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::StartObservingCookieChanges());
121 m_webContext->sendToAllProcesses(Messages::WebCookieManager::StopObservingCookieChanges());
136 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::SetHTTPCookieAcceptPolicy(policy));
149 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::GetHTTPCookieAcceptPolicy(callbackID));
WebInspectorProxy.cpp 89 m_page->process()->send(Messages::WebInspector::Show(), m_page->pageID());
97 m_page->process()->send(Messages::WebInspector::Close(), m_page->pageID());
105 m_page->process()->send(Messages::WebInspector::ShowConsole(), m_page->pageID());
124 m_page->process()->send(Messages::WebInspector::StopJavaScriptDebugging(), m_page->pageID());
126 m_page->process()->send(Messages::WebInspector::StartJavaScriptDebugging(), m_page->pageID());
138 m_page->process()->send(Messages::WebInspector::StopJavaScriptProfiling(), m_page->pageID());
140 m_page->process()->send(Messages::WebInspector::StartJavaScriptProfiling(), m_page->pageID());
152 m_page->process()->send(Messages::WebInspector::StopPageProfiling(), m_page->pageID());
154 m_page->process()->send(Messages::WebInspector::StartPageProfiling(), m_page->pageID());
165 // Called by WebInspectorProxy messages
    [all...]
WebFullScreenManagerProxy.cpp 74 m_page->process()->send(Messages::WebFullScreenManager::WillEnterFullScreen(), m_page->pageID());
79 m_page->process()->send(Messages::WebFullScreenManager::DidEnterFullScreen(), m_page->pageID());
84 m_page->process()->send(Messages::WebFullScreenManager::WillExitFullScreen(), m_page->pageID());
89 m_page->process()->send(Messages::WebFullScreenManager::DidExitFullScreen(), m_page->pageID());
94 m_page->process()->send(Messages::WebFullScreenManager::BeginEnterFullScreenAnimation(duration), m_page->pageID());
99 m_page->process()->send(Messages::WebFullScreenManager::BeginExitFullScreenAnimation(duration), m_page->pageID());
  /external/webrtc/src/system_wrappers/interface/
trace.h 12 // Note: All log messages will be written to the same trace file.
13 // Note: If to many messages are written to file there will be a build up of
14 // messages. Apply filtering to avoid that.
36 // Specifies what type of messages should be written to the trace file. The
42 // Returns what type of messages are written to the trace file.
54 // Registers callback to receive trace messages. TODO (hellner)
62 // level is the the type of message to log. If that type of messages is
  /packages/apps/Email/src/com/android/email/
MessagingListener.java 27 * is defined as non-abstract so that someone who wants to receive only a few messages can
54 * @param totalMessagesInMailbox The total number of messages in the mailbox
55 * @param numNewMessages The number of new messages
56 * @param addedMessages Message IDs of messages that were added during the synchronization.
57 * These are new, unread messages. Messages that were previously read are not in this list.
115 * General notification messages subclasses can override to be notified that the controller
  /frameworks/base/docs/html/google/gcm/
ccs.jd 11 <li>Learn how to send and receive both upstream and downstream messages in CCS.</li>
21 <li><a href="#send_msg">Sending Messages</a></li>
42 <p>You can continue to use the HTTP request mechanism to send messages to GCM servers, side-by-side with CCS which uses XMPP. Some of the benefits of CCS include:</p>
44 <li>The asynchronous nature of XMPP allows you to send more messages with fewer resources.</li>
45 <li>Communication is bidirectional&mdash;not only can the server send messages to the device, but the device can send messages back to the server.</li>
46 <li>You can send messages back using the same connection used for receiving, thereby improving battery life.</li>
57 <li>Upstream/Downstream messages
65 <li>GCM HTTP: 3rd-party servers send messages as HTTP POST requests and wait for a response. This mechanism is synchronous and causes the sender to block before sending another message.</li>
66 <li>CCS: 3rd-party servers connect to Google infrastructure using a persistent XMPP connection and send/receive messages to/from all their devices at full line speed. CCS sends acknowledgements or failure notifications (…)
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebChromeClient.cpp 99 m_page->send(Messages::WebPageProxy::SetWindowFrame(windowFrame));
106 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::GetWindowFrame(), Messages::WebPageProxy::GetWindowFrame::Reply(newWindowFrame), m_page->pageID()))
124 m_page->send(Messages::WebPageProxy::SetFocus(true));
129 m_page->send(Messages::WebPageProxy::SetFocus(false));
140 m_page->send(Messages::WebPageProxy::TakeFocus(direction));
152 WebProcess::shared().connection()->send(Messages::WebPageProxy::FocusedFrameChanged(webFrame ? webFrame->frameID() : 0), m_page->pageID());
162 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::CreateNewPage(windowFeatures, modifiers, mouseButton), Messages::WebPageProxy::CreateNewPage::Reply(newPageID, parameters), m_page->pageID()))
189 m_page->send(Messages::WebPageProxy::SetToolbarsAreVisible(toolbarsAreVisible))
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedWatcherTask.java 26 import org.eclipse.releng.util.rss.Messages;
86 { System.err.println(Messages.getString("RSSFeedCommon.FeedURLError")); } //$NON-NLS-1$
99 System.out.println((i==0 && missingActions==2 ? Messages.getString("RSSFeedWatcherTask.WarningNoScriptAction") : Messages.getString("RSSFeedWatcherTask.WarningNoCommandlineParams")) + SP + feedWatchActions ); //$NON-NLS-1$ //$NON-NLS-2$
112 System.out.println(Messages.getString("RSSFeedWatcherTask.PleaseRunThisTaskLater") + SP + file); //$NON-NLS-1$
113 System.out.println(Messages.getString("RSSFeedWatcherTask.ToTheLatestVersion") + SP + feedURL); //$NON-NLS-1$
116 System.err.println(Messages.getString("RSSFeedWatcherTask.ErrorNoWatchActions")); //$NON-NLS-1$
125 System.err.println(Messages.getString("RSSFeedWatcherTask.ErrorDestinationFileIsADirectory")); //$NON-NLS-1$
131 if (debug>0) { System.out.println(Messages.getString("RSSFeedWatcherTask.Compare") + SP + file + Messages.getString("RSSFeedWatcherTask.with") + tmpFile + CL); } //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3
    [all...]
  /external/chromium/chrome/common/extensions/
extension_message_bundle.h 17 // Contains localized extension messages for one locale. Any messages that the
24 // JSON keys of interest for messages file.
29 // Begin/end markers for placeholders and messages
50 // Values for some of the reserved messages.
72 // Number of messages in the catalog.
117 // Appends locale specific reserved messages to the dictionary.
118 // Returns false if there was a conflict with user defined messages.
142 // Holds all messages for application locale.
158 // Returns the extension_id to messages map
    [all...]
extension_l10n_util.h 41 bool LocalizeManifest(const ExtensionMessageBundle& messages,
52 // if messages file is present (we don't check content of messages file here).
80 // Loads messages file for default locale, and application locales (application
83 // Returns message bundle if it can load default locale messages file, and all
84 // messages are valid, else returns NULL and sets error.
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/generators/rss/
RSSFeedCreateFeedTask.java 24 import org.eclipse.releng.util.rss.Messages;
59 { System.err.println(Messages.getString("RSSFeedCommon.FileError")); } //$NON-NLS-1$
65 { System.err.println(Messages.getString("RSSFeedCommon.ProjectError")); } //$NON-NLS-1$
71 { System.err.println(Messages.getString("RSSFeedCommon.FeedURLError")); } //$NON-NLS-1$
79 System.out.println(Messages.getString("RSSFeedCreateFeedTask.Creating") + project + SP + Messages.getString("RSSFeedCommon.RSSFeedFile") + SP + file.toString() + ", " + Messages.getString("RSSFeedCommon.ToBePublishedAt") + feedURL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$ //$NON-NLS-6$
91 sb.append(" <title>" + project + SP + Messages.getString("RSSFeedCreateFeedTask.Builds") + "</title>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
95 sb.append(" <name>" + (!isNullString(project)?project + SP : NS) + Messages.getString("RSSFeedCreateFeedTask.BuildTeam") + "</name>" + NL); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$ //$NON-NLS-5$
109 System.out.println(Messages.getString("RSSFeedCreateFeedTask.UnableToWriteToFile")+file); //$NON-NLS-1
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowHandler.java 30 private List<Message> messages = new ArrayList<Message>(); field in class:ShadowHandler
99 messages.add(msg);
103 if (messages.contains(msg)) {
104 messages.remove(msg);
135 messages.add(0, msg);
139 if (messages.contains(msg)) {
140 messages.remove(msg);
160 for (Message message : messages) {
170 for (Message message : messages) {
186 for (Iterator<Message> iterator = messages.iterator(); iterator.hasNext(); )
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
WebBackForwardListProxy.cpp 91 WebProcess::shared().connection()->send(Messages::WebProcessProxy::AddBackForwardItem(itemID,
159 m_page->send(Messages::WebPageProxy::BackForwardAddItem(itemID));
167 m_page->send(Messages::WebPageProxy::BackForwardGoToItem(historyItemToIDMap().get(item)));
176 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardItemAtIndex(itemIndex), Messages::WebPageProxy::BackForwardItemAtIndex::Reply(itemID), m_page->pageID()))
191 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardBackListCount(), Messages::WebPageProxy::BackForwardBackListCount::Reply(backListCount), m_page->pageID()))
203 if (!WebProcess::shared().connection()->sendSync(Messages::WebPageProxy::BackForwardForwardListCount(), Messages::WebPageProxy::BackForwardForwardListCount::Reply(forwardListCount), m_page->pageID()))
222 m_page->send(Messages::WebPageProxy::BackForwardClear())
    [all...]
WebInspector.cpp 62 if (!WebProcess::shared().connection()->sendSync(Messages::WebInspectorProxy::CreateInspectorPage(),
63 Messages::WebInspectorProxy::CreateInspectorPage::Reply(inspectorPageID, parameters),
81 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::DidLoadInspectorPage(), m_page->pageID());
86 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::DidClose(), m_page->pageID());
91 WebProcess::shared().connection()->send(Messages::WebInspectorProxy::InspectedURLChanged(urlString), m_page->pageID());
94 // Called by WebInspector messages
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/mail/
Folder.java 72 * @param expunge If true all deleted messages will be expunged.
106 * Returns the number of messages in the selected folder.
115 * Fetches the given list of messages. The specified listener is notified as
116 * each fetch completes. Messages are downloaded as (as) lightweight (as
130 * Return a set of messages based on the state of the flags.
136 * @return A list of messages matching the desired flag states.
144 public abstract void appendMessages(Message[] messages) throws MessagingException;
147 * Copies the given messages to the destination folder.
152 public abstract void setFlags(Message[] messages, Flag[] flags, boolean value)
157 public abstract void fetch(Message[] messages, FetchProfile fp
    [all...]
  /frameworks/base/docs/html/training/cloudsync/
gcm.jd 11 <li><a href="#multicast">Send Multicast Messages Efficiently</a></li>
12 <li><a href="#collapse">Collapse Messages that can Be Replaced</a></li>
14 <li><a href="#react">React Intelligently to GCM Messages</a></li>
25 messages to Android devices. GCM messaging can greatly enhance the user
37 <h2 id="multicast">Send Multicast Messages Efficiently</h2>
39 a single message. This capability makes it much easier to send out important messages to
42 about 500 messages per second. If you send each message with only a single
94 <p>For a more thorough overview of the format of multicast GCM messages, see the <a
96 Messages</a> section of the GCM guide.</pre>
98 <h2 id="collapse">Collapse Messages that Can Be Replaced</h2
    [all...]
  /development/ndk/platforms/android-3/include/android/
log.h 38 * Support routines to send messages to the Android in-kernel log buffer,
53 * log message, if not already there. It is not possible to send several messages
58 * - Sending log messages eats CPU and slow down your application and the
61 * - The circular log buffer is pretty small (<64KB), sending many messages
62 * might push off other important log messages from the rest of the system.
64 * - In release builds, only send log messages to account for exceptional
  /external/chromium/chrome/browser/resources/gpu_internals/
browser_bridge.js 12 // If we are not running inside WebUI, output chrome.send messages
122 * This function checks for new GPU_LOG messages.
127 (function(messages) {
128 if (messages.length != this.logMessages_.length) {
129 this.logMessages_ = messages;
138 * Returns an array of log messages issued by the GPU process, if any.
  /external/chromium/chrome/browser/sync/
README.js 7 Basically, chrome://sync-internals sends asynchronous messages to the
9 chrome://sync-internals, either when replying to messages or when
12 Both messages and events have a name and a list of arguments, the
25 handle some messages itself, but it can also delegate the rest to a
27 method. A JsBackend can in turn handle some messages itself and
32 currently, the tree is more like a simple list). The sets of messages
  /external/llvm/utils/
clang-parse-diagnostics-file 14 default=False, help="dump all messages.")
16 default=False, help="dump 'error' messages.")
18 default=False, help="dump 'fatal error' messages.")
20 default=False, help="dump 'ignored' messages.")
22 default=False, help="dump 'note' messages.")
24 default=False, help="dump 'warning' messages.")
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/
WebFullScreenManager.cpp 90 m_page->send(Messages::WebFullScreenManagerProxy::BeganEnterFullScreenAnimation());
95 m_page->send(Messages::WebFullScreenManagerProxy::FinishedEnterFullScreenAnimation(completed));
100 m_page->send(Messages::WebFullScreenManagerProxy::BeganExitFullScreenAnimation());
105 m_page->send(Messages::WebFullScreenManagerProxy::FinishedExitFullScreenAnimation(completed));
111 m_page->sendSync(Messages::WebFullScreenManagerProxy::GetFullScreenRect(), Messages::WebFullScreenManagerProxy::GetFullScreenRect::Reply(rect));
  /packages/apps/Mms/src/com/android/mms/transaction/
SmsSingleRecipientSender.java 46 ArrayList<String> messages = null; local
52 messages = smsManager.divideMessage(msgText);
54 messages = smsManager.divideMessage(mMessageText);
61 int messageCount = messages.size();
66 "empty messages. Original message is \"" + mMessageText + "\"");
116 smsManager.sendMultipartTextMessage(mDest, mServiceCenter, messages, sentIntents, deliveryIntents);
  /prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/android/
log.h 38 * Support routines to send messages to the Android in-kernel log buffer,
53 * log message, if not already there. It is not possible to send several messages
58 * - Sending log messages eats CPU and slow down your application and the
61 * - The circular log buffer is pretty small (<64KB), sending many messages
62 * might push off other important log messages from the rest of the system.
64 * - In release builds, only send log messages to account for exceptional

Completed in 562 milliseconds

1 2 3 4 5 6 78 91011>>