/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
D | SecurityPolicy.cpp | 54 bool referrerIsSecureURL = protocolIs(referrer, "https"); in shouldHideReferrer() 55 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http"); in shouldHideReferrer() 63 bool URLIsSecureURL = url.protocolIs("https"); in shouldHideReferrer() 73 if (!(protocolIs(referrer, "https") || protocolIs(referrer, "http"))) in generateReferrerHeader()
|
D | KURL.h | 132 bool protocolIs(const char*) const; 133 bool protocolIsData() const { return protocolIs("data"); } in protocolIsData() 135 bool protocolIsAbout() const { return protocolIs("about"); } in protocolIsAbout() 223 PLATFORM_EXPORT bool protocolIs(const String& url, const char* protocol);
|
D | KnownPorts.cpp | 147 if ((port == 21 || port == 22) && url.protocolIs("ftp")) in portAllowed() 151 if (url.protocolIs("file")) in portAllowed()
|
D | SecurityOrigin.cpp | 55 return url.protocolIsInHTTPFamily() || url.protocolIs("ftp"); in schemeRequiresAuthority() 68 if (url.protocolIs("blob")) in shouldUseInnerURL() 70 if (url.protocolIs("filesystem")) in shouldUseInnerURL() 179 if (url.protocolIs("file")) { in create()
|
D | KURLTest.cpp | 672 EXPECT_TRUE(url1.protocolIs("foo")); in TEST() 673 EXPECT_FALSE(url1.protocolIs("foo-bar")); in TEST() 676 EXPECT_TRUE(url2.protocolIs("foo-bar")); in TEST() 677 EXPECT_FALSE(url2.protocolIs("foo")); in TEST() 680 EXPECT_FALSE(invalidUTF8.protocolIs("http")); in TEST() 681 EXPECT_TRUE(invalidUTF8.protocolIs("")); in TEST()
|
D | KURL.cpp | 133 if (protocolIsAbout() || protocolIs("data") || protocolIs("javascript")) in strippedForUseAsReferrer() 152 return protocolIs("file"); in isLocalFile() 157 return protocolIs(url, "javascript"); in protocolIsJavaScript() 768 bool protocolIs(const String& url, const char* protocol) in protocolIs() function 865 bool KURL::protocolIs(const char* protocol) const in protocolIs() function in WebCore::KURL
|
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/ |
D | CSPSource.cpp | 41 return url.protocolIs("http") || url.protocolIs("https"); in schemeMatches()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | MIMETypeFromURL.cpp | 38 ASSERT(protocolIs(url, "data")); in mimeTypeFromDataURL()
|
/external/chromium_org/third_party/WebKit/Source/platform/blob/ |
D | BlobURL.cpp | 51 ASSERT(url.protocolIs(kBlobProtocol)); in getOrigin()
|
D | BlobRegistry.cpp | 286 if (url.protocolIs("blob")) in cachedOrigin()
|
/external/chromium_org/third_party/WebKit/Source/bindings/v8/ |
D | V8DOMActivityLogger.cpp | 66 if (!url.protocolIs("chrome-extension")) in activityLogger()
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
D | MixedContentChecker.cpp | 98 if (url.protocolIs("javascript")) in canSubmitToInsecureForm()
|
D | FormSubmission.cpp | 200 bool isMailtoForm = actionURL.protocolIs("mailto"); in create()
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
D | RTCPeerConnection.cpp | 148 …if (!url.isValid() || !(url.protocolIs("turn") || url.protocolIs("turns") || url.protocolIs("stun"… in parseConfiguration()
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
D | WebSocketHandshake.cpp | 81 ASSERT(url.protocolIs("wss") == secure); in hostName() 126 , m_secure(m_url.protocolIs("wss")) in WebSocketHandshake()
|
D | WebSocket.cpp | 292 if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) { in connect()
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
D | WebHTTPBody.cpp | 138 ASSERT(KURL(url).protocolIs("filesystem")); in appendFileSystemURLRange()
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLAnchorElement.cpp | 232 … if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//")) in parseAttribute()
|
D | HTMLPlugInElement.cpp | 394 if (m_serviceType.isEmpty() && protocolIs(m_url, "data")) in isImageType()
|
/external/chromium_org/third_party/WebKit/Source/web/ |
D | WebSearchableFormData.cpp | 75 return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http"); in IsHTTPFormSubmit()
|
D | WebPageSerializer.cpp | 126 if (frameURL.protocolIs(static_cast<CString>(supportedSchemes[i]).data())) { in retrieveResourcesForFrame()
|
D | WebPluginContainerImpl.cpp | 447 ASSERT(kurl.protocolIs("javascript")); in executeScriptURL()
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
D | Resource.cpp | 296 && !response.url().protocolIs("filesystem")) in freshnessLifetime() 517 if (hasCacheControlNoStoreHeader() && url().protocolIs("https")) { in removeClient()
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
D | DOMFileSystemBase.cpp | 91 if (!url.protocolIs("filesystem")) in crackFileSystemURL()
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | RenderDeprecatedFlexibleBox.cpp | 131 if (url.protocolIs("chrome")) in RenderDeprecatedFlexibleBox() 133 else if (url.protocolIs("chrome-extension")) in RenderDeprecatedFlexibleBox()
|