HomeSort by relevance Sort by last modified time
    Searched refs:Messages (Results 51 - 75 of 189) sorted by null

1 23 4 5 6 7 8

  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.cpp 76 void PluginProcessProxy::getPluginProcessConnection(PassRefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> reply)
87 m_connection->send(Messages::PluginProcess::CreateWebProcessConnection(), 0, CoreIPC::DispatchMessageEvenWhenWaitingForSyncReply);
101 m_connection->send(Messages::PluginProcess::GetSitesWithData(callbackID), 0);
120 m_connection->send(Messages::PluginProcess::ClearSiteData(sites, flags, maxAgeInSeconds, callbackID), 0);
132 RefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> reply = m_pendingConnectionReplies.takeFirst();
198 m_connection->send(Messages::PluginProcess::InitializePluginProcess(parameters), 0);
202 m_connection->send(Messages::PluginProcess::GetSitesWithData(m_pendingGetSitesRequests[i]), 0);
207 m_connection->send(Messages::PluginProcess::ClearSiteData(request.sites, request.flags, request.maxAgeInSeconds, request.callbackID), 0);
212 m_connection->send(Messages::PluginProcess::CreateWebProcessConnection(), 0);
223 RefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> reply = m_pendingConnectionReplies.tak (…)
    [all...]
PluginProcessManager.h 53 void getPluginProcessConnection(PluginInfoStore*, const String& pluginPath, PassRefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply>);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/util/rss/
RSSFeedUtil.java 72 System.out.println(Messages.getString("RSSFeedPublisherTask.Execute") + SP + executable + (commandline==null?"":SP + commandline)); //$NON-NLS-1$ //$NON-NLS-2$
80 System.err.println(Messages.getString("RSSFeedPublisherTask.ForProject") + SP + project.getName() + CL); //$NON-NLS-1$
95 System.err.println(Messages.getString("RSSFeedPublisherTask.Result") + SP + out); //$NON-NLS-1$
106 if (debug>1 && out.equals(Messages.getString("RSSFeedPublisherTask.CVSWarning"))) { //$NON-NLS-1$
108 } else if (!out.equals(Messages.getString("RSSFeedPublisherTask.CVSWarning"))) { //$NON-NLS-1$
109 System.err.println(Messages.getString("RSSFeedPublisherTask.Error") + SP + out); //$NON-NLS-1$
  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/templates/
SimpleFile.java 20 import com.android.ide.eclipse.ndk.internal.Messages;
72 throw new ProcessFailureException(Messages.SimpleFile_Bad_file_operation);
79 throw new ProcessFailureException(Messages.SimpleFile_No_project_name);
82 throw new ProcessFailureException(Messages.SimpleFile_Project_does_not_exist);
87 throw new ProcessFailureException(Messages.SimpleFile_Bundle_not_found);
101 throw new ProcessFailureException(Messages.SimpleFile_Could_not_fine_source
SetFolders.java 19 import com.android.ide.eclipse.ndk.internal.Messages;
62 throw new ProcessFailureException(Messages.SetFolders_Missing_project_name);
66 throw new ProcessFailureException(Messages.SetFolders_Project_does_not_exist);
70 throw new ProcessFailureException(Messages.SetFolders_No_folders);
  /external/webkit/Source/WebKit2/WebProcess/Cookies/
WebCookieManager.cpp 66 WebProcess::shared().connection()->send(Messages::WebCookieManagerProxy::DidGetHostnamesWithCookies(hostnameList, callbackID), 0);
97 WebProcess::shared().connection()->send(Messages::WebCookieManagerProxy::CookiesDidChange(), 0);
109 WebProcess::shared().connection()->send(Messages::WebCookieManagerProxy::DidGetHTTPCookieAcceptPolicy(platformGetHTTPCookieAcceptPolicy(), callbackID), 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
Messages.java 6 public class Messages extends NLS {
143 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
146 private Messages() {
DexWrapper.java 74 Messages.DexWrapper_s_does_not_exists, osFilepath));
100 return createErrorStatus(Messages.DexWrapper_SecuryEx_Unable_To_Find_API, e);
102 return createErrorStatus(Messages.DexWrapper_SecuryEx_Unable_To_Find_Method, e);
104 return createErrorStatus(Messages.DexWrapper_SecuryEx_Unable_To_Find_Field, e);
111 String.format(Messages.DexWrapper_Failed_to_load_s, osFilepath), e);
114 String.format(Messages.DexWrapper_Failed_to_load_s, osFilepath), e);
163 String.format(Messages.DexWrapper_Unable_To_Execute_Dex_s,
201 String.format(Messages.DexWrapper_Unable_To_Execute_Dex_s, msg), t));
207 AdtPlugin.printErrorToConsole(Messages.DexWrapper_Dex_Loader, message);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/views/
TableView.java 22 import com.android.ide.eclipse.ddms.i18n.Messages;
74 mCopyAction = new Action(Messages.TableView_Copy) {
85 mSelectAllAction = new Action(Messages.TableView_Select_All) {
LogCatView.java 24 import com.android.ide.eclipse.ddms.i18n.Messages;
70 new Action(Messages.LogCatView_Copy) {
78 new Action(Messages.LogCatView_Select_All) {
OldLogCatView.java 28 import com.android.ide.eclipse.ddms.i18n.Messages;
196 mCreateFilterAction = new CommonAction(Messages.LogCatView_Create_Filter) {
202 mCreateFilterAction.setToolTipText(Messages.LogCatView_Create_Filter_Tooltip);
205 mEditFilterAction = new CommonAction(Messages.LogCatView_Edit_Filter) {
211 mEditFilterAction.setToolTipText(Messages.LogCatView_Edit_Filter_Tooltip);
214 mDeleteFilterAction = new CommonAction(Messages.LogCatView_Delete_Filter) {
220 mDeleteFilterAction.setToolTipText(Messages.LogCatView_Delete_Filter_Tooltip);
223 mExportAction = new CommonAction(Messages.LogCatView_Export_Selection_As_Text) {
229 mExportAction.setToolTipText(Messages.LogCatView_Export_Selection_As_Text_Tooltip);
258 mClearAction = new Action(Messages.LogCatView_Clear_Log)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src_rss/org/eclipse/releng/services/rss/
RSSFeedPublisherTask.java 25 import org.eclipse.releng.util.rss.Messages;
128 System.err.println(Messages.getString("RSSFeedPublisherTask.ErrorInvalidFile") + CL + SP + file + "!"); //$NON-NLS-1$ //$NON-NLS-2$
130 if (debug>0) { System.out.println(Messages.getString("RSSFeedPublisherTask.Publish") + SP + file); } //$NON-NLS-1$
139 System.err.println(Messages.getString("RSSFeedPublisherTask.ErrorNothingToDo")); //$NON-NLS-1$
147 System.out.println(Messages.getString("RSSFeedPublisherTask.UsingCVSRoot") + SP + CVSRoot); //$NON-NLS-1$
148 System.out.println(Messages.getString("RSSFeedPublisherTask.UsingCVSPath") + SP + CVSPath); //$NON-NLS-1$
163 System.err.println(Messages.getString("RSSFeedPublisherTask.ErrorCouldNotDeleteTempFolder") + SP + CVSTempDir); //$NON-NLS-1$
168 System.out.println(Messages.getString("RSSFeedPublisherTask.UsingCVSTemp") + SP + CVSTempDir); //$NON-NLS-1$
212 System.out.println(Messages.getString("RSSFeedPublisherTask.PublishToSCPTarget") + SP + SCPTarget); //$NON-NLS-1$
  /external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/
WebFrameLoaderClient.cpp 136 webPage->send(Messages::WebPageProxy::DidRemoveFrameFromHierarchy(m_frame->frameID(), InjectedBundleUserMessageEncoder(userData.get())));
156 webPage->send(Messages::WebPageProxy::DidInitiateLoadForResource(m_frame->frameID(), identifier, request, pageIsProvisionallyLoading));
172 webPage->send(Messages::WebPageProxy::DidSendRequestForResource(m_frame->frameID(), identifier, request, redirectResponse));
208 if (!webPage->sendSync(Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame(m_frame->frameID(), protectionSpace), Messages::WebPageProxy::CanAuthenticateAgainstProtectionSpaceInFrame::Reply(canAuthenticate)))
222 webPage->send(Messages::WebPageProxy::DidReceiveResponseForResource(m_frame->frameID(), identifier, response));
232 webPage->send(Messages::WebPageProxy::DidReceiveContentLengthForResource(m_frame->frameID(), identifier, dataLength));
242 webPage->send(Messages::WebPageProxy::DidFinishLoadForResource(m_frame->frameID(), identifier));
252 webPage->send(Messages::WebPageProxy::DidFailLoadForResource(m_frame->frameID(), identifier, error));
290 webPage->send(Messages::WebPageProxy::DidReceiveServerRedirectForProvisionalLoadForFrame(m_frame->frameID(), url, Injecte (…)
    [all...]
WebPlatformStrategies.cpp 107 WebProcess::shared().connection()->sendSync(Messages::WebContext::GetPlugins(m_shouldRefreshPlugins),
108 Messages::WebContext::GetPlugins::Reply(plugins), 0);
WebPopupMenu.cpp 115 WebProcess::shared().connection()->send(Messages::WebPageProxy::ShowPopupMenu(pageCoordinates, m_popupClient->menuStyle().textDirection(), items, index, platformData), m_page->pageID());
123 WebProcess::shared().connection()->send(Messages::WebPageProxy::HidePopupMenu(), m_page->pageID());
134 WebProcess::shared().connection()->send(Messages::WebPageProxy::SetPopupMenuSelectedIndex(selectedIndex), m_page->pageID());
WebDatabaseManager.cpp 109 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidGetDatabasesByOrigin(originAndDatabasesVector, callbackID), 0);
124 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidGetDatabaseOrigins(identifiers, callbackID), 0);
174 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidModifyOrigin(origin->databaseIdentifier()), 0);
180 WebProcess::shared().connection()->send(Messages::WebDatabaseManagerProxy::DidModifyDatabase(origin->databaseIdentifier(), databaseIdentifier), 0);
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginProcessConnectionManager.cpp 70 if (!WebProcess::shared().connection()->sendSync(Messages::WebProcessProxy::GetPluginProcessConnection(pluginPath), Messages::WebProcessProxy::GetPluginProcessConnection::Reply(connectionMachPort), 0))
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AndroidPrintStream.java 83 return String.format(Messages.Console_Date_Tag, c);
86 return String.format(Messages.Console_Data_Project_Tag, c, tag);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/preferences/
LogCatPreferencePage.java 25 import com.android.ide.eclipse.ddms.i18n.Messages;
60 Messages.LogCatPreferencePage_Display_Font, getFieldEditorParent());
65 Messages.LogCatPreferencePage_MaxMessages, getFieldEditorParent());
84 Messages.LogCatPreferencePage_Switch_Perspective, getFieldEditorParent());
98 Messages.LogCatPreferencePage_Switch_To, perspectives, getFieldEditorParent());
106 Messages.LogCatPreferencePage_AutoMonitorLogcat,
111 Messages.LogCatPreferencePage_SessionFilterLogLevel,
  /external/llvm/lib/Analysis/
Analysis.cpp 81 std::string Messages;
85 OutMessages? &Messages : 0);
88 *OutMessages = strdup(Messages.c_str());
  /external/webkit/Source/WebKit2/UIProcess/
VisitedLinkProvider.cpp 168 m_context->sendToAllProcesses(Messages::WebProcess::SetVisitedLinkTable(handle));
173 m_context->sendToAllProcesses(Messages::WebProcess::VisitedLinkStateChanged(addedVisitedLinks));
178 m_context->sendToAllProcesses(Messages::WebProcess::AllVisitedLinkStateChanged());
GeolocationPermissionRequestManagerProxy.cpp 66 m_page->process()->send(Messages::WebPage::DidReceiveGeolocationPermissionDecision(geolocationID, allowed), m_page->pageID());
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/i18n/
Messages.java 21 public class Messages extends NLS {
22 private static final String BUNDLE_NAME = "com.android.ide.eclipse.ddms.i18n.messages"; //$NON-NLS-1$
116 NLS.initializeMessages(BUNDLE_NAME, Messages.class);
119 private Messages() {
  /external/webkit/Source/WebKit2/WebProcess/MediaCache/
WebMediaCacheManager.cpp 64 WebProcess::shared().connection()->send(Messages::WebMediaCacheManagerProxy::DidGetHostnamesWithMediaCache(mediaCacheHostnames, callbackID), 0);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/
VersionCheck.java 23 import com.android.ide.eclipse.adt.Messages;
109 Messages.VersionCheck_Plugin_Version_Failed);
133 String.format(Messages.VersionCheck_Plugin_Too_Old,
172 String.format(Messages.VersionCheck_Tools_Too_Old,

Completed in 497 milliseconds

1 23 4 5 6 7 8