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

1 2 3 45 6 7 8 91011>>

  /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);
  /external/webkit/Source/WebCore/platform/wx/
KURLWx.cpp 27 #include "KURL.h"
33 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/websockets/
WorkerThreadableWebSocketChannel.h 47 class KURL;
57 static PassRefPtr<ThreadableWebSocketChannel> create(WorkerContext* workerContext, WebSocketChannelClient* client, const String& taskMode, const KURL& url, const String& protocol)
84 static Peer* create(RefPtr<ThreadableWebSocketChannelClientWrapper> clientWrapper, WorkerLoaderProxy& loaderProxy, ScriptExecutionContext* context, const String& taskMode, const KURL& url, const String& protocol)
103 Peer(RefPtr<ThreadableWebSocketChannelClientWrapper>, WorkerLoaderProxy&, ScriptExecutionContext*, const String& taskMode, const KURL&, const String& protocol);
114 static PassRefPtr<Bridge> create(PassRefPtr<ThreadableWebSocketChannelClientWrapper> workerClientWrapper, PassRefPtr<WorkerContext> workerContext, const String& taskMode, const KURL& url, const String& protocol)
131 Bridge(PassRefPtr<ThreadableWebSocketChannelClientWrapper>, PassRefPtr<WorkerContext>, const String& taskMode, const KURL&, const String& protocol);
136 static void mainThreadCreateWebSocketChannel(ScriptExecutionContext*, Bridge* thisPtr, RefPtr<ThreadableWebSocketChannelClientWrapper>, const String& taskMode, const KURL&, const String& protocol);
151 WorkerThreadableWebSocketChannel(WorkerContext*, WebSocketChannelClient*, const String& taskMode, const KURL&, const String& protocol);
WebSocket.h 40 #include "KURL.h"
64 void connect(const KURL&, ExceptionCode&);
65 void connect(const KURL&, const String& protocol, ExceptionCode&);
71 const KURL& url() const;
110 KURL m_url;
  /external/webkit/Source/WebCore/wml/
WMLDocument.h 35 static PassRefPtr<WMLDocument> create(Frame* frame, const KURL& url)
50 WMLDocument(Frame*, const KURL&);
  /external/webkit/Source/WebKit/android/WebCoreSupport/
KeyGeneratorClient.h 29 #include "KURL.h"
43 const String& challenge, const KURL& url) = 0;
WebResponse.cpp 99 WebCore::KURL WebResponse::createKurl()
101 WebCore::KURL kurl(WebCore::ParsedURLString, m_url.c_str());
102 return kurl;
136 WebCore::KURL kurl(WebCore::ParsedURLString, url.c_str());
137 WTF::String path = kurl.path();
  /external/webkit/Source/WebKit/gtk/gdom/
ConvertToGCharPrivate.h 23 #include "KURL.h"
33 inline gchar* copyAsGchar(WebCore::KURL const& s)
  /external/webkit/Source/WebCore/fileapi/
Blob.h 35 #include "KURL.h"
52 static PassRefPtr<Blob> create(const KURL& srcURL, const String& type, long long size)
59 const KURL& url() const { return m_internalURL; }
73 Blob(const KURL& srcURL, const String& type, long long size);
78 KURL m_internalURL;
  /external/webkit/Source/WebCore/html/
HTMLLinkElement.h 36 class KURL;
70 KURL href() const;
99 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet* sheet);
115 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;
138 KURL m_url;
  /external/webkit/Source/WebCore/loader/
FormSubmission.h 35 #include "KURL.h"
92 KURL requestURL() const;
95 const KURL& action() const { return m_action; }
111 FormSubmission(Method, const KURL& action, const String& target, const String& contentType, PassRefPtr<FormState>, PassRefPtr<FormData>, const String& boundary, bool lockHistory, PassRefPtr<Event>);
115 KURL m_action;
  /external/webkit/Source/WebCore/page/
DragController.h 32 #include "KURL.h"
69 const KURL& draggingImageURL() const { return m_draggingImageURL; }
108 bool doDrag(Frame* src, Clipboard* clipboard, DragImageRef dragImage, const KURL& linkURL, const KURL& imageURL, Node* node, IntPoint& dragLoc, IntPoint& dragImageOffset);
125 KURL m_draggingImageURL;
SecurityOrigin.h 39 class KURL;
46 static PassRefPtr<SecurityOrigin> create(const KURL&, SandboxFlags = SandboxNone);
76 bool canRequest(const KURL&) const;
81 bool taintsCanvas(const KURL&) const;
91 bool canDisplay(const KURL&) const;
129 bool isSecureTransitionTo(const KURL&) const;
181 static bool shouldHideReferrer(const KURL&, const String& referrer);
197 SecurityOrigin(const KURL&, SandboxFlags);
204 bool isAccessToURLWhiteListed(const KURL&) const;
  /external/webkit/Source/WebCore/platform/cf/
KURLCFNet.cpp 27 #include "KURL.h"
36 KURL::KURL(CFURLRef url)
62 CFURLRef KURL::createCFURL() const
81 String KURL::fileSystemPath() const
  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObject.h 35 #include "KURL.h"
73 KURL htmlBaseUrl() const { return m_htmlBaseUrl; }
74 void setHtmlBaseUrl(const KURL& url) { m_htmlBaseUrl = url; }
105 KURL m_htmlBaseUrl;
113 KURL m_url;
ChromiumDataObjectLegacy.h 35 #include "KURL.h"
73 KURL htmlBaseUrl() const { return m_htmlBaseUrl; }
74 void setHtmlBaseUrl(const KURL& url) { m_htmlBaseUrl = url; }
105 KURL m_htmlBaseUrl;
113 KURL m_url;
PasteboardChromium.cpp 42 #include "KURL.h"
87 KURL url = selectedRange->startContainer(ec)->document()->url();
108 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
122 void Pasteboard::writeImage(Node* node, const KURL&, const String& title)
151 KURL url = urlString.isEmpty() ? KURL() : node->document()->completeURL(stripLeadingAndTrailingHTMLSpaces(urlString));
173 KURL srcURL;
  /external/webkit/Source/WebKit/wx/WebKitSupport/
FrameLoaderClientWx.h 34 #include "KURL.h"
98 virtual void dispatchWillPerformClientRedirect(const KURL&, double interval, double fireDate);
144 virtual bool shouldTreatURLAsSameAsCurrent(const KURL&) const;
148 virtual void setTitle(const StringWithDirection&, const KURL&);
150 virtual String userAgent(const KURL&);
172 virtual void didRunInsecureContent(SecurityOrigin*, const KURL&);
211 virtual PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement,
215 virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&, const Vector<String>&, const Vector<String>&, const String&, bool loadManually) ;
219 virtual PassRefPtr<Widget> createJavaAppletWidget(const IntSize&, HTMLAppletElement*, const KURL& baseURL, const Vector<String>& paramNames, const Vector<String>& paramValues);
221 virtual ObjectContentType objectContentType(const KURL&, const String& mimeType, bool shouldPreferPlugInsForImages)
    [all...]
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheHost.h 36 #include "KURL.h"
87 CacheInfo(const KURL& manifest, double creationTime, double updateTime, long long size)
92 KURL m_manifest;
99 ResourceInfo(const KURL& resource, bool isMaster, bool isManifest, bool isFallback, bool isForeign, bool isExplicit, long long size)
107 KURL m_resource;
123 void selectCacheWithManifest(const KURL& manifestURL);
133 bool maybeLoadResource(ResourceLoader*, ResourceRequest&, const KURL& originalURL);
  /external/webkit/Source/WebCore/platform/network/
CredentialStorage.cpp 30 #include "KURL.h"
60 static String originStringFromURL(const KURL& url)
68 static String protectionSpaceMapKeyFromURL(const KURL& url)
86 void CredentialStorage::set(const Credential& credential, const ProtectionSpace& protectionSpace, const KURL& url)
113 static PathToDefaultProtectionSpaceMap::iterator findDefaultProtectionSpaceForURL(const KURL& url)
142 bool CredentialStorage::set(const Credential& credential, const KURL& url)
154 Credential CredentialStorage::get(const KURL& url)
  /external/webkit/Source/WebCore/workers/
WorkerContext.h 75 const KURL& url() const { return m_url; }
76 KURL completeURL(const String&) const;
78 virtual String userAgent(const KURL&) const;
171 WorkerContext(const KURL&, const String&, WorkerThread*);
182 virtual const KURL& virtualURL() const;
183 virtual KURL virtualCompleteURL(const String&) const;
188 KURL m_url;
  /external/webkit/Source/WebKit/haiku/WebCoreSupport/
FrameLoaderClientHaiku.h 34 #include "KURL.h"
97 virtual void dispatchWillPerformClientRedirect(const KURL&, double interval, double fireDate);
142 virtual bool shouldTreatURLAsSameAsCurrent(const KURL&) const;
146 virtual void setTitle(const StringWithDirection&, const KURL&);
148 virtual String userAgent(const KURL&);
227 virtual PassRefPtr<Frame> createFrame(const KURL& url, const String& name,
232 virtual PassRefPtr<Widget> createPlugin(const IntSize&, HTMLPlugInElement*, const KURL&,
239 const KURL& baseURL, const Vector<String>& paramNames,
242 virtual ObjectContentType objectContentType(const KURL&, const String& mimeType, bool shouldPreferPlugInsForImages);
  /external/webkit/Source/WebCore/bindings/js/
JSDOMApplicationCacheCustom.cpp 52 const KURL& url = frame->loader()->completeURL(exec->argument(0).toString(exec));
65 const KURL& url = frame->loader()->completeURL(exec->argument(0).toString(exec));
78 const KURL& url = frame->loader()->completeURL(exec->argument(0).toString(exec));
  /external/webkit/Source/WebCore/dom/
ProcessingInstruction.h 72 virtual void setCSSStyleSheet(const String& href, const KURL& baseURL, const String& charset, const CachedCSSStyleSheet*);
74 virtual void setXSLStyleSheet(const String& href, const KURL& baseURL, const String& sheet);
80 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const;

Completed in 2621 milliseconds

1 2 3 45 6 7 8 91011>>