Searched refs:scheme (Results 1 - 25 of 446) sorted by relevance

1234567891011>>

/macosx-10.9.5/WebCore-7537.78.1/platform/
H A DSchemeRegistry.cpp121 void SchemeRegistry::registerURLSchemeAsLocal(const String& scheme) argument
123 localURLSchemes().add(scheme);
126 void SchemeRegistry::removeURLSchemeRegisteredAsLocal(const String& scheme) argument
128 if (scheme == "file")
131 if (scheme == "applewebdata")
134 localURLSchemes().remove(scheme);
173 bool SchemeRegistry::shouldTreatURLSchemeAsLocal(const String& scheme) argument
175 if (scheme.isEmpty())
177 return localURLSchemes().contains(scheme);
180 void SchemeRegistry::registerURLSchemeAsNoAccess(const String& scheme) argument
185 shouldTreatURLSchemeAsNoAccess(const String& scheme) argument
192 registerURLSchemeAsDisplayIsolated(const String& scheme) argument
197 shouldTreatURLSchemeAsDisplayIsolated(const String& scheme) argument
204 registerURLSchemeAsSecure(const String& scheme) argument
209 shouldTreatURLSchemeAsSecure(const String& scheme) argument
216 registerURLSchemeAsEmptyDocument(const String& scheme) argument
221 shouldLoadURLSchemeAsEmptyDocument(const String& scheme) argument
228 setDomainRelaxationForbiddenForURLScheme(bool forbidden, const String& scheme) argument
239 isDomainRelaxationForbiddenForURLScheme(const String& scheme) argument
246 canDisplayOnlyIfCanRequest(const String& scheme) argument
253 registerAsCanDisplayOnlyIfCanRequest(const String& scheme) argument
258 registerURLSchemeAsNotAllowingJavascriptURLs(const String& scheme) argument
263 shouldTreatURLSchemeAsNotAllowingJavascriptURLs(const String& scheme) argument
270 registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsing(const String& scheme) argument
275 allowsLocalStorageAccessInPrivateBrowsing(const String& scheme) argument
282 registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsing(const String& scheme) argument
287 allowsDatabaseAccessInPrivateBrowsing(const String& scheme) argument
294 registerURLSchemeAsCORSEnabled(const String& scheme) argument
299 shouldTreatURLSchemeAsCORSEnabled(const String& scheme) argument
306 registerURLSchemeAsBypassingContentSecurityPolicy(const String& scheme) argument
311 removeURLSchemeRegisteredAsBypassingContentSecurityPolicy(const String& scheme) argument
316 schemeShouldBypassContentSecurityPolicy(const String& scheme) argument
323 shouldCacheResponsesFromURLSchemeIndefinitely(const String& scheme) argument
[all...]
H A DSchemeRegistry.h55 // SecurityOrigin::canDisplay) by documents from the same scheme.
67 static bool canDisplayOnlyIfCanRequest(const String& scheme);
68 static void registerAsCanDisplayOnlyIfCanRequest(const String& scheme);
72 static void registerURLSchemeAsNotAllowingJavascriptURLs(const String& scheme);
73 static bool shouldTreatURLSchemeAsNotAllowingJavascriptURLs(const String& scheme);
77 static void registerURLSchemeAsAllowingLocalStorageAccessInPrivateBrowsing(const String& scheme);
78 static bool allowsLocalStorageAccessInPrivateBrowsing(const String& scheme);
79 static void registerURLSchemeAsAllowingDatabaseAccessInPrivateBrowsing(const String& scheme);
80 static bool allowsDatabaseAccessInPrivateBrowsing(const String& scheme);
83 static void registerURLSchemeAsCORSEnabled(const String& scheme);
[all...]
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/gtk/
H A DWebKitSecurityManager.cpp38 * URI scheme with a certain security level, or to check if it already
69 static void registerSecurityPolicyForURIScheme(WebKitSecurityManager* manager, const char* scheme, SecurityPolicy policy) argument
71 String urlScheme = String::fromUTF8(scheme);
76 // a given URI scheme synchronously without blocking.
105 static bool checkSecurityPolicyForURIScheme(const char* scheme, SecurityPolicy policy) argument
107 String urlScheme = String::fromUTF8(scheme);
130 * @scheme: a URI scheme
132 * Register @scheme as a local scheme
135 webkit_security_manager_register_uri_scheme_as_local(WebKitSecurityManager* manager, const char* scheme) argument
153 webkit_security_manager_uri_scheme_is_local(WebKitSecurityManager* manager, const char* scheme) argument
169 webkit_security_manager_register_uri_scheme_as_no_access(WebKitSecurityManager* manager, const char* scheme) argument
187 webkit_security_manager_uri_scheme_is_no_access(WebKitSecurityManager* manager, const char* scheme) argument
203 webkit_security_manager_register_uri_scheme_as_display_isolated(WebKitSecurityManager* manager, const char* scheme) argument
221 webkit_security_manager_uri_scheme_is_display_isolated(WebKitSecurityManager* manager, const char* scheme) argument
238 webkit_security_manager_register_uri_scheme_as_secure(WebKitSecurityManager* manager, const char* scheme) argument
256 webkit_security_manager_uri_scheme_is_secure(WebKitSecurityManager* manager, const char* scheme) argument
273 webkit_security_manager_register_uri_scheme_as_cors_enabled(WebKitSecurityManager* manager, const char* scheme) argument
291 webkit_security_manager_uri_scheme_is_cors_enabled(WebKitSecurityManager* manager, const char* scheme) argument
307 webkit_security_manager_register_uri_scheme_as_empty_document(WebKitSecurityManager* manager, const char* scheme) argument
325 webkit_security_manager_uri_scheme_is_empty_document(WebKitSecurityManager* manager, const char* scheme) argument
[all...]
H A DWebKitSecurityManager.h63 const gchar *scheme);
67 const gchar *scheme);
71 const gchar *scheme);
75 const gchar *scheme);
79 const gchar *scheme);
83 const gchar *scheme);
87 const gchar *scheme);
91 const gchar *scheme);
95 const gchar *scheme);
99 const gchar *scheme);
[all...]
/macosx-10.9.5/ruby-104/ruby/benchmark/
H A Dbm_app_uri.rb5 uri.scheme
/macosx-10.9.5/WebCore-7537.78.1/platform/network/soup/
H A DAuthenticationChallengeSoup.cpp36 if (uri->scheme == SOUP_URI_SCHEME_HTTPS)
38 if (uri->scheme == SOUP_URI_SCHEME_HTTP)
40 if (uri->scheme == SOUP_URI_SCHEME_FTP)
48 ProtectionSpaceAuthenticationScheme scheme; local
50 scheme = ProtectionSpaceAuthenticationSchemeHTTPBasic;
52 scheme = ProtectionSpaceAuthenticationSchemeHTTPDigest;
54 scheme = ProtectionSpaceAuthenticationSchemeNTLM;
56 scheme = ProtectionSpaceAuthenticationSchemeNegotiate;
58 scheme = ProtectionSpaceAuthenticationSchemeUnknown;
63 String::fromUTF8(soup_auth_get_realm(soupAuth)), scheme);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/Modules/navigatorcontentutils/
H A DNavigatorContentUtils.idl23 [Conditional=NAVIGATOR_CONTENT_UTILS, RaisesException] void registerProtocolHandler(DOMString scheme, DOMString url, DOMString title);
24 [Conditional=NAVIGATOR_CONTENT_UTILS&CUSTOM_SCHEME_HANDLER, RaisesException] DOMString isProtocolHandlerRegistered(DOMString scheme, DOMString url);
25 [Conditional=NAVIGATOR_CONTENT_UTILS&CUSTOM_SCHEME_HANDLER, RaisesException] void unregisterProtocolHandler(DOMString scheme, DOMString url);
H A DNavigatorContentUtilsClient.h40 virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) = 0;
49 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url) = 0;
50 virtual void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url) = 0;
H A DNavigatorContentUtils.cpp91 static bool isProtocolWhitelisted(const String& scheme) argument
95 return protocolWhitelist->contains(scheme);
98 static bool verifyProtocolHandlerScheme(const String& scheme, ExceptionCode& ec) argument
100 if (scheme.startsWith("web+")) {
101 if (isValidProtocol(scheme))
107 if (isProtocolWhitelisted(scheme))
127 void NavigatorContentUtils::registerProtocolHandler(Navigator* navigator, const String& scheme, const String& url, const String& title, ExceptionCode& ec) argument
141 if (!verifyProtocolHandlerScheme(scheme, ec))
144 NavigatorContentUtils::from(navigator->frame()->page())->client()->registerProtocolHandler(scheme, baseURL, url, navigator->frame()->displayStringModifiedByEncoding(title));
167 String NavigatorContentUtils::isProtocolHandlerRegistered(Navigator* navigator, const String& scheme, cons argument
186 unregisterProtocolHandler(Navigator* navigator, const String& scheme, const String& url, ExceptionCode& ec) argument
[all...]
H A DNavigatorContentUtils.h51 static void registerProtocolHandler(Navigator*, const String& scheme, const String& url, const String& title, ExceptionCode&);
54 static String isProtocolHandlerRegistered(Navigator*, const String& scheme, const String& url, ExceptionCode&);
55 static void unregisterProtocolHandler(Navigator*, const String& scheme, const String& url, ExceptionCode&);
/macosx-10.9.5/WebKit-7537.78.2/blackberry/WebCoreSupport/
H A DNavigatorContentUtilsClientBlackBerry.cpp33 void NavigatorContentUtilsClientBlackBerry::registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) argument
35 m_webPagePrivate->m_client->registerProtocolHandler(scheme, baseURL, url, title);
40 NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientBlackBerry::isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url) argument
42 return static_cast<CustomHandlersState>(m_webPagePrivate->m_client->isProtocolHandlerRegistered(scheme, baseURL, url));
45 void NavigatorContentUtilsClientBlackBerry::unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url) argument
47 m_webPagePrivate->m_client->unregisterProtocolHandler(scheme, baseURL, url);
H A DNavigatorContentUtilsClientBlackBerry.h38 virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title);
41 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url);
42 virtual void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url);
/macosx-10.9.5/WebKit2-7537.78.2/UIProcess/API/qt/
H A Dqtwebsecurityorigin_p.h32 Q_PROPERTY(QString scheme READ scheme CONSTANT)
41 QString scheme() const;
48 void setScheme(const QString& scheme) { m_url.setScheme(scheme); } argument
H A Dqquickurlschemedelegate_p.h34 Q_PROPERTY(QString scheme READ scheme WRITE setScheme NOTIFY schemeChanged)
40 QString scheme() const;
41 void setScheme(const QString& scheme);
/macosx-10.9.5/WebKit-7537.78.2/efl/WebCoreSupport/
H A DNavigatorContentUtilsClientEfl.cpp38 static Ewk_Custom_Handler_Data* customHandlerDataCreate(Evas_Object* ewkView, const char* scheme, const char* baseURL, const char* url) argument
42 data->scheme = eina_stringshare_add(scheme);
50 eina_stringshare_del(data->scheme);
66 void NavigatorContentUtilsClientEfl::registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title) argument
68 Ewk_Custom_Handler_Data* data = customHandlerDataCreate(m_view, scheme.utf8().data(), baseURL.utf8().data(), url.utf8().data());
76 NavigatorContentUtilsClient::CustomHandlersState NavigatorContentUtilsClientEfl::isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url) argument
78 Ewk_Custom_Handler_Data* data = customHandlerDataCreate(m_view, scheme.utf8().data(), baseURL.utf8().data(), url.utf8().data());
85 void NavigatorContentUtilsClientEfl::unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url) argument
87 Ewk_Custom_Handler_Data* data = customHandlerDataCreate(m_view, scheme
[all...]
H A DNavigatorContentUtilsClientEfl.h42 virtual void registerProtocolHandler(const String& scheme, const String& baseURL, const String& url, const String& title);
45 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const String& baseURL, const String& url);
46 virtual void unregisterProtocolHandler(const String& scheme, const String& baseURL, const String& url);
/macosx-10.9.5/ruby-104/ruby/test/rdoc/
H A Dtest_rdoc_markup_formatter.rb83 scheme, url, id = @to.parse_url 'example/foo'
85 assert_equal 'http', scheme
91 scheme, url, id = @to.parse_url '#foottext-1'
93 assert_equal nil, scheme
99 scheme, url, id = @to.parse_url 'link:README.txt'
101 assert_equal 'link', scheme
107 scheme, url, id = @to.parse_url 'link:README.txt#label-foo'
109 assert_equal 'link', scheme
115 scheme, url, id = @to.parse_url 'rdoc-label:foo'
117 assert_equal 'link', scheme
[all...]
/macosx-10.9.5/CPANInternal-140/URI/t/
H A Dstorable-test.pl23 print "not " unless $u->scheme eq "http";
H A Durn-oid.t20 print "not " unless $u->scheme eq "urn" && $u->nid eq "oid";
/macosx-10.9.5/WebCore-7537.78.1/html/
H A DHTMLMetaElement.idl24 [Reflect] attribute DOMString scheme;
/macosx-10.9.5/WebCore-7537.78.1/platform/network/cf/
H A DAuthenticationCF.cpp159 CFURLProtectionSpaceAuthenticationScheme scheme = kCFURLProtectionSpaceAuthenticationSchemeDefault; local
162 scheme = kCFURLProtectionSpaceAuthenticationSchemeDefault;
165 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTTPBasic;
168 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTTPDigest;
171 scheme = kCFURLProtectionSpaceAuthenticationSchemeHTMLForm;
174 scheme = kCFURLProtectionSpaceAuthenticationSchemeNTLM;
177 scheme = kCFURLProtectionSpaceAuthenticationSchemeNegotiate;
181 scheme = kCFURLProtectionSpaceAuthenticationSchemeServerTrustEvaluationRequested;
184 scheme = kCFURLProtectionSpaceAuthenticationSchemeClientCertificateRequested;
191 return CFURLProtectionSpaceCreate(0, coreSpace.host().createCFString().get(), coreSpace.port(), serverType, coreSpace.realm().createCFString().get(), scheme);
255 ProtectionSpaceAuthenticationScheme scheme = ProtectionSpaceAuthenticationSchemeDefault; local
[all...]
/macosx-10.9.5/bind9-45.100/bind9/contrib/idn/idnkit-1.0-src/lib/
H A Dmapper.c64 * Type for mapping scheme.
122 map_scheme_t **scheme; local
135 for (scheme = (map_scheme_t **)standard_map_schemes;
136 *scheme != NULL; scheme++) {
137 r = idn__strhash_put(scheme_hash, (*scheme)->prefix, *scheme);
228 map_scheme_t *scheme; local
265 * Find a scheme.
267 if (idn__strhash_get(scheme_hash, scheme_prefix, (void **)&scheme)
442 map_scheme_t *scheme = NULL; local
[all...]
H A Dchecker.c62 * Type for checking scheme.
150 check_scheme_t **scheme; local
164 for (scheme = (check_scheme_t **)standard_check_schemes;
165 *scheme != NULL; scheme++) {
166 r = idn__strhash_put(scheme_hash, (*scheme)->prefix, *scheme);
258 check_scheme_t *scheme; local
293 * Find a scheme.
295 if (idn__strhash_get(scheme_hash, scheme_prefix, (void **)&scheme)
411 check_scheme_t *scheme = NULL; local
[all...]
/macosx-10.9.5/emacs-92/emacs/lisp/url/
H A Durl-methods.el36 (defvar url-scheme-registry (make-hash-table :size 7 :test 'equal))
38 (defconst url-scheme-methods
53 (defconst url-scheme-default-properties
55 'loader 'url-scheme-default-loader
66 (defun url-scheme-default-loader (url &optional callback cbargs)
67 "Signal an error for an unknown URL scheme."
68 (error "Unkown URL scheme: %s" (url-type url)))
70 (defun url-scheme-register-proxy (scheme)
72 (let* ((env-var (concat scheme "_prox
[all...]
/macosx-10.9.5/WebKit-7537.78.2/qt/Api/
H A Dqwebsecurityorigin.h40 static void addLocalScheme(const QString& scheme);
41 static void removeLocalScheme(const QString& scheme);
46 QString scheme() const;

Completed in 301 milliseconds

1234567891011>>