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

<<41424344454647484950>>

  /external/webkit/Source/WebCore/page/
EventSource.h 56 static PassRefPtr<EventSource> create(const String& url, ScriptExecutionContext*, ExceptionCode&);
61 String url() const;
  /external/webkit/Source/WebCore/platform/graphics/win/
QTMovie.h 73 void loadPath(const UChar* url, int len, bool preservesPitch);
74 void load(const UChar* url, int len, bool preservesPitch);
  /external/webkit/Source/WebCore/platform/graphics/wince/
MediaPlayerPrivateWinCE.h 52 void load(const String& url);
95 void setPoster(const String& url);
  /external/webkit/Source/WebCore/platform/network/
SocketStreamHandleBase.cpp 41 SocketStreamHandleBase::SocketStreamHandleBase(const KURL& url, SocketStreamHandleClient* client)
42 : m_url(url)
  /external/webkit/Source/WebCore/platform/network/cf/
ResourceResponse.h 67 ResourceResponse(const KURL& url, const String& mimeType, long long expectedLength, const String& textEncodingName, const String& filename)
68 : ResourceResponseBase(url, mimeType, expectedLength, textEncodingName, filename)
79 // Mostly due to the size of the hash maps, the Header Map strings and the URL.
81 // Mostly due to the URL and Header Map.
  /external/webkit/Source/WebCore/platform/wince/
PasteboardWinCE.cpp 119 markupToCF_HTML(createMarkup(selectedRange, 0, AnnotateForInterchange), selectedRange->startContainer(ec)->document()->url(), data);
161 void Pasteboard::writeURL(const KURL& url, const String& titleStr, Frame* frame)
163 ASSERT(!url.isEmpty());
169 title = url.lastPathComponent();
171 title = url.host();
176 HGLOBAL cbData = createGlobalData(url, title);
185 markupToCF_HTML(urlToMarkup(url, title), "", data);
194 HGLOBAL cbData = createGlobalData(url.string());
  /external/webkit/Source/WebCore/platform/wx/
ClipboardWx.cpp 125 void ClipboardWx::writeURL(const KURL& url, const String& string, Frame* frame)
127 Pasteboard::generalPasteboard()->writeURL(url, string, frame);
PasteboardWx.cpp 100 void Pasteboard::writeURL(const KURL& url, const String&, Frame*)
103 wxTheClipboard->SetData( new wxTextDataObject( url.string() ) );
  /external/webkit/Source/WebCore/storage/
StorageEvent.idl 34 readonly attribute DOMString url;
  /external/webkit/Source/WebCore/websockets/
WebSocketChannel.h 54 static PassRefPtr<WebSocketChannel> create(ScriptExecutionContext* context, WebSocketChannelClient* client, const KURL& url, const String& protocol) { return adoptRef(new WebSocketChannel(context, client, url, protocol)); }
  /external/webkit/Source/WebCore/wml/
WMLDocument.cpp 38 WMLDocument::WMLDocument(Frame* frame, const KURL& url)
39 : Document(frame, url, false, false)
  /external/webkit/Source/WebCore/workers/
DedicatedWorkerContext.cpp 44 DedicatedWorkerContext::DedicatedWorkerContext(const KURL& url, const String& userAgent, DedicatedWorkerThread* thread)
45 : WorkerContext(url, userAgent, thread)
  /external/webkit/Source/WebKit/android/WebCoreSupport/
PlatformBridge.cpp 63 String PlatformBridge::getSignedPublicKeyAndChallengeString(unsigned index, const String& challenge, const KURL& url)
69 return client->getSignedPublicKeyAndChallengeString(index, challenge, url);
72 void PlatformBridge::setCookies(const Document* document, const KURL& url, const String& value)
76 GURL cookieGurl(url.string().utf8().data());
84 client->setCookies(url, value);
88 String PlatformBridge::cookies(const Document* document, const KURL& url)
91 GURL cookieGurl(url.string().utf8().data());
101 return client->cookies(url);
WebResponse.h 48 WebResponse(const std::string &url, const std::string &mimeType, long long expectedSize, const std::string &encoding, int httpStatusCode);
64 static const std::string resolveMimeType(const std::string& url, const std::string& old_mime);
  /external/webkit/Source/WebKit/chromium/src/
InspectorFrontendClientImpl.cpp 128 void InspectorFrontendClientImpl::inspectedURLChanged(const String& url)
130 m_frontendPage->mainFrame()->document()->setTitle("Developer Tools - " + url);
StorageEventDispatcherImpl.cpp 55 const KURL& url, StorageType storageType)
78 frames[i]->document()->dispatchWindowEvent(StorageEvent::create(eventNames().storageEvent, key, oldValue, newValue, url, storage));
  /external/webkit/Source/WebKit/efl/ewk/
ewk_settings.cpp 221 * Queries icon for given URL, returning associated cairo surface.
226 * @param url which url to query icon
230 cairo_surface_t* ewk_settings_icon_database_icon_surface_get(const char *url)
232 EINA_SAFETY_ON_NULL_RETURN_VAL(url, 0);
234 WebCore::KURL kurl(WebCore::KURL(), WTF::String::fromUTF8(url));
238 ERR("no icon for url %s", url);
246 * Creates Evas_Object of type image representing the given URL.
255 * @param url which url to query ico
    [all...]
  /external/webkit/Source/WebKit/mac/WebView/
WebHistoryDelegate.h 40 - (void)webView:(WebView *)webView updateHistoryTitle:(NSString *)title forURL:(NSString *)url;
  /external/webkit/Source/WebKit/qt/tests/benchmarks/loading/
tst_loading.cpp 85 QTest::addColumn<QUrl>("url");
93 QFETCH(QUrl, url);
97 m_view->load(url);
  /external/webkit/Source/WebKit/win/Interfaces/
IWebNavigationData.idl 45 HRESULT url([out, retval] BSTR*);
IWebURLResponse.idl 48 - (id)initWithURL:(NSURL *)URL MIMEType:(NSString *)MIMEType expectedContentLength:(int)length textEncodingName:(NSString *)name
50 HRESULT initWithURL([in] BSTR url, [in] BSTR mimeType, [in] int expectedContentLength, [in] BSTR textEncodingName);
68 - (NSURL *)URL
70 HRESULT URL([out, retval] BSTR* result);
IWebUserContentURLPattern.idl 43 HRESULT matchesURL([in] BSTR url, [out, retval] BOOL* matches);
  /external/webkit/Tools/DumpRenderTree/TestNetscapePlugIn/
PluginObject.h 87 extern void handleCallback(PluginObject* object, const char *url, NPReason reason, void *notifyData);
88 extern void notifyStream(PluginObject* object, const char *url, const char *headers);
  /external/webkit/Tools/DumpRenderTree/
WorkQueueItem.h 43 LoadItem(const JSStringRef url, const JSStringRef target)
44 : m_url(url)
  /external/webkit/Tools/Scripts/webkitpy/tool/steps/
confirmdiff.py 56 url = "file://%s" % urllib.quote(pretty_diff_file.name)
57 self._tool.user.open_url(url)

Completed in 305 milliseconds

<<41424344454647484950>>