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

1 2

  /external/webkit/Source/WebCore/platform/efl/
KURLEfl.cpp 28 if (!isValid() || !protocolIs("file"))
  /external/webkit/Source/WebCore/fileapi/
BlobURL.cpp 57 ASSERT(url.protocolIs(kBlobProtocol));
  /external/webkit/Source/WebCore/platform/qt/
KURLQt.cpp 46 if (!isValid() || !protocolIs("file"))
  /external/webkit/Source/WebCore/dom/
EventQueue.cpp 43 return applicationIsSafari() && (document->url().protocolIs("feed") || document->url().protocolIs("feeds"));
  /external/webkit/Source/WebCore/wml/
WMLAElement.cpp 70 if (protocolIs(value, "http") || protocolIs(value, "https") || value.startsWith("//"))
  /external/webkit/Source/WebCore/platform/
KURL.h 162 bool protocolIs(const char*) const;
163 bool protocolIsData() const { return protocolIs("data"); }
234 static bool protocolIs(const String&, const char*);
284 bool protocolIs(const String& url, const char* protocol);
KURL.cpp 290 inline bool KURL::protocolIs(const String& string, const char* protocol)
292 return WebCore::protocolIs(string, protocol);
364 if (rel.contains('\\') && !(protocolIsJavaScript(rel) || protocolIs(rel, "data")))
682 bool KURL::protocolIs(const char* protocol) const
    [all...]
KURLGoogle.cpp 816 bool KURL::protocolIs(const char* protocol) const
934 bool protocolIs(const String& url, const char* protocol)
944 inline bool KURL::protocolIs(const String& string, const char* protocol)
946 return WebCore::protocolIs(string, protocol);
    [all...]
  /external/webkit/Source/WebCore/platform/network/
ResourceHandle.cpp 59 if (request.url().protocolIs("blob")) {
150 return !url.protocolIs("file");
DataURL.cpp 43 ASSERT(handle->firstRequest().url().protocolIs("data"));
  /external/webkit/Source/WebCore/platform/network/cf/
CookieJarCFNet.cpp 153 bool secure = url.protocolIs("https");
167 bool secure = url.protocolIs("https");
190 bool sendSecureCookies = url.protocolIs("https");
223 bool sendSecureCookies = url.protocolIs("https");
SocketStreamHandle.h 74 bool shouldUseSSL() const { return m_url.protocolIs("wss"); }
  /external/webkit/Source/WebCore/html/
HTMLPlugInImageElement.cpp 58 if (m_serviceType.isEmpty() && protocolIs(m_url, "data"))
HTMLAnchorElement.cpp 217 if (protocolIs(parsedURL, "http") || protocolIs(parsedURL, "https") || parsedURL.startsWith("//"))
  /external/webkit/Source/WebCore/platform/network/soup/
SocketStreamHandleSoup.cpp 85 unsigned int port = url.hasPort() ? url.port() : (url.protocolIs("wss") ? 443 : 80);
89 if (url.protocolIs("wss"))
  /external/webkit/Source/WebCore/websockets/
WebSocket.cpp 126 if (!m_url.protocolIs("ws") && !m_url.protocolIs("wss")) {
  /external/webkit/Source/WebCore/page/
SecurityOrigin.cpp 509 bool referrerIsSecureURL = protocolIs(referrer, "https");
510 bool referrerIsWebURL = referrerIsSecureURL || protocolIs(referrer, "http");
518 bool URLIsSecureURL = url.protocolIs("https");
  /external/webkit/Source/WebCore/loader/appcache/
ManifestParser.cpp 130 if (mode == Explicit && manifestURL.protocolIs("https") && !protocolHostAndPortAreEqual(manifestURL, url))
  /external/webkit/Source/WebCore/platform/network/brew/
SocketStreamHandleBrew.cpp 91 m_isSecure = url.protocolIs("wss");
  /external/webkit/Source/WebCore/platform/network/qt/
SocketStreamHandleQt.cpp 47 bool isSecure = url.protocolIs("wss");
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 604 TEST(KURLTest, ProtocolIs)
607 EXPECT_TRUE(url1.protocolIs("foo"));
608 EXPECT_FALSE(url1.protocolIs("foo-bar"));
611 EXPECT_TRUE(url2.protocolIs("foo-bar"));
612 EXPECT_FALSE(url2.protocolIs("foo"));
  /external/webkit/Source/WebCore/history/
PageCache.cpp 114 if (frame->document()->url().protocolIs("https")) {
263 && !frame->document()->url().protocolIs("https")
  /external/webkit/Source/WebKit/android/WebCoreSupport/
WebUrlLoaderClient.cpp 114 bool block = webFrame->blockNetworkLoads() && (resourceRequest.url().protocolIs("http") || resourceRequest.url().protocolIs("https"));
  /external/webkit/Source/WebCore/loader/
FormSubmission.cpp 161 bool isMailtoForm = actionURL.protocolIs("mailto");
  /external/webkit/Source/WebKit/chromium/src/
FrameLoaderClientImpl.cpp 717 if (m_expectedClientRedirectDest.protocolIs("javascript")
    [all...]

Completed in 817 milliseconds

1 2