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

12

/macosx-10.10/WebCore-7600.1.25/page/cocoa/
H A DUserAgent.h33 String standardUserAgentWithApplicationName(const String& applicationName, const String& webkitVersionString);
/macosx-10.10/WebCore-7600.1.25/page/ios/
H A DUserAgentIOS.mm34 String standardUserAgentWithApplicationName(const String& applicationName, const String& fullWebKitVersionString)
51 if (applicationName.isEmpty())
53 return [NSString stringWithFormat:@"Mozilla/5.0 (%@; CPU %@ %@ like Mac OS X) AppleWebKit/%@ (KHTML, like Gecko) %@", deviceName, osNameForUserAgent, osMarketingVersionString, webKitVersion, static_cast<NSString *>(applicationName)];
/macosx-10.10/WebCore-7600.1.25/page/mac/
H A DUserAgentMac.mm41 String standardUserAgentWithApplicationName(const String& applicationName, const String& fullWebKitVersionString)
46 if (applicationName.isEmpty())
48 return makeString("Mozilla/5.0 (Macintosh; " PROCESSOR " Mac OS X ", osVersion, ") AppleWebKit/", webKitVersionString, " (KHTML, like Gecko) ", applicationName);
/macosx-10.10/WebCore-7600.1.25/platform/gtk/
H A DUserAgentGtk.h34 String standardUserAgent(const String& applicationName = emptyString(), const String& applicationVersion = emptyString());
H A DUserAgentGtk.cpp155 String standardUserAgent(const String& applicationName, const String& applicationVersion)
165 if (applicationName.isEmpty())
172 return standardUserAgentStatic() + ' ' + applicationName + '/' + finalApplicationVersion;
/macosx-10.10/WebKit2-7600.1.25/DatabaseProcess/mac/
H A DDatabaseProcessMac.mm49 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Database Storage", "visible name of the database process. The argument is the application name."), (NSString *)parameters.uiProcessName];
50 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/Hosted/
H A DWebKitPluginAgent.defs35 applicationName :application_name_t;
/macosx-10.10/tcl-105/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.10/WebCore-7600.1.25/crypto/mac/
H A DSerializedCryptoKeyWrapMac.mm79 NSString *applicationName = [mainBundle objectForInfoDictionaryKey:@"CFBundleDisplayName"];
80 if (!applicationName)
81 applicationName = [mainBundle objectForInfoDictionaryKey:(NSString *)kCFBundleNameKey];
82 if (!applicationName)
83 applicationName = [mainBundle bundleIdentifier];
84 NSString *localizedItemName = webCryptoMasterKeyKeychainLabel(applicationName);
/macosx-10.10/WebKit2-7600.1.25/NetworkProcess/mac/
H A DNetworkProcessMac.mm63 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Networking", "visible name of the network process. The argument is the application name."), (NSString *)parameters.uiProcessName];
64 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/cocoa/
H A DWebProcessCocoa.mm218 NSString *applicationName = [NSString stringWithFormat:WEB_UI_STRING("%@ Web Content", "Visible name of the web process. The argument is the application name."), (NSString *)parameters.uiProcessName];
219 WKSetVisibleApplicationName((CFStringRef)applicationName);
/macosx-10.10/WebKit2-7600.1.25/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.10/WebKit2-7600.1.25/UIProcess/API/Cocoa/
H A DWKBrowsingContextController.mm277 const String& applicationName = _page->applicationNameForUserAgent();
278 return !applicationName ? nil : (NSString *)applicationName;
/macosx-10.10/WebKit-7600.1.25/win/Interfaces/
H A DIWebViewPrivate.idl145 HRESULT standardUserAgentWithApplicationName([in] BSTR applicationName, [retval][out] BSTR* groupName);
H A DIWebView.idl403 @param applicationName The application name
404 - (void)setApplicationNameForUserAgent:(NSString *)applicationName;
406 HRESULT setApplicationNameForUserAgent([in] BSTR applicationName);
413 HRESULT applicationNameForUserAgent([out, retval] BSTR* applicationName);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/gtk/
H A DWebPrintOperationGtk.cpp79 const char* applicationName = g_get_application_name(); variable
80 GUniquePtr<char>jobName(g_strdup_printf("%s job #%d", applicationName ? applicationName : "WebKit", ++jobNumber));
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebView.h199 /* [in] */ BSTR applicationName);
202 /* [retval][out] */ BSTR *applicationName);
681 /* [in] */ BSTR applicationName,
H A DWebView.cpp1322 String WebView::standardUserAgentWithApplicationName(const String& applicationName) argument
1327 return makeString("Mozilla/5.0 (", osVersion, ") AppleWebKit/", webKitVersion, " (KHTML, like Gecko)", applicationName.isEmpty() ? "" : " ", applicationName);
3171 /* [in] */ BSTR applicationName)
3173 m_applicationName = toString(applicationName);
3179 /* [retval][out] */ BSTR* applicationName)
3181 *applicationName = BString(m_applicationName).release();
3182 if (!*applicationName && m_applicationName.length())
5316 BSTR applicationName,
5326 if (!applicationName) {
[all...]
/macosx-10.10/WebKit2-7600.1.25/UIProcess/API/C/
H A DWKPage.h118 WK_EXPORT void WKPageSetApplicationNameForUserAgent(WKPageRef page, WKStringRef applicationName);
H A DWKPage.cpp1691 WKStringRef WKPageCopyStandardUserAgentWithApplicationName(WKStringRef applicationName)
1693 return toCopiedAPI(WebPageProxy::standardUserAgent(toImpl(applicationName)->string()));
/macosx-10.10/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.10/WebKit2-7600.1.25/UIProcess/API/gtk/
H A DWebKitSettings.cpp2758 void webkit_settings_set_user_agent_with_application_details(WebKitSettings* settings, const char* applicationName, const char* applicationVersion) argument
2762 CString newUserAgent = WebCore::standardUserAgent(String::fromUTF8(applicationName), String::fromUTF8(applicationVersion)).utf8();
/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebViewPrivate.h403 + (NSString *)_standardUserAgentWithApplicationName:(NSString *)applicationName;
/macosx-10.10/WebKit2-7600.1.25/UIProcess/
H A DWebPageProxy.cpp1804 void WebPageProxy::setApplicationNameForUserAgent(const String& applicationName) argument
1806 if (m_applicationNameForUserAgent == applicationName)
1809 m_applicationNameForUserAgent = applicationName;

Completed in 412 milliseconds

12