Searched refs:URL (Results 1 - 25 of 1356) sorted by relevance

1234567891011>>

/macosx-10.10/WebCore-7600.1.25/fileapi/
H A DThreadableBlobRegistry.h40 class URL;
45 static void registerFileBlobURL(const URL&, const String& path, const String& contentType);
46 static void registerBlobURL(const URL&, Vector<BlobPart> blobParts, const String& contentType);
47 static void registerBlobURL(SecurityOrigin*, const URL&, const URL& srcURL);
48 static void registerBlobURLForSlice(const URL& newURL, const URL& srcURL, long long start, long long end);
49 static void unregisterBlobURL(const URL&);
51 static unsigned long long blobSize(const URL&);
53 // Returns the origin for the given blob URL
[all...]
H A DBlobURL.h34 #include "URL.h"
42 // For public urls, the origin of the host page is encoded in the URL value to
51 static URL createPublicURL(SecurityOrigin*);
52 static URL createInternalURL();
53 static String getOrigin(const URL&);
54 static String getIdentifier(const URL&);
58 static URL createBlobURL(const String& originString);
/macosx-10.10/WebCore-7600.1.25/platform/
H A DCookiesStrategy.h36 class URL;
42 virtual String cookiesForDOM(const NetworkStorageSession&, const URL& firstParty, const URL&) = 0;
43 virtual void setCookiesFromDOM(const NetworkStorageSession&, const URL& firstParty, const URL&, const String& cookieString) = 0;
44 virtual bool cookiesEnabled(const NetworkStorageSession&, const URL& firstParty, const URL&) = 0;
45 virtual String cookieRequestHeaderFieldValue(const NetworkStorageSession&, const URL& firstParty, const URL&) = 0;
46 virtual bool getRawCookies(const NetworkStorageSession&, const URL
[all...]
H A DURLHash.h29 #include "URL.h"
36 static unsigned hash(const URL& key)
41 static bool equal(const URL& a, const URL& b)
53 template<> struct HashTraits<WebCore::URL> : SimpleClassHashTraits<WebCore::URL> { };
H A DURL.h53 class URL { class in namespace:WebCore
55 // Generates a URL which contains a null string.
56 URL() { invalidate(); } function in class:WebCore::URL
58 // The argument is an absolute URL string. The string is assumed to be output of URL::string() called on a valid
59 // URL object, or indiscernible from such.
61 URL(ParsedURLStringTag, const String&);
62 explicit URL(WTF::HashTableDeletedValueType) : m_string(WTF::HashTableDeletedValue) { } function in class:WebCore::URL
65 // Resolves the relative URL with the given base URL
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/network/
H A DPlatformCookieJar.h36 class URL;
42 String cookiesForDOM(const NetworkStorageSession&, const URL& firstParty, const URL&);
43 void setCookiesFromDOM(const NetworkStorageSession&, const URL& firstParty, const URL&, const String&);
44 bool cookiesEnabled(const NetworkStorageSession&, const URL& firstParty, const URL&);
45 String cookieRequestHeaderFieldValue(const NetworkStorageSession&, const URL& firstParty, const URL&);
46 bool getRawCookies(const NetworkStorageSession&, const URL
[all...]
H A DBlobRegistry.h42 class URL;
50 // Registers a blob URL referring to the specified file.
51 virtual void registerFileBlobURL(const URL&, PassRefPtr<BlobDataFileReference>, const String& contentType) = 0;
53 // Registers a blob URL referring to the specified blob data.
54 virtual void registerBlobURL(const URL&, Vector<BlobPart>, const String& contentType) = 0;
56 // Registers a new blob URL referring to the blob data identified by the specified srcURL.
57 virtual void registerBlobURL(const URL&, const URL& srcURL) = 0;
60 virtual void registerBlobURLForSlice(const URL&, const URL
[all...]
H A DCredentialStorage.h32 class URL;
38 static void set(const Credential&, const ProtectionSpace&, const URL&);
52 static bool set(const Credential&, const URL&); // Returns true if the URL corresponds to a known protection space, so credentials could be updated.
53 static Credential get(const URL&);
/macosx-10.10/WebCore-7600.1.25/html/
H A DHTMLQuoteElement.idl21 [Reflect, URL] attribute DOMString cite;
/macosx-10.10/Security-57031.1.35/Security/include/security_utilities/
H A Durl.cpp26 // url - URL object with decomposition
56 URL::URL() function in class:Security::Network::URL
61 URL::URL(const char *s) function in class:Security::Network::URL
68 URL::URL(const char *s, const URL &base) function in class:Security::Network::URL
75 URL::~URL()
[all...]
H A Durl.h26 // url - URL object with decomposition
48 // A thin encapsulation of a URL
50 class URL { class in namespace:Security::Network
52 URL();
53 URL(const char *url);
54 URL(const char *url, const URL &base);
55 ~URL();
/macosx-10.10/Security-57031.1.35/Security/libsecurity_utilities/lib/
H A Durl.cpp26 // url - URL object with decomposition
56 URL::URL() function in class:Security::Network::URL
61 URL::URL(const char *s) function in class:Security::Network::URL
68 URL::URL(const char *s, const URL &base) function in class:Security::Network::URL
75 URL::~URL()
[all...]
H A Durl.h26 // url - URL object with decomposition
48 // A thin encapsulation of a URL
50 class URL { class in namespace:Security::Network
52 URL();
53 URL(const char *url);
54 URL(const char *url, const URL &base);
55 ~URL();
/macosx-10.10/WebCore-7600.1.25/platform/network/win/
H A DProxyServerWin.cpp31 Vector<ProxyServer> proxyServersForURL(const URL&, const NetworkingContext*) argument
/macosx-10.10/WebCore-7600.1.25/Modules/navigatorcontentutils/
H A DNavigatorContentUtilsClient.h31 #include "URL.h"
41 virtual void registerProtocolHandler(const String& scheme, const URL& baseURL, const URL&, const String& title) = 0;
50 virtual CustomHandlersState isProtocolHandlerRegistered(const String& scheme, const URL& baseURL, const URL&) = 0;
51 virtual void unregisterProtocolHandler(const String& scheme, const URL& baseURL, const URL&) = 0;
/macosx-10.10/WebCore-7600.1.25/loader/
H A DCookieJar.h37 class URL;
43 String cookies(const Document*, const URL&);
44 void setCookies(Document*, const URL&, const String& cookieString);
47 String cookieRequestHeaderFieldValue(const Document*, const URL&);
48 bool getRawCookies(const Document*, const URL&, Vector<Cookie>&);
49 void deleteCookie(const Document*, const URL&, const String& cookieName);
/macosx-10.10/WebCore-7600.1.25/workers/
H A DAbstractWorker.cpp56 URL AbstractWorker::resolveURL(const String& url, ExceptionCode& ec)
60 return URL();
64 URL scriptURL = scriptExecutionContext()->completeURL(url);
67 return URL();
72 return URL();
77 return URL();
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebCoreSupport/
H A DWebNavigatorContentUtilsClient.h41 virtual void registerProtocolHandler(const String& scheme, const URL& baseURL, const URL& url, const String& title) override { }
44 virtual CustomHandlersState isProtocolHandlerRegistered(const String&, const URL&, const URL&) { return CustomHandlersDeclined; } argument
45 virtual void unregisterProtocolHandler(const String&, const URL&, const URL&) { } argument
/macosx-10.10/WebCore-7600.1.25/bindings/gobject/
H A DConvertToUTF8String.h27 class URL;
33 gchar* convertToUTF8String(WebCore::URL const& s);
/macosx-10.10/WebKit2-7600.1.25/WebProcess/FileAPI/
H A DBlobRegistryProxy.h37 virtual void registerFileBlobURL(const WebCore::URL&, PassRefPtr<WebCore::BlobDataFileReference>, const String& contentType) override;
38 virtual void registerBlobURL(const WebCore::URL&, Vector<WebCore::BlobPart>, const String& contentType) override;
39 virtual void registerBlobURL(const WebCore::URL&, const WebCore::URL& srcURL) override;
40 virtual void unregisterBlobURL(const WebCore::URL&) override;
41 virtual void registerBlobURLForSlice(const WebCore::URL&, const WebCore::URL& srcURL, long long start, long long end) override;
42 virtual unsigned long long blobSize(const WebCore::URL&) override;
/macosx-10.10/curl-83.1.2/curl/tests/libtest/
H A Dlib1508.c28 int test(char *URL) argument
33 (void)URL;
H A Dlib517.c122 int test(char *URL) argument
126 (void)URL; /* not used */
/macosx-10.10/WebCore-7600.1.25/platform/network/curl/
H A DProxyServerCurl.cpp31 #include "URL.h"
35 Vector<ProxyServer> proxyServersForURL(const URL&, const NetworkingContext*) argument
/macosx-10.10/WebCore-7600.1.25/platform/network/soup/
H A DProxyServerSoup.cpp31 #include "URL.h"
35 Vector<ProxyServer> proxyServersForURL(const URL&, const NetworkingContext*) argument
/macosx-10.10/WebCore-7600.1.25/loader/appcache/
H A DManifestParser.h33 class URL;
36 Vector<URL> onlineWhitelistedURLs;
42 bool parseManifest(const URL& manifestURL, const char* data, int length, Manifest&);

Completed in 311 milliseconds

1234567891011>>