OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dataSource
(Results
1 - 25
of
91
) sorted by null
1
2
3
4
/external/webkit/Source/WebCore/bindings/js/
JSHTMLDataGridElementCustom.cpp
40
JSValue JSHTMLDataGridElement::
dataSource
(ExecState*) const
42
DataGridDataSource*
dataSource
= static_cast<HTMLDataGridElement*>(impl())->
dataSource
();
43
if (
dataSource
&&
dataSource
->isJSDataGridDataSource())
44
return asJSDataGridDataSource(
dataSource
)->jsDataSource();
JSDataGridDataSource.cpp
43
JSDataGridDataSource::JSDataGridDataSource(JSC::JSValue
dataSource
, Frame* frame)
44
: m_dataSource(
dataSource
)
JSDataGridDataSource.h
44
static PassRefPtr<JSDataGridDataSource> create(JSC::JSValue
dataSource
, Frame* frame)
46
return adoptRef(new JSDataGridDataSource(
dataSource
, frame));
61
inline JSDataGridDataSource* asJSDataGridDataSource(DataGridDataSource*
dataSource
)
63
ASSERT(
dataSource
->isJSDataGridDataSource());
64
return static_cast<JSDataGridDataSource*>(
dataSource
);
67
inline const JSDataGridDataSource* asJSDataGridDataSource(const DataGridDataSource*
dataSource
)
69
ASSERT(
dataSource
->isJSDataGridDataSource());
70
return static_cast<const JSDataGridDataSource*>(
dataSource
);
/external/webkit/Source/WebCore/html/
DOMDataGridDataSource.h
54
inline DOMDataGridDataSource* asDOMDataGridDataSource(DataGridDataSource*
dataSource
)
56
ASSERT(
dataSource
->isDOMDataGridDataSource());
57
return static_cast<DOMDataGridDataSource*>(
dataSource
);
60
inline const DOMDataGridDataSource* asDOMDataGridDataSource(const DataGridDataSource*
dataSource
)
62
ASSERT(
dataSource
->isDOMDataGridDataSource());
63
return static_cast<const DOMDataGridDataSource*>(
dataSource
);
HTMLDataGridElement.idl
31
attribute [Custom] DataGridDataSource
dataSource
;
HTMLDataGridElement.cpp
98
RefPtr<DataGridDataSource>
dataSource
= ds;
99
if (!
dataSource
)
100
dataSource
= DOMDataGridDataSource::create();
101
m_dataSource =
dataSource
;
108
DataGridDataSource* HTMLDataGridElement::
dataSource
() const
HTMLDataGridElement.h
52
DataGridDataSource*
dataSource
() const;
/external/webkit/Source/WebCore/bindings/v8/
V8DataGridDataSource.h
49
static PassRefPtr<V8DataGridDataSource> create(v8::Handle<v8::Value>
dataSource
, Frame* frame)
51
return adoptRef(new V8DataGridDataSource(
dataSource
, frame));
66
inline V8DataGridDataSource* asV8DataGridDataSource(DataGridDataSource*
dataSource
)
68
ASSERT(
dataSource
->isJSDataGridDataSource());
69
return static_cast<V8DataGridDataSource*>(
dataSource
);
72
inline const V8DataGridDataSource* asV8DataGridDataSource(const DataGridDataSource*
dataSource
)
74
ASSERT(
dataSource
->isJSDataGridDataSource());
75
return static_cast<const V8DataGridDataSource*>(
dataSource
);
V8DataGridDataSource.cpp
45
V8DataGridDataSource::V8DataGridDataSource(v8::Handle<v8::Value>
dataSource
, Frame* frame)
46
: m_dataSource(v8::Persistent<v8::Value>::New(
dataSource
))
50
V8GCController::registerGlobalHandle(
DATASOURCE
, this, m_dataSource);
/external/webkit/Source/WebCore/bindings/v8/custom/
V8HTMLDataGridElementCustom.cpp
45
INC_STATS("DOM.HTMLDataGridElement.
dataSource
._get");
48
DataGridDataSource*
dataSource
= imp->
dataSource
();
49
if (
dataSource
&&
dataSource
->isJSDataGridDataSource())
50
return asV8DataGridDataSource(
dataSource
)->jsDataSource();
56
INC_STATS("DOM.HTMLDataGridElement.
dataSource
._set");
59
RefPtr<DataGridDataSource>
dataSource
;
62
dataSource
= V8DataGridDataSource::create(value, frame);
64
imp->setDataSource(
dataSource
.get())
[
all
...]
/external/webkit/Source/WebKit/mac/WebView/
WebJSPDFDoc.mm
36
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
);
WebResourceLoadDelegate.h
58
@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
[
all
...]
WebDocument.h
43
@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
...]
WebResourceLoadDelegatePrivate.h
43
- (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
;
WebPDFRepresentation.mm
73
- (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
);
WebHTMLRepresentation.mm
67
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
...]
/external/webkit/Source/WebKit/win/Interfaces/
IWebResourceLoadDelegate.idl
68
@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
);
[
all
...]
IWebDocument.idl
53
@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
The data source that has received data
[
all
...]
IWebResourceLoadDelegatePrivate.idl
54
@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/
ResourceLoadDelegate.h
50
/* [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; }
/external/webkit/Source/WebKit/win/
WebDocumentLoader.cpp
57
void WebDocumentLoader::setDataSource(WebDataSource *
dataSource
)
60
m_dataSource =
dataSource
;
65
WebDataSource* WebDocumentLoader::
dataSource
() const
WebDocumentLoader.h
39
WebDataSource*
dataSource
() const;
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DocumentLoaderGtk.cpp
48
void DocumentLoader::setDataSource(WebKitWebDataSource*
dataSource
)
52
m_dataSource =
dataSource
;
70
// We may get to here without having a
datasource
, when the data
72
GRefPtr<WebKitWebDataSource>
dataSource
(adoptGRef(kitNew(this)));
73
setDataSource(
dataSource
.get());
/external/webkit/Tools/DumpRenderTree/mac/
ResourceLoadDelegate.mm
80
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/
testwebdatasource.c
39
WebKitWebDataSource*
dataSource
;
50
dataSource
= webkit_web_frame_get_provisional_data_source(frame);
51
g_assert(
dataSource
);
52
initialRequest = webkit_web_data_source_get_initial_request(
dataSource
);
68
WebKitWebDataSource*
datasource
= webkit_web_frame_get_data_source(frame);
71
webkit_web_data_source_get_unreachable_uri(
datasource
));
80
WebKitWebDataSource*
dataSource
= webkit_web_frame_get_data_source(frame);
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
);
[
all
...]
Completed in 806 milliseconds
1
2
3
4