HomeSort by relevance Sort by last modified time
    Searched refs:url (Results 1226 - 1250 of 2774) sorted by null

<<41424344454647484950>>

  /external/webkit/Source/WebCore/platform/
LinkHash.h 57 LinkHash visitedLinkHash(const UChar* url, unsigned length);
59 // Resolves the potentially relative URL "attributeURL" relative to the given
60 // base URL, and returns the hash of the string that will be used for visited
62 // look like a relative URL.
65 // Resolves the potentially relative URL "attributeURL" relative to the given
66 // base URL, and returns the hash of the string that will be used for visited.
  /external/webkit/Source/WebCore/platform/brew/
PasteboardBrew.cpp 65 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
  /external/webkit/Source/WebCore/platform/network/
ResourceHandleInternal.h 132 const KURL& url = m_firstRequest.url(); local
133 m_user = url.user();
134 m_pass = url.pass();
ResourceRequestBase.h 79 const KURL& url() const;
80 void setURL(const KURL& url);
172 ResourceRequestBase(const KURL& url, ResourceRequestCachePolicy policy)
173 : m_url(url)
  /external/webkit/Source/WebCore/platform/qt/
PasteboardQt.cpp 140 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
142 ASSERT(!url.isEmpty());
146 QString urlString = url.string();
148 md->setUrls(QList<QUrl>() << url);
  /external/webkit/Source/WebCore/platform/win/
BString.cpp 71 BString::BString(const KURL& url)
73 if (url.isNull())
76 m_bstr = SysAllocStringLen(url.string().characters(), url.string().length());
  /external/webkit/Source/WebCore/rendering/style/
StyleCachedImage.cpp 34 return CSSPrimitiveValue::create(m_image->url(), CSSPrimitiveValue::CSS_URI);
  /external/webkit/Source/WebCore/svg/
SVGAElement.cpp 163 String url = stripLeadingAndTrailingHTMLSpaces(href()); local
166 if (url[0] == '#') {
167 Element* targetElement = document()->getElementById(url.substring(1));
188 handleLinkClick(event, document(), url, target);
  /external/webkit/Source/WebCore/workers/
AbstractWorker.h 65 // Helper function that converts a URL to an absolute URL and checks the result for validity.
66 KURL resolveURL(const String& url, ExceptionCode& ec);
Worker.h 56 static PassRefPtr<Worker> create(const String& url, ScriptExecutionContext*, ExceptionCode&);
WorkerScriptLoader.h 55 const KURL& url() const { return m_url; } function in class:WebCore::WorkerScriptLoader
  /external/webkit/Source/WebKit/android/jni/
CookieManager.cpp 57 static jstring getCookie(JNIEnv* env, jobject, jstring url, jboolean privateBrowsing)
60 GURL gurl(jstringToStdString(env, url));
140 static void setCookie(JNIEnv* env, jobject, jstring url, jstring value, jboolean privateBrowsing)
143 GURL gurl(jstringToStdString(env, url));
WebCoreResourceLoader.h 55 * Call to java to find out if this URL is in the cache
57 static bool willLoadFromCache(const WebCore::KURL& url, int64_t identifier);
  /external/webkit/Source/WebKit/chromium/src/
AsyncFileWriterChromium.cpp 60 m_writer->write(position, WebKit::WebURL(data->url()));
SocketStreamHandle.cpp 90 void SocketStreamHandleInternal::connect(const KURL& url)
95 m_socket->connect(url, this);
192 SocketStreamHandle::SocketStreamHandle(const KURL& url, SocketStreamHandleClient* client)
193 : SocketStreamHandleBase(url, client)
WorkerAsyncFileWriterChromium.cpp 74 m_bridge->postWriteToMainThread(position, data->url());
  /external/webkit/Source/WebKit/mac/Plugins/
npapi.mm 82 NPError NPN_GetURLNotify(NPP instance, const char* URL, const char* target, void* notifyData)
84 return [pluginViewForInstance(instance) getURLNotify:URL target:target notifyData:notifyData];
87 NPError NPN_GetURL(NPP instance, const char* URL, const char* target)
89 return [pluginViewForInstance(instance) getURL:URL target:target];
92 NPError NPN_PostURLNotify(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file, void* notifyData)
94 return [pluginViewForInstance(instance) postURLNotify:URL target:target len:len buf:buf file:file notifyData:notifyData];
97 NPError NPN_PostURL(NPP instance, const char* URL, const char* target, uint32_t len, const char* buf, NPBool file)
99 return [pluginViewForInstance(instance) postURL:URL target:target len:len buf:buf file:file];
194 NPError NPN_GetValueForURL(NPP instance, NPNURLVariable variable, const char* url, char** value, uint32_t* len)
196 return [pluginViewForInstance(instance) getVariable:variable forURL:url value:value length:len]
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qgraphicswebview.h 47 Q_PROPERTY(QUrl url READ url WRITE setUrl NOTIFY urlChanged)
63 QUrl url() const;
74 void load(const QUrl& url);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebDataSource.idl 152 HRESULT unreachableURL([out, retval] BSTR* url);
184 @abstract Returns a subresource for a given URL.
185 @param URL The URL of the subresource.
186 @description Returns non-nil if the data source has fully downloaded a subresource with the given URL.
187 - (WebResource *)subresourceForURL:(NSURL *)URL;
189 HRESULT subresourceForURL([in] BSTR url, [out, retval] IWebResource** resource);
196 Later, if something causes the data source to load the URL of the subresource, the data source
200 subresource with the same URL, addSubresource: will replace it.
IWebHistoryItemPrivate.idl 50 HRESULT RSSFeedReferrer([out, retval] BSTR* url);
51 HRESULT setRSSFeedReferrer([in] BSTR url);
  /external/webkit/Source/WebKit2/UIProcess/API/qt/
qwkhistory.h 49 QUrl url() const;
  /external/webkit/Source/WebKit2/UIProcess/cf/
WebBackForwardListCF.cpp 63 RefPtr<WebURL> webURL = WebURL::create(m_entries[i]->url());
70 RetainPtr<CFStringRef> url(AdoptCF, m_entries[i]->url().createCFString());
76 const void* values[4] = { url.get(), title.get(), originalURL.get(), entryData.get() };
131 LOG(SessionState, "WebBackForwardList entry at index %i does not have a valid URL", (int)i);
143 LOG(SessionState, "WebBackForwardList entry at index %i does not have a valid original URL", (int)i);
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/API/c/
WKBundleBackForwardListItem.cpp 52 return toCopiedURLAPI(toImpl(itemRef)->url());
  /external/webkit/Source/WebKit2/WebProcess/InjectedBundle/
InjectedBundleBackForwardListItem.h 51 const String& url() const { return m_item->urlString(); } function in class:WebKit::InjectedBundleBackForwardListItem
  /external/webkit/Tools/DumpRenderTree/chromium/
TestNavigationController.cpp 49 int pageID, const WebURL& url, const WebString& title, const WebString& targetFrame)
51 return adoptRef(new TestNavigationEntry(pageID, url, title, targetFrame));
58 int pageID, const WebURL& url, const WebString& title, const WebString& targetFrame)
60 , m_url(url)
134 // result in a download or a 'no content' response (e.g., a mailto: URL).
189 // same URL, a new PageID is not created.
197 // The given entry might provide a new URL... e.g., navigating back to a
199 existingEntry->setURL(entry->URL());
205 && GURL(m_pendingEntry->URL()) == GURL(existingEntry->URL().spec()))
    [all...]

Completed in 883 milliseconds

<<41424344454647484950>>