Searched refs:applicationName (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.9.5/WebCore-7537.78.1/platform/gtk/
H A DUserAgentGtk.h34 String standardUserAgent(const String& applicationName = "", const String& applicationVersion = "");
H A DUserAgentGtk.cpp80 String standardUserAgent(const String& applicationName, const String& applicationVersion) argument
95 if (applicationName.isEmpty())
102 return String::format("%s %s/%s", staticUA.utf8().data(), applicationName.utf8().data(), finalApplicationVersion.utf8().data());
/macosx-10.9.5/WebKit2-7537.78.2/SharedWorkerProcess/mac/
H A DSharedWorkerProcessMac.mm44 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Shared Worker", "Visible name of the shared worker process. The argument is the application name."), (NSString *)parameters.uiProcessName];
45 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.9.5/WebKit2-7537.78.2/OfflineStorageProcess/mac/
H A DOfflineStorageProcessMac.mm43 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Offline Storage", "visible name of the offline storage process. The argument is the application name."), (NSString *)parameters.uiProcessName];
44 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.9.5/WebKit-7537.78.2/mac/Plugins/Hosted/
H A DWebKitPluginAgent.defs35 applicationName :application_name_t;
/macosx-10.9.5/tcl-102/tk/tk/macosx/
H A DtkMacOSXMenus.c30 NSString *applicationName = [[NSBundle mainBundle] local
32 if (!applicationName) {
33 applicationName = [[NSProcessInfo processInfo] processName];
35 NSString *aboutName = (applicationName &&
36 ![applicationName isEqualToString:@"Wish"] &&
37 ![applicationName hasPrefix:@"tclsh"]) ?
38 applicationName : @"Tcl & Tk";
49 [NSString stringWithFormat:@"Hide %@", applicationName]
59 [NSString stringWithFormat:@"Quit %@", applicationName]
62 _defaultApplicationMenu = [TKMenu menuWithTitle:applicationName
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/qt/
H A DUserAgentQt.cpp52 \li %AppVersion% expands to QCoreApplication::applicationName()/QCoreApplication::applicationVersion() if they're set; otherwise defaulting to Qt and the current Qt version.
131 appName = QCoreApplication::applicationName();
/macosx-10.9.5/WebKit2-7537.78.2/NetworkProcess/mac/
H A DNetworkProcessMac.mm73 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Networking", "visible name of the network process. The argument is the application name."), (NSString *)parameters.uiProcessName];
74 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/mac/
H A DWebProcessMac.mm198 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Web Content", "Visible name of the web process. The argument is the application name."), (NSString *)parameters.uiProcessName];
199 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.9.5/WebKit2-7537.78.2/WebProcess/WebPage/gtk/
H A DWebPrintOperationGtk.cpp67 const char* applicationName = g_get_application_name(); local
68 GOwnPtr<char>jobName(g_strdup_printf("%s job #%d", applicationName ? applicationName : "WebKit", ++jobNumber));
/macosx-10.9.5/WebKit2-7537.78.2/PluginProcess/mac/
H A DPluginProcessMac.mm450 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ (%@ Internet plug-in)", "visible name of the plug-in host process. The first argument is the plug-in name and the second argument is the application name."), [[(NSString *)m_pluginPath lastPathComponent] stringByDeletingPathExtension], (NSString *)parameters.uiProcessName];
451 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.9.5/WebKit-7537.78.2/win/Interfaces/
H A DIWebViewPrivate.idl145 HRESULT standardUserAgentWithApplicationName([in] BSTR applicationName, [retval][out] BSTR* groupName);
H A DIWebView.idl400 @param applicationName The application name
401 - (void)setApplicationNameForUserAgent:(NSString *)applicationName;
403 HRESULT setApplicationNameForUserAgent([in] BSTR applicationName);
410 HRESULT applicationNameForUserAgent([out, retval] BSTR* applicationName);
/macosx-10.9.5/WebKit-7537.78.2/mac/WebView/
H A DWebView.h355 @param applicationName The application name
357 - (void)setApplicationNameForUserAgent:(NSString *)applicationName;
H A DWebViewPrivate.h303 + (NSString *)_standardUserAgentWithApplicationName:(NSString *)applicationName;
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebView.h207 /* [in] */ BSTR applicationName);
210 /* [retval][out] */ BSTR *applicationName);
694 /* [in] */ BSTR applicationName,
H A DWebView.cpp1315 String WebView::standardUserAgentWithApplicationName(const String& applicationName) argument
1320 return makeString("Mozilla/5.0 (", osVersion, ") AppleWebKit/", webKitVersion, " (KHTML, like Gecko)", applicationName.isEmpty() ? "" : " ", applicationName);
3149 /* [in] */ BSTR applicationName)
3151 m_applicationName = toString(applicationName);
3157 /* [retval][out] */ BSTR* applicationName)
3159 *applicationName = SysAllocStringLen(m_applicationName.characters(), m_applicationName.length());
3160 if (!*applicationName && m_applicationName.length())
5305 BSTR applicationName,
5315 if (!applicationName) {
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/C/
H A DWKPage.cpp779 WKStringRef WKPageCopyStandardUserAgentWithApplicationName(WKStringRef applicationName) argument
781 return toCopiedAPI(WebPageProxy::standardUserAgent(toImpl(applicationName)->string()));
H A DWKPage.h425 WK_EXPORT void WKPageSetApplicationNameForUserAgent(WKPageRef page, WKStringRef applicationName);
/macosx-10.9.5/SmartCardServices-55111/src/PCSC/
H A Dmusclecard.c291 MSCPUChar8 applicationName,
518 if ((applicationName == 0) || (nameSize == 0))
529 applicationName, nameSize);
289 MSCEstablishConnection(MSCLPTokenInfo tokenStruct, MSCULong32 sharingMode, MSCPUChar8 applicationName, MSCULong32 nameSize, MSCLPTokenConnection pConnection) argument
H A Dmusclecard.h694 MSCPUChar8 applicationName, /* The applet ID/Name */
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitSettings.cpp2666 void webkit_settings_set_user_agent_with_application_details(WebKitSettings* settings, const char* applicationName, const char* applicationVersion) argument
2670 CString newUserAgent = WebCore::standardUserAgent(String::fromUTF8(applicationName), String::fromUTF8(applicationVersion)).utf8();
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebsettings.cpp1225 storagePath = WebCore::pathByAppendingComponent(QDir::homePath(), QCoreApplication::applicationName());
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/
H A DWebPageProxy.h459 static String standardUserAgent(const String& applicationName = String());
H A DWebPageProxy.cpp1589 void WebPageProxy::setApplicationNameForUserAgent(const String& applicationName) argument
1591 if (m_applicationNameForUserAgent == applicationName)
1594 m_applicationNameForUserAgent = applicationName;

Completed in 286 milliseconds

12