Searched refs:dataSource (Results 1 - 25 of 69) sorted by relevance

123

/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/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.idl31 attribute [Custom] DataGridDataSource 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/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/WebKit/mac/WebView/
H A DWebJSPDFDoc.mm36 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
37 CFRetain(dataSource);
42 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
43 CFRelease(dataSource);
48 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(thisObject);
50 WebView *webView = [[dataSource webFrame] webView];
51 CallUIDelegate(webView, @selector(webView:printFrameView:), [[dataSource webFrame] frameView]);
71 JSObjectRef makeJSPDFDoc(JSContextRef ctx, WebDataSource *dataSource)
75 return JSObjectMake(ctx, jsPDFDocClass, dataSource);
H A DWebResourceLoadDelegate.h58 @param dataSource The datasource that initiated the load.
67 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
79 @param dataSource The dataSource that initiated the load.
83 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
94 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
101 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
110 @param dataSource The dataSource that initiated the load.
116 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
[all...]
H A DWebDocument.h43 @param dataSource The corresponding data source.
45 - (void)setDataSource:(WebDataSource *)dataSource;
50 @param dataSource The corresponding data source.
52 - (void)dataSourceUpdated:(WebDataSource *)dataSource;
163 @param dataSource The data source that is set.
165 - (void)setDataSource:(WebDataSource *)dataSource;
171 @param dataSource The data source that has received data.
173 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource;
179 @param dataSource The data source that has received the error.
181 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource;
[all...]
H A DWebResourceLoadDelegatePrivate.h43 - (void)webView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
44 - (BOOL)webView:(WebView *)webView resource:(id)identifier shouldUseCredentialStorageForDataSource:(WebDataSource *)dataSource;
53 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource;
H A DWebPDFRepresentation.mm73 - (void)setDataSource:(WebDataSource *)dataSource
77 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource
81 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource
113 - (void)finishedLoadingWithDataSource:(WebDataSource *)dataSource
115 NSData *data = [dataSource data];
118 NSString *mimeType = [dataSource _responseMIMEType];
125 WebPDFView *view = (WebPDFView *)[[[dataSource webFrame] frameView] documentView];
138 JSObjectRef jsPDFDoc = makeJSPDFDoc(ctx, dataSource);
H A DWebHTMLRepresentation.mm67 WebDataSource *dataSource;
157 - (void)setDataSource:(WebDataSource *)dataSource
159 _private->dataSource = dataSource;
161 if (!_private->includedInWebKitStatistics && [[dataSource webFrame] _isIncludedInWebKitStatistics]) {
169 return [[_private->dataSource _responseMIMEType] _webkit_isCaseInsensitiveEqualToString:@"application/x-webarchive"];
172 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource
174 WebFrame *webFrame = [dataSource webFrame];
188 [_private->manualLoader pluginView:_private->pluginView receivedResponse:[dataSource response]];
196 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource
[all...]
H A DWebDocumentLoaderMac.mm65 void WebDocumentLoaderMac::setDataSource(WebDataSource *dataSource, WebView *webView)
70 m_dataSource = dataSource;
83 WebDataSource *WebDocumentLoaderMac::dataSource() const
/external/webkit/Source/WebCore/bindings/v8/
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);
H A DV8DataGridDataSource.cpp45 V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value> dataSource, Frame* frame) argument
46 : m_dataSource(v8::Persistent<v8::Value>::New(dataSource))
/external/webkit/Source/WebKit/win/Interfaces/
H A DIWebResourceLoadDelegate.idl68 @param dataSource The datasource that initiated the load.
76 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
78 HRESULT identifierForInitialRequest([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebDataSource* dataSource, [in] unsigned long identifier);
90 @param dataSource The dataSource that initiated the load.
93 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
95 HRESULT willSendRequest([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLRequest* request, [in] IWebURLResponse* redirectResponse, [in] IWebDataSource* dataSource, [out, retval] IWebURLRequest** newRequest);
105 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
107 HRESULT didReceiveAuthenticationChallenge([in] IWebView* webView, [in] unsigned long identifier,[in] IWebURLAuthenticationChallenge* challenge, [in] IWebDataSource* dataSource);
113 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
[all...]
H A DIWebDocument.idl53 @param dataSource The corresponding data source.
54 - (void)setDataSource:(WebDataSource *)dataSource;
56 HRESULT setDataSource([in] IWebDataSource* dataSource);
61 @param dataSource The corresponding data source.
62 - (void)dataSourceUpdated:(WebDataSource *)dataSource;
64 HRESULT dataSourceUpdated([in] IWebDataSource* dataSource);
193 @param dataSource The data source that is set.
194 - (void)setDataSource:(WebDataSource *)dataSource;
196 HRESULT setDataSource([in] IWebDataSource* dataSource);
202 @param dataSource Th
[all...]
H A DIWebResourceLoadDelegatePrivate.idl54 @param dataSource The datasource that initiated the load.
57 - (id)webView:(WebView *)sender didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(NSInteger)length fromDataSource:(WebDataSource *)dataSource
59 HRESULT didLoadResourceFromMemoryCache([in] IWebView* webView, [in] IWebURLRequest* request, [in] IWebURLResponse* response, [in] UINT length, [in] IWebDataSource* dataSource);
61 HRESULT shouldUseCredentialStorage([in] IWebView* webView, [in] unsigned long identifier, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldUse);
63 HRESULT shouldCacheResponse([in] IWebView* webView, [in] unsigned long identifier, [in] IWebURLResponse* response, [in] const char* data, [in] unsigned long long length, [in] IWebDataSource* dataSource, [out, retval] BOOL* shouldCache);
/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
/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 DWebDocumentLoader.h39 WebDataSource* dataSource() const;
/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());
/external/webkit/Tools/DumpRenderTree/mac/
H A DResourceLoadDelegate.mm80 WebDataSource *dataSource = [mainFrame dataSource];
81 if (!dataSource)
82 dataSource = [mainFrame provisionalDataSource];
84 NSString *basePath = [[[[dataSource request] URL] path] stringByDeletingLastPathComponent];
117 - webView: (WebView *)wv identifierForInitialRequest: (NSURLRequest *)request fromDataSource: (WebDataSource *)dataSource
119 ASSERT([[dataSource webFrame] dataSource] || [[dataSource webFrame] provisionalDataSource]);
127 -(NSURLRequest *)webView: (WebView *)wv resource:identifier willSendRequest: (NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
[all...]
/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...]

Completed in 335 milliseconds

123