/external/webkit/WebCore/platform/network/win/ |
D | CookieJarCFNetWin.cpp | 103 bool secure = url.protocolIs("https"); in cookies() 117 bool secure = url.protocolIs("https"); in cookieRequestHeaderFieldValue() 140 bool sendSecureCookies = url.protocolIs("https"); in getRawCookies() 173 bool sendSecureCookies = url.protocolIs("https"); in deleteCookie()
|
/external/webkit/WebCore/platform/ |
D | KURLGoogle.cpp | 735 return protocolIs(url, "javascript"); in protocolIsJavaScript() 852 if ((port == 21 || port == 22) && url.protocolIs("ftp")) in portAllowed() 856 if (url.protocolIs("file")) in portAllowed() 869 ASSERT(protocolIs(url, "data")); in mimeTypeFromDataURL() 963 bool KURL::protocolIs(const char* protocol) const in protocolIs() function in WebCore::KURL 981 return protocolIs("file"); in isLocalFile() 1093 bool protocolIs(const String& url, const char* protocol) in protocolIs() function 1105 inline bool KURL::protocolIs(const String& string, const char* protocol) in protocolIs() function in WebCore::KURL 1107 return WebCore::protocolIs(string, protocol); in protocolIs()
|
D | KURL.cpp | 289 inline bool KURL::protocolIs(const String& string, const char* protocol) in protocolIs() function in WebCore::KURL 291 return WebCore::protocolIs(string, protocol); in protocolIs() 349 if (rel.contains('\\') && !(protocolIsJavaScript(rel) || protocolIs(rel, "data"))) in init() 635 bool KURL::protocolIs(const char* protocol) const in protocolIs() function in WebCore::KURL 846 } else if (protocolIs("file")) { in prettyURL() 927 return protocolIs("file"); in isLocalFile() 1548 if (protocolIs(str, "mailto")) { in encodeHostnames() 1583 …if (encoding != pathEncoding && encoding.isValid() && !protocolIs(rel, "mailto") && !protocolIs(re… in encodeRelativeString() 1637 bool protocolIs(const String& url, const char* protocol) in protocolIs() function 1651 return protocolIs(url, "javascript"); in protocolIsJavaScript() [all …]
|
D | KURL.h | 143 bool protocolIs(const char*) const; 217 static bool protocolIs(const String&, const char*); 267 bool protocolIs(const String& url, const char* protocol);
|
/external/webkit/WebCore/page/ |
D | SecurityOrigin.cpp | 253 if (url.protocolIs("data")) in taintsCanvas() 477 bool referrerIsSecureURL = protocolIs(referrer, "https"); in shouldHideReferrer() 478 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http"); in shouldHideReferrer() 486 bool URLIsSecureURL = url.protocolIs("https"); in shouldHideReferrer()
|
D | XSSAuditor.cpp | 361 if (frame->document()->url().protocolIs("data")) in findInRequest()
|
/external/webkit/WebCore/wml/ |
D | WMLAElement.cpp | 63 if (protocolIs(value, "http") || protocolIs(value, "https") || value.startsWith("//")) in parseMappedAttribute()
|
/external/webkit/WebKit/android/benchmark/ |
D | Intercept.cpp | 51 if (protocolIs(m_url, "data")) in handleRequest() 53 else if (protocolIs(m_url, "file")) in handleRequest()
|
/external/webkit/WebCore/websockets/ |
D | WebSocket.cpp | 128 if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) { in connect()
|
/external/webkit/WebKit/chromium/tests/ |
D | KURLTest.cpp | 603 EXPECT_TRUE(url1.protocolIs("foo")); in TEST() 604 EXPECT_FALSE(url1.protocolIs("foo-bar")); in TEST() 607 EXPECT_TRUE(url2.protocolIs("foo-bar")); in TEST() 608 EXPECT_FALSE(url2.protocolIs("foo")); in TEST()
|
/external/webkit/WebCore/html/ |
D | HTMLPlugInImageElement.cpp | 43 if (m_serviceType.isEmpty() && protocolIs(m_url, "data")) in isImageType()
|
D | HTMLAnchorElement.cpp | 281 … if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//")) in parseMappedAttribute()
|
D | HTMLFormElement.cpp | 105 return document()->completeURL(url).protocolIs("https"); in formWouldHaveSecureSubmission() 288 return protocolIs(m_url, "mailto"); in isMailtoForm()
|
/external/webkit/WebCore/platform/qt/ |
D | KURLQt.cpp | 99 if (!isValid() || !protocolIs("file")) in fileSystemPath()
|
/external/webkit/WebCore/platform/network/ |
D | ResourceHandle.cpp | 127 return !url.protocolIs("file"); in shouldContentSniffURL()
|
/external/webkit/WebCore/platform/network/cf/ |
D | SocketStreamHandle.h | 72 bool shouldUseSSL() const { return m_url.protocolIs("wss"); } in shouldUseSSL()
|
D | SocketStreamHandleCFNet.cpp | 68 ASSERT(url.protocolIs("ws") || url.protocolIs("wss")); in SocketStreamHandle()
|
/external/webkit/WebCore/platform/network/qt/ |
D | QNetworkReplyHandler.cpp | 345 if (!newRequest.url().protocolIs("https") && protocolIs(newRequest.httpReferrer(), "https")) in sendResponseIfNeeded()
|
D | SocketStreamHandleQt.cpp | 47 bool isSecure = url.protocolIs("wss"); in SocketStreamHandlePrivate()
|
/external/webkit/WebCore/loader/ |
D | MainResourceLoader.cpp | 195 return url.isEmpty() || (url.protocolIs("about") && equalIgnoringRef(url, blankURL())); in shouldLoadAsEmptyDocument() 197 return url.isEmpty() || url.protocolIs("about"); in shouldLoadAsEmptyDocument()
|
D | DocLoader.cpp | 335 if (kurl.protocolIs("http") || kurl.protocolIs("https")) in shouldBlockNetworkImage()
|
/external/webkit/WebKit/chromium/src/ |
D | FrameLoaderClientImpl.cpp | 677 ASSERT(m_expectedClientRedirectDest.protocolIs("javascript") in dispatchDidStartProvisionalLoad() 908 if (url.protocolIs(backForwardNavigationScheme)) { in dispatchDecidePolicyForNavigationAction() 1466 ASSERT(url.protocolIs(backForwardNavigationScheme)); in handleBackForwardNavigation()
|
/external/webkit/WebKit/win/ |
D | WebHistoryItem.cpp | 194 …if (lastVisitWasHTTPNonGet && (protocolIs(m_historyItem->urlString(), "http") || protocolIs(m_hist… in initFromDictionaryRepresentation()
|
/external/webkit/WebCore/platform/network/curl/ |
D | ResourceHandleManager.cpp | 630 if (kurl.protocolIs("data")) { in dispatchSynchronousJob() 661 if (kurl.protocolIs("data")) { in startJob()
|
/external/webkit/WebCore/platform/network/soup/ |
D | ResourceHandleSoup.cpp | 206 if (!request.url().protocolIs("https") && protocolIs(request.httpReferrer(), "https")) { in restartedCallback()
|