Searched refs:WebDataSource (Results 1 - 25 of 51) sorted by relevance

123

/macosx-10.10/WebKit-7600.1.25/mac/WebView/
H A DWebJSPDFDoc.h28 @class WebDataSource;
30 JSObjectRef makeJSPDFDoc(JSContextRef, WebDataSource *);
H A DWebDocument.h39 @class WebDataSource;
52 - (void)setDataSource:(WebDataSource *)dataSource;
59 - (void)dataSourceUpdated:(WebDataSource *)dataSource;
176 - (void)setDataSource:(WebDataSource *)dataSource;
184 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource;
192 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource;
199 - (void)finishedLoadingWithDataSource:(WebDataSource *)dataSource;
H A DWebJSPDFDoc.mm28 #import "WebDataSource.h"
36 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
42 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(object);
48 WebDataSource *dataSource = (WebDataSource *)JSObjectGetPrivate(thisObject);
71 JSObjectRef makeJSPDFDoc(JSContextRef ctx, WebDataSource *dataSource)
H A DWebResourceLoadDelegate.h30 @class WebDataSource;
61 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
77 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
88 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
95 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource;
110 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
121 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(NSInteger)length fromDataSource:(WebDataSource *)dataSource;
131 - (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource;
142 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSource;
156 - (void)webView:(WebView *)sender plugInFailedWithError:(NSError *)error dataSource:(WebDataSource *)dataSourc
[all...]
H A DWebResourceLoadDelegatePrivate.h30 @class WebDataSource;
37 - (void)webView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(NSInteger)length fromDataSource:(WebDataSource *)dataSource;
38 - (BOOL)webView:(WebView *)webView resource:(id)identifier shouldUseCredentialStorageForDataSource:(WebDataSource *)dataSource;
46 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource WEBKIT_AVAILABLE_MAC(10_6);
57 - (id)webThreadWebView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource;
58 - (NSURLRequest *)webThreadWebView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource;
59 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
60 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource;
61 - (void)webThreadWebView:(WebView *)webView didLoadResourceFromMemoryCache:(NSURLRequest *)request response:(NSURLResponse *)response length:(WebNSInteger)length fromDataSource:(WebDataSource *)dataSource;
62 - (void)webThreadWebView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSourc
[all...]
H A DWebDocumentLoaderMac.h33 @class WebDataSource;
47 void setDataSource(WebDataSource *, WebView*);
49 WebDataSource *dataSource() const;
63 WebDataSource *m_dataSource;
H A DWebPDFView.h35 @class WebDataSource;
47 WebDataSource *dataSource;
H A DWebDataSourcePrivate.h29 #import <WebKitLegacy/WebDataSource.h>
37 @interface WebDataSource (WebPrivate)
H A DWebHTMLView.h36 @class WebDataSource;
H A DWebFrame.h37 @class WebDataSource;
46 has a WebFrameView and a WebDataSource.
149 @property (nonatomic, readonly, strong) WebDataSource *dataSource;
158 @property (nonatomic, readonly, strong) WebDataSource *provisionalDataSource;
H A DWebFrameViewInternal.h38 - (NSView <WebDocumentView> *)_makeDocumentViewForDataSource:(WebDataSource *)dataSource;
H A DWebPDFRepresentation.mm75 - (void)setDataSource:(WebDataSource *)dataSource
79 - (void)receivedData:(NSData *)data withDataSource:(WebDataSource *)dataSource
83 - (void)receivedError:(NSError *)error withDataSource:(WebDataSource *)dataSource
115 - (void)finishedLoadingWithDataSource:(WebDataSource *)dataSource
H A DWebDataSourceInternal.h44 @interface WebDataSource (WebInternal)
H A DWebDocumentLoaderMac.mm54 void WebDocumentLoaderMac::setDataSource(WebDataSource *dataSource, WebView *webView)
72 WebDataSource *WebDocumentLoaderMac::dataSource() const
/macosx-10.10/WebKit-7600.1.25/win/
H A DWebDocumentLoader.h26 #include "WebDataSource.h"
38 void setDataSource(WebDataSource*);
39 WebDataSource* dataSource() const;
47 WebDataSource* m_dataSource;
48 WebDataSource* m_detachedDataSource; // not retained
H A DWebDataSource.cpp28 #include "WebDataSource.h"
52 // WebDataSource ----------------------------------------------------------------
58 WebDataSource::WebDataSource(WebDocumentLoader* loader) function in class:WebDataSource
64 gClassNameCount.add("WebDataSource");
67 WebDataSource::~WebDataSource()
73 gClassNameCount.remove("WebDataSource");
76 WebDataSource* WebDataSource
[all...]
H A DWebDocumentLoader.cpp57 void WebDocumentLoader::setDataSource(WebDataSource *dataSource)
65 WebDataSource* WebDocumentLoader::dataSource() const
72 // we only call detachDataSource when the WebDataSource is freed - and we won't get there if m_dataSource is not
93 WebDataSource* dataSourceToBeReleased = m_dataSource;
H A DWebDataSource.h38 class WebDataSource : public IWebDataSource, public IWebDataSourcePrivate class in inherits:IWebDataSource,IWebDataSourcePrivate
41 static WebDataSource* createInstance(WebDocumentLoader*);
43 WebDataSource(WebDocumentLoader*);
44 ~WebDataSource();
116 // WebDataSource
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webdatasource.py7 self.failUnlessResultIsBOOL(WebDataSource.isLoading)
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-WebKit/PyObjCTest/
H A Dtest_webdatasource.py7 self.assertResultIsBOOL(WebDataSource.isLoading)
/macosx-10.10/pyobjc-45/pyobjc/pyobjc-framework-WebKit-2.5.1/PyObjCTest/
H A Dtest_webdatasource.py7 self.assertResultIsBOOL(WebDataSource.isLoading)
/macosx-10.10/WebKit-7600.1.25/ios/WebView/
H A DWebPlainWhiteView.h32 @class WebDataSource;
H A DWebPlainWhiteView.mm49 - (void)setDataSource:(WebDataSource *)dataSource
53 - (void)dataSourceUpdated:(WebDataSource *)dataSource
/macosx-10.10/WebKit-7600.1.25/ios/DefaultDelegates/
H A DWebDefaultResourceLoadDelegate.m42 - (id)webView:(WebView *)sender identifierForInitialRequest:(NSURLRequest *)request fromDataSource:(WebDataSource *)dataSource
47 - (NSURLRequest *)webView:(WebView *)sender resource:(id)identifier willSendRequest:(NSURLRequest *)request redirectResponse:(NSURLResponse *)redirectResponse fromDataSource:(WebDataSource *)dataSource
52 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
56 - (void)webView:(WebView *)sender resource:(id)identifier didCancelAuthenticationChallenge:(NSURLAuthenticationChallenge *)challenge fromDataSource:(WebDataSource *)dataSource
60 - (BOOL)webView:(WebView *)sender resource:(id)identifier canAuthenticateAgainstProtectionSpace:(NSURLProtectionSpace *)protectionSpace forDataSource:(WebDataSource *)dataSource
65 - (NSDictionary *)webView:(WebView *)sender connectionPropertiesForResource:(id)identifier dataSource:(WebDataSource *)dataSource
70 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveResponse:(NSURLResponse *)response fromDataSource:(WebDataSource *)dataSource
74 - (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(NSInteger)length fromDataSource:(WebDataSource *)dataSource
78 - (void)webView:(WebView *)sender resource:(id)identifier didFinishLoadingFromDataSource:(WebDataSource *)dataSource
82 - (void)webView:(WebView *)sender resource:(id)identifier didFailLoadingWithError:(NSError *)error fromDataSource:(WebDataSource *)dataSourc
[all...]
/macosx-10.10/WebKit-7600.1.25/mac/Plugins/
H A DWebPluginController.h36 @class WebDataSource;
44 WebDataSource *_dataSource;
59 - (void)setDataSource:(WebDataSource *)dataSource;

Completed in 206 milliseconds

123