protocolIs       3864 Source/core/dom/Document.cpp         else if (url().protocolIs("data"))
protocolIs       3890 Source/core/dom/Document.cpp         else if (url().protocolIs("data"))
protocolIs        297 Source/core/fetch/Resource.cpp         && !response.url().protocolIs("filesystem"))
protocolIs        511 Source/core/fetch/Resource.cpp         if (response().cacheControlContainsNoStore() && url().protocolIs("https")) {
protocolIs        745 Source/core/frame/DOMWindow.cpp         else if (document->url().protocolIs("data"))
protocolIs        787 Source/core/frame/DOMWindow.cpp         else if (document->url().protocolIs("data"))
protocolIs         41 Source/core/frame/csp/CSPSource.cpp             return url.protocolIs("http") || url.protocolIs("https");
protocolIs        567 Source/core/frame/csp/ContentSecurityPolicy.cpp     if (!url.isHierarchical() || url.protocolIs("file"))
protocolIs        277 Source/core/html/HTMLAnchorElement.cpp                 if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//"))
protocolIs        835 Source/core/html/HTMLMediaElement.cpp     if (url.protocolIs(mediaSourceBlobProtocol)) {
protocolIs        380 Source/core/html/HTMLPlugInElement.cpp     if (m_serviceType.isEmpty() && protocolIs(m_url, "data"))
protocolIs        200 Source/core/loader/FormSubmission.cpp     bool isMailtoForm = actionURL.protocolIs("mailto");
protocolIs        130 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp         if (url.protocolIs("chrome"))
protocolIs        132 Source/core/rendering/RenderDeprecatedFlexibleBox.cpp         else if (url.protocolIs("chrome-extension"))
protocolIs        774 Source/core/xml/XMLHttpRequest.cpp     if (m_url.protocolIs("blob") && m_method != "GET") {
protocolIs         91 Source/modules/filesystem/DOMFileSystemBase.cpp     if (!url.protocolIs("filesystem"))
protocolIs        149 Source/modules/mediastream/RTCPeerConnection.cpp             if (!url.isValid() || !(url.protocolIs("turn") || url.protocolIs("turns") || url.protocolIs("stun"))) {
protocolIs        298 Source/modules/websockets/WebSocket.cpp     if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) {
protocolIs         93 Source/modules/websockets/WebSocketHandshake.cpp     ASSERT(url.protocolIs("wss") == secure);
protocolIs        135 Source/modules/websockets/WebSocketHandshake.cpp     , m_secure(m_url.protocolIs("wss"))
protocolIs         38 Source/platform/MIMETypeFromURL.cpp     ASSERT(protocolIs(url, "data"));
protocolIs        286 Source/platform/blob/BlobRegistry.cpp     if (url.protocolIs("blob"))
protocolIs         51 Source/platform/blob/BlobURL.cpp     ASSERT(url.protocolIs(kBlobProtocol));
protocolIs        138 Source/platform/exported/WebHTTPBody.cpp     ASSERT(KURL(url).protocolIs("filesystem"));
protocolIs        133 Source/platform/weborigin/KURL.cpp     if (isBlankURL() || protocolIs("data") || protocolIs("javascript"))
protocolIs        149 Source/platform/weborigin/KURL.cpp     return protocolIs("file");
protocolIs        154 Source/platform/weborigin/KURL.cpp     return protocolIs(url, "javascript");
protocolIs        165 Source/platform/weborigin/KURL.cpp     return protocolIs("about");
protocolIs        132 Source/platform/weborigin/KURL.h     bool protocolIs(const char*) const;
protocolIs        133 Source/platform/weborigin/KURL.h     bool protocolIsData() const { return protocolIs("data"); }
protocolIs        221 Source/platform/weborigin/KURL.h PLATFORM_EXPORT bool protocolIs(const String& url, const char* protocol);
protocolIs        643 Source/platform/weborigin/KURLTest.cpp     EXPECT_TRUE(url1.protocolIs("foo"));
protocolIs        644 Source/platform/weborigin/KURLTest.cpp     EXPECT_FALSE(url1.protocolIs("foo-bar"));
protocolIs        647 Source/platform/weborigin/KURLTest.cpp     EXPECT_TRUE(url2.protocolIs("foo-bar"));
protocolIs        648 Source/platform/weborigin/KURLTest.cpp     EXPECT_FALSE(url2.protocolIs("foo"));
protocolIs        651 Source/platform/weborigin/KURLTest.cpp     EXPECT_FALSE(invalidUTF8.protocolIs("http"));
protocolIs        652 Source/platform/weborigin/KURLTest.cpp     EXPECT_TRUE(invalidUTF8.protocolIs(""));
protocolIs        147 Source/platform/weborigin/KnownPorts.cpp     if ((port == 21 || port == 22) && url.protocolIs("ftp"))
protocolIs        151 Source/platform/weborigin/KnownPorts.cpp     if (url.protocolIs("file"))
protocolIs         54 Source/platform/weborigin/SecurityOrigin.cpp     return url.protocolIsInHTTPFamily() || url.protocolIs("ftp");
protocolIs         67 Source/platform/weborigin/SecurityOrigin.cpp     if (url.protocolIs("blob"))
protocolIs         69 Source/platform/weborigin/SecurityOrigin.cpp     if (url.protocolIs("filesystem"))
protocolIs        178 Source/platform/weborigin/SecurityOrigin.cpp         if (url.protocolIs("file")) {
protocolIs         54 Source/platform/weborigin/SecurityPolicy.cpp     bool referrerIsSecureURL = protocolIs(referrer, "https");
protocolIs         55 Source/platform/weborigin/SecurityPolicy.cpp     bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http");
protocolIs         63 Source/platform/weborigin/SecurityPolicy.cpp     bool URLIsSecureURL = url.protocolIs("https");
protocolIs         73 Source/platform/weborigin/SecurityPolicy.cpp     if (!(protocolIs(referrer, "https") || protocolIs(referrer, "http")))
protocolIs        905 Source/web/WebFrameImpl.cpp     if (resourceRequest.url().protocolIs("javascript")) {
protocolIs        126 Source/web/WebPageSerializer.cpp         if (frameURL.protocolIs(static_cast<CString>(supportedSchemes[i]).data())) {
protocolIs        455 Source/web/WebPluginContainerImpl.cpp     ASSERT(kurl.protocolIs("javascript"));
protocolIs         75 Source/web/WebSearchableFormData.cpp     return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http");