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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/fileapi/
ThreadableBlobRegistry.h 39 class KURL;
43 static void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
44 static void registerBlobURL(const KURL&, const KURL& srcURL);
45 static void unregisterBlobURL(const KURL&);
BlobURL.h 34 #include "KURL.h"
51 static KURL createPublicURL(SecurityOrigin*);
52 static KURL createInternalURL();
53 static String getIdentifier(const KURL&);
57 static KURL createBlobURL(const String& originString);
BlobURL.cpp 35 #include "KURL.h"
44 KURL BlobURL::createPublicURL(SecurityOrigin* securityOrigin)
50 KURL BlobURL::createInternalURL()
55 String BlobURL::getIdentifier(const KURL& url)
63 KURL BlobURL::createBlobURL(const String& originString)
67 return KURL();
73 return KURL(ParsedURLString, urlString);
  /external/webkit/Source/WebCore/platform/wince/
KURLWinCE.cpp 21 #include "KURL.h"
25 String KURL::fileSystemPath() const
  /external/webkit/Source/WebKit/android/WebCoreSupport/
CookieClient.h 29 #include <KURL.h>
40 virtual void setCookies(const KURL& url, const String& value) = 0;
41 virtual String cookies(const KURL& url) = 0;
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.h 32 class KURL;
38 static void set(const Credential&, const ProtectionSpace&, const KURL&);
47 static bool set(const Credential&, const KURL&); // Returns true if the URL corresponds to a known protection space, so credentials could be updated.
48 static Credential get(const KURL&);
BlobRegistry.h 42 class KURL;
56 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>) = 0;
59 virtual void registerBlobURL(const KURL&, const KURL& srcURL) = 0;
61 virtual void unregisterBlobURL(const KURL&) = 0;
  /external/webkit/Source/WebCore/platform/network/soup/
ProxyServerSoup.cpp 29 #include "KURL.h"
33 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
SoupURIUtils.h 29 #include "KURL.h"
34 KURL soupURIToKURL(SoupURI* soupURI);
SoupURIUtils.cpp 32 KURL soupURIToKURL(SoupURI* soupURI)
35 KURL url(KURL(), String::fromUTF8(urlString.get()));
  /external/webkit/Source/WebCore/platform/network/win/
ProxyServerWin.cpp 31 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
  /external/webkit/Source/WebCore/platform/wx/
KURLWx.cpp 27 #include "KURL.h"
33 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/platform/
KURLHash.h 29 #include "KURL.h"
36 static unsigned hash(const KURL& key)
41 static bool equal(const KURL& a, const KURL& b)
53 template<> struct HashTraits<WebCore::KURL> : SimpleClassHashTraits<WebCore::KURL> { };
CookieJar.h 37 class KURL;
42 String cookies(const Document*, const KURL&);
43 String cookieRequestHeaderFieldValue(const Document*, const KURL&);
44 void setCookies(Document*, const KURL&, const String&);
46 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>&);
47 void deleteCookie(const Document*, const KURL&, const String&);
KURL.h 68 class KURL {
71 KURL() { invalidate(); }
73 // The argument is an absolute URL string. The string is assumed to be output of KURL::string() called on a valid
74 // KURL object, or indiscernible from such.
76 KURL(ParsedURLStringTag, const char*);
77 KURL(ParsedURLStringTag, const String&);
78 KURL(ParsedURLStringTag, const URLString&);
80 KURL(WTF::HashTableDeletedValueType) : m_url(WTF::HashTableDeletedValue) { }
82 KURL(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { }
93 KURL(const KURL& base, const String& relative)
    [all...]
SSLKeyGenerator.h 34 class KURL;
44 String signedPublicKeyAndChallengeString(unsigned keySizeIndex, const String& challengeString, const KURL&);
  /external/webkit/Source/WebCore/loader/
NavigationAction.h 34 #include "KURL.h"
42 NavigationAction(const KURL&, NavigationType);
43 NavigationAction(const KURL&, FrameLoadType, bool isFormSubmission);
44 NavigationAction(const KURL&, NavigationType, PassRefPtr<Event>);
45 NavigationAction(const KURL&, FrameLoadType, bool isFormSubmission, PassRefPtr<Event>);
49 KURL url() const { return m_URL; }
54 KURL m_URL;
  /external/webkit/Source/WebCore/platform/qt/
KURLQt.cpp 21 #include "KURL.h"
30 KURL::KURL(const QUrl& url)
32 *this = KURL(KURL(), url.toEncoded().constData(), UTF8Encoding());
35 KURL::operator QUrl() const
44 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/bindings/gobject/
ConvertToUTF8String.h 27 class KURL;
33 gchar* convertToUTF8String(WebCore::KURL const& s);
  /external/webkit/Source/WebCore/platform/efl/
KURLEfl.cpp 22 #include "KURL.h"
26 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/platform/network/android/
ProxyServerAndroid.cpp 34 Vector<ProxyServer> proxyServersForURL(const KURL&, const NetworkingContext*)
  /external/webkit/Source/WebKit/chromium/src/
BlobRegistryProxy.h 46 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
47 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
48 virtual void unregisterBlobURL(const KURL&);
WebURL.cpp 34 #include "KURL.h"
38 WebURL::WebURL(const WebCore::KURL& url)
45 WebURL& WebURL::operator=(const WebCore::KURL& url)
53 WebURL::operator WebCore::KURL() const
55 return WebCore::KURL(m_spec, m_parsed, m_isValid);
  /external/webkit/Source/WebCore/loader/appcache/
ManifestParser.h 35 class KURL;
38 Vector<KURL> onlineWhitelistedURLs;
44 bool parseManifest(const KURL& manifestURL, const char* data, int length, Manifest&);
  /external/webkit/Source/WebCore/page/
UserContentURLPattern.h 34 class KURL;
48 bool matches(const KURL&) const;
56 static bool matchesPatterns(const KURL&, const Vector<String>* whitelist, const Vector<String>* blacklist);
61 bool matchesHost(const KURL&) const;
62 bool matchesPath(const KURL&) const;

Completed in 492 milliseconds

1 2 3 4 5 6 7 8 91011>>