HomeSort by relevance Sort by last modified time
    Searched full:kurl (Results 1 - 25 of 794) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/LayoutTests/fast/encoding/
percent-escaping-expected.txt 1 Test for bug 6452 - KURL::appendEscapingBadChars() should never escape percent characters.
  /external/webkit/Source/WebCore/platform/
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...]
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&);
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> { };
KURLGoogle.cpp 35 #include "KURL.h"
83 // Note that this function must be named differently than the one in KURL.cpp
138 // NOTE This is a copy of the function in KURL.cpp.
210 void KURLGooglePrivate::init(const KURL& base,
218 void KURLGooglePrivate::init(const KURL& base, const CHAR* rel, int relLength,
244 // When KURL encounters an error such that the URL is invalid and empty
292 // KURL returns a null string if the URL is itself a null string, and an
341 // KURL ------------------------------------------------------------------------
346 KURL::KURL(ParsedURLStringTag, const char *url
    [all...]
  /external/webkit/Source/WebKit/chromium/tests/
KURLTest.cpp 31 // Basic tests that verify our KURL's interface behaves the same as the
32 // original KURL's.
38 #include "KURL.h"
64 // Test the cases where we should be the same as WebKit's old KURL.
88 WebCore::KURL kurl(WebCore::ParsedURLString, cases[i].url);
90 EXPECT_EQ(cases[i].protocol, kurl.protocol());
91 EXPECT_EQ(cases[i].host, kurl.host());
92 EXPECT_EQ(cases[i].port, kurl.port());
93 EXPECT_EQ(cases[i].user, kurl.user())
349 WebCore::KURL kurl; local
471 WebCore::KURL kurl; local
    [all...]
  /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/loader/
SubstituteData.h 29 #include "KURL.h"
41 SubstituteData(PassRefPtr<SharedBuffer> content, const String& mimeType, const String& textEncoding, const KURL& failingURL, const KURL& responseURL = KURL())
55 const KURL& failingURL() const { return m_failingURL; }
56 const KURL& responseURL() const { return m_responseURL; }
62 KURL m_failingURL;
63 KURL m_responseURL;
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/fileapi/
ThreadableBlobRegistry.cpp 42 BlobRegistryContext(const KURL& url, PassOwnPtr<BlobData> blobData)
49 BlobRegistryContext(const KURL& url, const KURL& srcURL)
55 BlobRegistryContext(const KURL& url)
60 KURL url;
61 KURL srcURL;
73 void ThreadableBlobRegistry::registerBlobURL(const KURL& url, PassOwnPtr<BlobData> blobData)
89 void ThreadableBlobRegistry::registerBlobURL(const KURL& url, const KURL& srcURL)
105 void ThreadableBlobRegistry::unregisterBlobURL(const KURL& url
    [all...]
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);
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&);
  /external/webkit/Source/WebCore/platform/network/curl/
CookieJarCurl.cpp 22 #include "KURL.h"
31 void setCookies(Document* /*document*/, const KURL& url, const String& value)
36 String cookies(const Document* /*document*/, const KURL& url)
41 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
52 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>& rawCookies)
59 void deleteCookie(const Document*, const KURL&, const String&)
  /external/webkit/Source/WebCore/css/
StyleSheet.h 51 void setFinalURL(const KURL& finalURL) { m_finalURL = finalURL; }
52 const KURL& finalURL() const { return m_finalURL; }
63 virtual KURL completeURL(const String& url) const;
64 virtual void addSubresourceStyleURLs(ListHashSet<KURL>&) { }
69 StyleSheet(Node* ownerNode, const String& href, const KURL& finalURL);
70 StyleSheet(StyleSheet* parentSheet, const String& href, const KURL& finalURL);
71 StyleSheet(StyleBase* owner, const String& href, const KURL& finalURL);
78 KURL m_finalURL;
CSSStyleSheet.h 41 return adoptRef(new CSSStyleSheet(static_cast<CSSStyleSheet*>(0), String(), KURL(), String()));
45 return adoptRef(new CSSStyleSheet(ownerNode, String(), KURL(), String()));
47 static PassRefPtr<CSSStyleSheet> create(Node* ownerNode, const String& originalURL, const KURL& finalURL)
51 static PassRefPtr<CSSStyleSheet> create(Node* ownerNode, const String& originalURL, const KURL& finalURL, const String& charset)
55 static PassRefPtr<CSSStyleSheet> create(CSSRule* ownerRule, const String& originalURL, const KURL& finalURL, const String& charset)
59 static PassRefPtr<CSSStyleSheet> createInline(Node* ownerNode, const KURL& finalURL)
96 virtual KURL completeURL(const String& url) const;
97 virtual void addSubresourceStyleURLs(ListHashSet<KURL>&);
108 CSSStyleSheet(Node* ownerNode, const String& originalURL, const KURL& finalURL, const String& charset);
109 CSSStyleSheet(CSSStyleSheet* parentSheet, const String& originalURL, const KURL& finalURL, const String& charset)
    [all...]
StyleSheet.cpp 28 StyleSheet::StyleSheet(StyleSheet* parentSheet, const String& originalURL, const KURL& finalURL)
37 StyleSheet::StyleSheet(Node* parentNode, const String& originalURL, const KURL& finalURL)
46 StyleSheet::StyleSheet(StyleBase* owner, const String& originalURL, const KURL& finalURL)
83 KURL StyleSheet::completeURL(const String& url) const
86 // FIXME: Should we change the KURL constructor to have this behavior?
89 return KURL();
90 return KURL(baseURL(), url);
  /external/webkit/Source/WebCore/page/
ContentSecurityPolicy.h 36 class KURL;
54 bool allowScriptFromSource(const KURL&) const;
55 bool allowObjectFromSource(const KURL&) const;
56 bool allowImageFromSource(const KURL&) const;
57 bool allowStyleFromSource(const KURL&) const;
58 bool allowFontFromSource(const KURL&) const;
59 bool allowMediaFromSource(const KURL&) const;
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;
  /external/webkit/Source/WebCore/workers/
WorkerScriptLoader.h 33 #include "KURL.h"
49 void loadSynchronously(ScriptExecutionContext*, const KURL&, CrossOriginRequestPolicy);
50 void loadAsynchronously(ScriptExecutionContext*, const KURL&, CrossOriginRequestPolicy, WorkerScriptLoaderClient*);
55 const KURL& url() const { return m_url; }
56 const KURL& responseURL() const;
76 KURL m_url;
77 KURL m_responseURL;
WorkerLocation.h 32 #include "KURL.h"
42 static PassRefPtr<WorkerLocation> create(const KURL& url)
47 const KURL& url() const { return m_url; }
63 WorkerLocation(const KURL& url) : m_url(url) { }
65 KURL m_url;
  /external/webkit/Source/WebKit/chromium/src/
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/
ApplicationCache.h 43 class KURL;
47 typedef Vector<std::pair<KURL, KURL> > FallbackURLVector;
73 void setOnlineWhitelist(const Vector<KURL>& onlineWhitelist);
74 const Vector<KURL>& onlineWhitelist() const { return m_onlineWhitelist; }
75 bool isURLInOnlineWhitelist(const KURL&); // There is an entry in online whitelist that has the same origin as the resource's URL and that is a prefix match for the resource's URL.
79 bool urlMatchesFallbackNamespace(const KURL&, KURL* fallbackURL = 0);
105 Vector<KURL> m_onlineWhitelist;
  /external/webkit/Source/WebCore/platform/haiku/
CookieJarHaiku.cpp 33 #include "KURL.h"
44 void setCookies(Document*, const KURL& url, const String& value)
49 String cookies(const Document*, const KURL& url)
54 String cookieRequestHeaderFieldValue(const Document*, const KURL& url)
66 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>& rawCookies)
73 void deleteCookie(const Document*, const KURL&, const String&)
  /external/webkit/Source/WebCore/platform/network/
BlobRegistryImpl.h 44 class KURL;
56 virtual void registerBlobURL(const KURL&, PassOwnPtr<BlobData>);
57 virtual void registerBlobURL(const KURL&, const KURL& srcURL);
58 virtual void unregisterBlobURL(const KURL&);
62 PassRefPtr<BlobStorageData> getBlobDataFromURL(const KURL&) const;
  /external/webkit/Source/WebCore/platform/network/soup/
CookieJarSoup.cpp 27 #include "KURL.h"
60 void setCookies(Document* document, const KURL& url, const String& value)
76 String cookies(const Document* /*document*/, const KURL& url)
92 String cookieRequestHeaderFieldValue(const Document* /*document*/, const KURL& url)
113 bool getRawCookies(const Document*, const KURL&, Vector<Cookie>& rawCookies)
120 void deleteCookie(const Document*, const KURL&, const String&)

Completed in 609 milliseconds

1 2 3 4 5 6 7 8 91011>>