/external/chromium_org/third_party/WebKit/Source/platform/weborigin/ |
SecurityPolicy.cpp | 54 bool referrerIsSecureURL = protocolIs(referrer, "https"); 55 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http"); 63 bool URLIsSecureURL = url.protocolIs("https");
|
KnownPorts.cpp | 147 if ((port == 21 || port == 22) && url.protocolIs("ftp")) 151 if (url.protocolIs("file"))
|
KURL.h | 132 bool protocolIs(const char*) const; 133 bool protocolIsData() const { return protocolIs("data"); } 221 PLATFORM_EXPORT bool protocolIs(const String& url, const char* protocol);
|
SecurityOrigin.cpp | 54 return url.protocolIsInHTTPFamily() || url.protocolIs("ftp"); 67 if (url.protocolIs("blob")) 69 if (url.protocolIs("filesystem")) 178 if (url.protocolIs("file")) {
|
KURL.cpp | 133 if (isBlankURL() || protocolIs("data") || protocolIs("javascript")) 149 return protocolIs("file"); 154 return protocolIs(url, "javascript"); 165 return protocolIs("about"); 734 bool protocolIs(const String& url, const char* protocol) 831 bool KURL::protocolIs(const char* protocol) const
|
KURLTest.cpp | 645 TEST(KURLTest, ProtocolIs) 648 EXPECT_TRUE(url1.protocolIs("foo")); 649 EXPECT_FALSE(url1.protocolIs("foo-bar")); 652 EXPECT_TRUE(url2.protocolIs("foo-bar")); 653 EXPECT_FALSE(url2.protocolIs("foo")); 656 EXPECT_FALSE(invalidUTF8.protocolIs("http")); 657 EXPECT_TRUE(invalidUTF8.protocolIs(""));
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
MIMETypeFromURL.cpp | 38 ASSERT(protocolIs(url, "data"));
|
/external/chromium_org/third_party/WebKit/Source/platform/blob/ |
BlobURL.cpp | 51 ASSERT(url.protocolIs(kBlobProtocol));
|
BlobRegistry.cpp | 286 if (url.protocolIs("blob"))
|
/external/chromium_org/third_party/WebKit/Source/modules/mediastream/ |
RTCPeerConnection.cpp | 102 if (!url.isValid() || !(url.protocolIs("turn") || url.protocolIs("turns") || url.protocolIs("stun"))) {
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/ |
WebHTTPBody.cpp | 138 ASSERT(KURL(url).protocolIs("filesystem"));
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
HTMLAnchorElement.cpp | 280 if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//"))
|
HTMLPlugInElement.cpp | 356 if (m_serviceType.isEmpty() && protocolIs(m_url, "data"))
|
HTMLFormElement.cpp | 94 return document().completeURL(url).protocolIs("https");
|
/external/chromium_org/third_party/WebKit/Source/core/loader/ |
FormSubmission.cpp | 194 bool isMailtoForm = actionURL.protocolIs("mailto");
|
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
DOMFileSystemBase.cpp | 91 if (!url.protocolIs("filesystem"))
|
/external/chromium_org/third_party/WebKit/Source/web/ |
WebPageSerializer.cpp | 152 if (frameURL.protocolIs(static_cast<CString>(supportedSchemes[i]).data())) {
|
WebSearchableFormData.cpp | 76 return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http");
|
WebPluginContainerImpl.cpp | 439 ASSERT(kurl.protocolIs("javascript"));
|
/external/chromium_org/third_party/WebKit/Source/modules/websockets/ |
WebSocket.cpp | 293 if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) {
|
WebSocketHandshake.cpp | 94 ASSERT(url.protocolIs("wss") == secure); 137 , m_secure(m_url.protocolIs("wss"))
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderDeprecatedFlexibleBox.cpp | 130 if (url.protocolIs("chrome")) 132 else if (url.protocolIs("chrome-extension")) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
ContentSecurityPolicy.cpp | 233 return url.protocolIs("http") || url.protocolIs("https"); [all...] |
DOMWindow.cpp | 765 else if (document->url().protocolIs("data")) 807 else if (document->url().protocolIs("data")) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
Resource.cpp | 463 if (url().protocolIs("https"))
|