Searched defs:dataSource (Results 1 - 24 of 24) sorted by relevance

/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLDataGridElementCustom.cpp40 JSValue JSHTMLDataGridElement::dataSource(ExecState*) const function in class:WebCore::JSHTMLDataGridElement
42 DataGridDataSource* dataSource = static_cast<HTMLDataGridElement*>(impl())->dataSource(); local
43 if (dataSource && dataSource->isJSDataGridDataSource())
44 return asJSDataGridDataSource(dataSource)->jsDataSource();
H A DJSDataGridDataSource.cpp43 JSDataGridDataSource::JSDataGridDataSource(JSC::JSValue dataSource, Frame* frame) argument
44 : m_dataSource(dataSource)
H A DJSDataGridDataSource.h44 static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue dataSource, Frame* frame) argument
46 return adoptRef(new JSDataGridDataSource(dataSource, frame));
61 inline JSDataGridDataSource* asJSDataGridDataSource(DataGridDataSource* dataSource) argument
63 ASSERT(dataSource->isJSDataGridDataSource());
64 return static_cast<JSDataGridDataSource*>(dataSource);
67 inline const JSDataGridDataSource* asJSDataGridDataSource(const DataGridDataSource* dataSource) argument
69 ASSERT(dataSource->isJSDataGridDataSource());
70 return static_cast<const JSDataGridDataSource*>(dataSource);
/external/webkit/Source/WebCore/bindings/v8/
H A DV8DataGridDataSource.cpp45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame) argument
46 : m_dataSource(v8::Persistent<v8::Value>::New(dataSource))
H A DV8DataGridDataSource.h49 static PassRefPtr<V8DataGridDataSource> create(v8::Handle<v8::Value> dataSource, Frame* frame) argument
51 return adoptRef(new V8DataGridDataSource(dataSource, frame));
66 inline V8DataGridDataSource* asV8DataGridDataSource(DataGridDataSource* dataSource) argument
68 ASSERT(dataSource->isJSDataGridDataSource());
69 return static_cast<V8DataGridDataSource*>(dataSource);
72 inline const V8DataGridDataSource* asV8DataGridDataSource(const DataGridDataSource* dataSource) argument
74 ASSERT(dataSource->isJSDataGridDataSource());
75 return static_cast<const V8DataGridDataSource*>(dataSource);
/external/webkit/Source/WebCore/bindings/v8/custom/
H A DV8HTMLDataGridElementCustom.cpp45 INC_STATS("DOM.HTMLDataGridElement.dataSource._get");
48 DataGridDataSource* dataSource = imp->dataSource(); local
49 if (dataSource && dataSource->isJSDataGridDataSource())
50 return asV8DataGridDataSource(dataSource)->jsDataSource();
56 INC_STATS("DOM.HTMLDataGridElement.dataSource._set");
59 RefPtr<DataGridDataSource> dataSource; local
62 dataSource = V8DataGridDataSource::create(value, frame);
64 imp->setDataSource(dataSource
[all...]
/external/webkit/Source/WebCore/html/
H A DDOMDataGridDataSource.h54 inline DOMDataGridDataSource* asDOMDataGridDataSource(DataGridDataSource* dataSource) argument
56 ASSERT(dataSource->isDOMDataGridDataSource());
57 return static_cast<DOMDataGridDataSource*>(dataSource);
60 inline const DOMDataGridDataSource* asDOMDataGridDataSource(const DataGridDataSource* dataSource) argument
62 ASSERT(dataSource->isDOMDataGridDataSource());
63 return static_cast<const DOMDataGridDataSource*>(dataSource);
H A DHTMLDataGridElement.cpp98 RefPtr<DataGridDataSource> dataSource = ds;
99 if (!dataSource)
100 dataSource = DOMDataGridDataSource::create();
101 m_dataSource = dataSource;
108 DataGridDataSource* HTMLDataGridElement::dataSource() const function in class:WebCore::HTMLDataGridElement
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
H A DDocumentLoaderGtk.cpp48 void DocumentLoader::setDataSource(WebKitWebDataSource* dataSource) argument
52 m_dataSource = dataSource;
72 GRefPtr<WebKitWebDataSource> dataSource(adoptGRef(kitNew(this)));
73 setDataSource(dataSource.get());
H A DDocumentLoaderGtk.h53 WebKitWebDataSource* dataSource() const { return m_dataSource; } function in class:WebKit::DocumentLoader
/external/webkit/Source/WebKit/mac/WebView/
H A DWebPDFView.h45 WebDataSource *dataSource; variable
/external/webkit/Source/WebKit/win/
H A DWebDocumentLoader.cpp57 void WebDocumentLoader::setDataSource(WebDataSource *dataSource) argument
60 m_dataSource = dataSource;
65 WebDataSource* WebDocumentLoader::dataSource() const function in class:WebDocumentLoader
H A DWebHTMLRepresentation.cpp225 /* [in] */ IWebDataSource* /*dataSource*/)
233 /* [in] */ IWebDataSource* /*dataSource*/)
241 /* [in] */ IWebDataSource* /*dataSource*/)
248 /* [in] */ IWebDataSource* /*dataSource*/)
273 COMPtr<IWebDataSource> dataSource; local
274 hr = m_frame->dataSource(&dataSource);
279 hr = dataSource->data(&data);
H A DWebFrame.cpp648 return loader ? static_cast<WebDocumentLoader*>(loader)->dataSource() : 0;
651 HRESULT STDMETHODCALLTYPE WebFrame::dataSource( function in class:WebFrame
1476 COMPtr<IWebDataSource> dataSource; local
1477 hr = WebFrame::dataSource(&dataSource);
1482 hr = dataSource->response(&urlResponse);
/external/webkit/Tools/DumpRenderTree/win/
H A DResourceLoadDelegate.h50 /* [in] */ IWebDataSource *dataSource,
58 /* [in] */ IWebDataSource *dataSource,
65 /* [in] */ IWebDataSource *dataSource);
71 /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
77 /* [in] */ IWebDataSource *dataSource);
83 /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
88 /* [in] */ IWebDataSource *dataSource);
94 /* [in] */ IWebDataSource *dataSource);
99 /* [in] */ IWebDataSource *dataSource) { return E_NOTIMPL; }
67 didCancelAuthenticationChallenge( IWebView *webView, unsigned long identifier, IWebURLAuthenticationChallenge *challenge, IWebDataSource *dataSource) argument
79 didReceiveContentLength( IWebView *webView, unsigned long identifier, UINT length, IWebDataSource *dataSource) argument
96 plugInFailedWithError( IWebView *webView, IWebError *error, IWebDataSource *dataSource) argument
H A DImageDiffCairo.cpp64 CFMutableDataRef dataSource = reinterpret_cast<CFMutableDataRef>(closure); local
67 CFDataGetBytes(dataSource, range, data);
68 CFDataDeleteBytes(dataSource, range);
H A DResourceLoadDelegate.cpp216 /* [in] */ IWebDataSource* dataSource,
245 /* [in] */ IWebDataSource* dataSource,
256 COMPtr<IWebDataSourcePrivate> dataSourcePrivate(Query, dataSource);
290 /* [in] */ IWebDataSource *dataSource)
320 /* [in] */ IWebDataSource* dataSource)
352 /* [in] */ IWebDataSource* dataSource)
368 /* [in] */ IWebDataSource* dataSource)
213 identifierForInitialRequest( IWebView* webView, IWebURLRequest* request, IWebDataSource* dataSource, unsigned long identifier) argument
240 willSendRequest( IWebView* webView, unsigned long identifier, IWebURLRequest* request, IWebURLResponse* redirectResponse, IWebDataSource* dataSource, IWebURLRequest **newRequest) argument
286 didReceiveAuthenticationChallenge( IWebView *webView, unsigned long identifier, IWebURLAuthenticationChallenge *challenge, IWebDataSource *dataSource) argument
316 didReceiveResponse( IWebView* webView, unsigned long identifier, IWebURLResponse* response, IWebDataSource* dataSource) argument
349 didFinishLoadingFromDataSource( IWebView* webView, unsigned long identifier, IWebDataSource* dataSource) argument
364 didFailLoadingWithError( IWebView* webView, unsigned long identifier, IWebError* error, IWebDataSource* dataSource) argument
H A DDumpRenderTree.cpp148 COMPtr<IWebDataSource> dataSource;
149 if (FAILED(frame->dataSource(&dataSource))) {
150 if (FAILED(frame->provisionalDataSource(&dataSource)))
155 if (FAILED(dataSource->request(&request)))
709 COMPtr<IWebDataSource> dataSource; local
710 if (SUCCEEDED(frame->dataSource(&dataSource))) {
712 if (SUCCEEDED(dataSource->response(&response)) && response) {
H A DLayoutTestControllerWin.cpp306 COMPtr<IWebDataSource> dataSource; local
307 if (FAILED(frame->dataSource(&dataSource)))
311 if (FAILED(dataSource->response(&response)) || !response)
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebdatasource.c39 WebKitWebDataSource* dataSource; local
50 dataSource = webkit_web_frame_get_provisional_data_source(frame);
51 g_assert(dataSource);
52 initialRequest = webkit_web_data_source_get_initial_request(dataSource);
80 WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(frame); local
83 g_assert(webkit_web_data_source_is_loading(dataSource));
91 WebKitNetworkRequest* request = webkit_web_data_source_get_request(dataSource);
96 WebKitWebResource* resource = webkit_web_data_source_get_main_resource(dataSource);
102 GString* data = webkit_web_data_source_get_data(dataSource);
146 WebKitWebDataSource* dataSource local
172 WebKitWebDataSource* dataSource = webkit_web_frame_get_data_source(webkit_web_view_get_main_frame(view)); local
[all...]
/external/webkit/Source/WebKit/gtk/webkit/
H A Dwebkitwebdatasource.cpp110 WebKitWebDataSource* dataSource = WEBKIT_WEB_DATA_SOURCE(object); local
111 WebKitWebDataSourcePrivate* priv = dataSource->priv;
/external/webkit/Tools/WinLauncher/
H A DWinLauncher.cpp66 IWebDataSource* dataSource = 0; local
76 hr = mainFrame->dataSource(&dataSource);
77 if (FAILED(hr) || !dataSource)
78 hr = mainFrame->provisionalDataSource(&dataSource);
79 if (FAILED(hr) || !dataSource)
82 hr = dataSource->request(&request);
95 if (dataSource)
96 dataSource->Release();
/external/webkit/Tools/DumpRenderTree/chromium/
H A DWebViewHost.cpp994 frame->dataSource()->setExtraData(m_pendingExtraData.leakPtr());
1323 WebDataSource* dataSource = mainFrame->dataSource(); local
1324 if (!dataSource)
1325 dataSource = mainFrame->provisionalDataSource();
1326 if (!dataSource)
1329 setAddressBarURL(dataSource->request().url());
1343 TestShellExtraData* extraData = static_cast<TestShellExtraData*>(frame->dataSource()->extraData());
1364 WebDataSource* ds = frame->dataSource();
/external/webkit/Source/WebKit/chromium/src/
H A DWebFrameImpl.cpp514 const WebDataSource* ds = dataSource();
1018 WebDataSource* WebFrameImpl::dataSource() const function in class:WebKit::WebFrameImpl
2083 return static_cast<WebDataSourceImpl*>(dataSource());

Completed in 462 milliseconds