HomeSort by relevance Sort by last modified time
    Searched refs:protocolIs (Results 1 - 25 of 31) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/platform/weborigin/
KnownPorts.cpp 147 if ((port == 21 || port == 22) && url.protocolIs("ftp"))
151 if (url.protocolIs("file"))
SecurityPolicy.cpp 54 bool referrerIsSecureURL = protocolIs(referrer, "https");
55 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http");
63 bool URLIsSecureURL = url.protocolIs("https");
73 if (!(protocolIs(referrer, "https") || protocolIs(referrer, "http")))
KURL.h 132 bool protocolIs(const char*) const;
133 bool protocolIsData() const { return protocolIs("data"); }
135 bool protocolIsAbout() const { return protocolIs("about"); }
223 PLATFORM_EXPORT bool protocolIs(const String& url, const char* protocol);
SecurityOrigin.cpp 55 return url.protocolIsInHTTPFamily() || url.protocolIs("ftp");
68 if (url.protocolIs("blob"))
70 if (url.protocolIs("filesystem"))
179 if (url.protocolIs("file")) {
KURLTest.cpp 669 TEST(KURLTest, ProtocolIs)
672 EXPECT_TRUE(url1.protocolIs("foo"));
673 EXPECT_FALSE(url1.protocolIs("foo-bar"));
676 EXPECT_TRUE(url2.protocolIs("foo-bar"));
677 EXPECT_FALSE(url2.protocolIs("foo"));
680 EXPECT_FALSE(invalidUTF8.protocolIs("http"));
681 EXPECT_TRUE(invalidUTF8.protocolIs(""));
KURL.cpp 133 if (protocolIsAbout() || protocolIs("data") || protocolIs("javascript"))
152 return protocolIs("file");
157 return protocolIs(url, "javascript");
768 bool protocolIs(const String& url, const char* protocol)
865 bool KURL::protocolIs(const char* protocol) const
  /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/core/frame/csp/
CSPSource.cpp 41 return url.protocolIs("http") || url.protocolIs("https");
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
V8DOMActivityLogger.cpp 66 if (!url.protocolIs("chrome-extension"))
  /external/chromium_org/third_party/WebKit/Source/core/loader/
MixedContentChecker.cpp 98 if (url.protocolIs("javascript"))
FormSubmission.cpp 200 bool isMailtoForm = actionURL.protocolIs("mailto");
  /external/chromium_org/third_party/WebKit/Source/platform/exported/
WebHTTPBody.cpp 138 ASSERT(KURL(url).protocolIs("filesystem"));
  /external/chromium_org/third_party/WebKit/Source/modules/mediastream/
RTCPeerConnection.cpp 148 if (!url.isValid() || !(url.protocolIs("turn") || url.protocolIs("turns") || url.protocolIs("stun"))) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLAnchorElement.cpp 232 if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//"))
HTMLPlugInElement.cpp 394 if (m_serviceType.isEmpty() && protocolIs(m_url, "data"))
  /external/chromium_org/third_party/WebKit/Source/modules/websockets/
WebSocketHandshake.cpp 81 ASSERT(url.protocolIs("wss") == secure);
126 , m_secure(m_url.protocolIs("wss"))
WebSocket.cpp 292 if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) {
  /external/chromium_org/third_party/WebKit/Source/web/
WebPageSerializer.cpp 126 if (frameURL.protocolIs(static_cast<CString>(supportedSchemes[i]).data())) {
WebSearchableFormData.cpp 75 return form->document().completeURL(action.isNull() ? "" : action).protocolIs("http");
  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
DOMFileSystemBase.cpp 91 if (!url.protocolIs("filesystem"))
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
Resource.cpp 296 && !response.url().protocolIs("filesystem"))
517 if (hasCacheControlNoStoreHeader() && url().protocolIs("https")) {
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderDeprecatedFlexibleBox.cpp 131 if (url.protocolIs("chrome"))
133 else if (url.protocolIs("chrome-extension"))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/frame/
LocalDOMWindow.cpp 753 else if (document->url().protocolIs("data"))
795 else if (document->url().protocolIs("data"))
    [all...]

Completed in 578 milliseconds

1 2