/external/webkit/WebCore/dom/ |
ScriptElement.cpp | 62 data.evaluateScript(ScriptSourceCode(data.scriptContent(), data.element()->document()->url())); // FIXME: Provide a real starting line number here. 82 data.evaluateScript(ScriptSourceCode(data.scriptContent(), element->document()->url())); // FIXME: Provide a real starting line number here
|
/external/webkit/WebCore/inspector/ |
JavaScriptProfileNode.cpp | 72 JSRetainPtr<JSStringRef> urlString(Adopt, JSStringCreateWithCharacters(profileNode->url().data(), profileNode->url().size())); 198 { "url", getURL, 0, kJSPropertyAttributeNone },
|
/external/webkit/WebCore/inspector/front-end/ |
Panel.js | 371 canShowSourceLineForURL: function(url) 376 showSourceLineForURL: function(url, line)
|
/external/webkit/WebCore/loader/ |
ImageLoader.cpp | 162 document->docLoader()->m_documentResources.set(newImage->url(), newImage); 247 if (m_element->dispatchBeforeLoadEvent(m_image->url())) {
|
ResourceLoader.cpp | 121 if (m_documentLoader->scheduleArchiveLoad(this, clientRequest, r.url())) 126 if (m_documentLoader->applicationCacheHost()->maybeLoadResource(this, clientRequest, r.url()))
|
/external/webkit/WebKit/android/jni/ |
WebCoreJniOnLoad.cpp | 171 EXPORT void benchmark(const char* url, int reloadCount, int width, int height) { 250 ResourceRequest req(url);
|
/external/webkit/WebKit/chromium/src/ |
FrameLoaderClientImpl.h | 173 const WebCore::KURL& url, const WebCore::String& name, 189 const WebCore::KURL& url, const WebCore::String& mimeType); 223 // and the dest URL matches that load, we know that it was the result of a
|
WebFrameImpl.h | 68 virtual WebURL url() const; 162 virtual WebURL completeURL(const WebString& url) const;
|
WebHistoryItem.cpp | 74 void WebHistoryItem::setURLString(const WebString& url) 77 m_private->setURLString(KURL(ParsedURLString, url).string());
|
WebMediaPlayerClientImpl.cpp | 138 void WebMediaPlayerClientImpl::load(const String& url) 144 m_webMediaPlayer->load(KURL(ParsedURLString, url));
|
WebWorkerBase.cpp | 88 // Note that we have to pass a URL with valid protocol in order to follow 118 void WebWorkerBase::initializeLoader(const WebURL& url) 135 webFrame->frame()->loader()->load(ResourceRequest(url), substData, false);
|
/external/webkit/WebKit/gtk/WebCoreSupport/ |
FrameLoaderClientGtk.h | 114 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL& url, const WebCore::String& name, WebCore::HTMLFrameOwnerElement* ownerElement, 126 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL& url, const WebCore::String& mimeType);
|
/external/webkit/WebKit/gtk/webkit/ |
webkitprivate.cpp | 117 KURL url = KURL(KURL(), String::fromUTF8(webkit_network_request_get_uri(request))); 118 return ResourceRequest(url);
|
/external/webkit/WebKit/mac/Plugins/Hosted/ |
NetscapePluginInstanceProxy.mm | 425 NPError NetscapePluginInstanceProxy::loadURL(const char* url, const char* target, const char* postData, uint32_t postLen, LoadURLFlags flags, uint32_t& streamID) 427 if (!url) 430 NSMutableURLRequest *request = [m_pluginView requestWithURLCString:url]; 436 // If we're posting a file, buf is either a file URL or a path to the file. 506 NSURL *URL = [request URL]; 507 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL]; 567 NSURL *URL = [pluginRequest->request() URL]; 568 NSString *JSString = [URL _webkit_scriptIfJavaScriptURL] [all...] |
/external/webkit/WebKit/mac/WebCoreSupport/ |
WebFrameLoaderClient.h | 189 virtual PassRefPtr<WebCore::Frame> createFrame(const WebCore::KURL& url, const WebCore::String& name, WebCore::HTMLFrameOwnerElement*, 198 virtual WebCore::ObjectContentType objectContentType(const WebCore::KURL& url, const WebCore::String& mimeType);
|
/external/webkit/WebKit/qt/WebCoreSupport/ |
FrameLoaderClientQt.h | 195 virtual PassRefPtr<Frame> createFrame(const KURL& url, const String& name, HTMLFrameOwnerElement* ownerElement, 202 virtual ObjectContentType objectContentType(const KURL& url, const String& mimeType);
|
/external/webkit/WebKit/win/Interfaces/ |
IWebFrame.idl | 118 @param URL The base URL to apply to relative URLs within the document. 119 - (void)loadData:(NSData *)data MIMEType:(NSString *)MIMEType textEncodingName:(NSString *)encodingName baseURL:(NSURL *)URL; 121 HRESULT loadData([in] IStream* data, [in] BSTR mimeType, [in] BSTR textEncodingName, [in] BSTR url); 126 @param URL The base URL to apply to relative URLs within the document. 127 - (void)loadHTMLString:(NSString *)string baseURL:(NSURL *)URL; 133 @abstract Loads a page to display as a substitute for a URL that could not be reached. 142 @param unreachableURL The URL for which this page will serve as alternate content.
|
IWebUIDelegatePrivate.idl | 56 HRESULT webViewAddMessageToConsole([in] IWebView* sender, [in] BSTR message, [in] int lineNumber, [in] BSTR url, [in] BOOL isError);
|
/external/webkit/WebKit/win/ |
WebDownload.cpp | 102 WebDownload* WebDownload::createInstance(const KURL& url, IWebDownloadDelegate* delegate) 106 instance->init(url, delegate);
|
WebView.h | 96 /* [retval][out] */ BSTR *url); 178 /* [in] */ BSTR url, 515 /* [in] */ BSTR url); 746 virtual HRESULT STDMETHODCALLTYPE addUserScriptToGroup(BSTR groupName, IWebScriptWorld*, BSTR source, BSTR url, 750 virtual HRESULT STDMETHODCALLTYPE addUserStyleSheetToGroup(BSTR groupName, IWebScriptWorld*, BSTR source, BSTR url, 753 virtual HRESULT STDMETHODCALLTYPE removeUserScriptFromGroup(BSTR groupName, IWebScriptWorld*, BSTR url); 754 virtual HRESULT STDMETHODCALLTYPE removeUserStyleSheetFromGroup(BSTR groupName, IWebScriptWorld*, BSTR url); 836 const WebCore::String& userAgentForKURL(const WebCore::KURL& url); [all...] |
/external/webkit/WebKit/wx/bindings/python/samples/ |
simple.py | 106 URL = self.location.GetValue() 107 self.location.Append(URL) 108 self.webview.LoadURL(URL) 117 url = self.location.GetStringSelection() 118 self.webview.LoadURL(url) 122 "Enter a full URL or local path",
|
/external/webkit/WebKitTools/DumpRenderTree/win/TestNetscapePlugin/ |
main.cpp | 216 void NPP_URLNotify(NPP instance, const char *url, NPReason reason, void *notifyData) 223 handleCallback(obj, url, reason, notifyData);
|
/external/webkit/WebKitTools/Scripts/ |
validate-committer-lists | 59 def _fetch_emails_from_page(self, url): 60 page = urllib2.urlopen(url)
|
/external/webkit/WebKitTools/Scripts/webkitpy/ |
mock_bugzillatool.py | 51 "url": "http://example.com/197", 65 "url": "http://example.com/128", 79 "url": "http://example.com/103", 90 "url": "http://example.com/103", 103 "url": "http://example.com/103", 115 "url": "http://example.com/103", 127 "url": "http://example.com/103", 337 def open_url(self, url): 338 log("MOCK: user.open_url: %s" % url)
|
/external/webkit/WebKitTools/iExploder/htdocs/ |
iexploder.rb | 28 attr_accessor :test_num, :subtest_num, :lookup_mode, :random_mode, :url 128 when 16 then return "url(" + inventValue() + ")" 274 newpage = @url + "?" 289 bodyText << "\t<META HTTP-EQUIV=\"Refresh\" content=\"0;URL=#{newpage}\">\n"
|