/external/webkit/WebKit/mac/Misc/ |
D | WebDownload.m | 46 delegate:(id)delegate 49 delegate:(id)delegate 89 selector == @selector(download:shouldBeginChildDownloadOfSource:delegate:) || 174 …nload *)download shouldBeginChildDownloadOfSource:(NSURLRequest *)child delegate:(id *)childDelega… 176 …return [realDelegate download:download shouldBeginChildDownloadOfSource:child delegate:childDelega… 188 - (void)_setRealDelegate:(id)delegate 192 [_webInternal setRealDelegate:delegate]; 194 ASSERT(_webInternal == delegate); 216 - (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate 218 [self _setRealDelegate:delegate]; [all …]
|
D | WebDownloadInternal.h | 35 delegate:(id)delegate 39 delegate:(id)delegate
|
D | WebIconDatabase.h | 141 - (void)setDelegate:(id)delegate; 142 - (id)delegate;
|
D | WebIconDatabaseInternal.h | 37 id delegate;
|
/external/emma/core/java12/com/vladium/util/ |
D | IProperties.java | 182 … for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate) in copy() 187 _delegateClone = (PropertiesImpl) delegate.clone (); in copy() 198 _delegateClone.m_valueMap = (HashMap) delegate.m_valueMap.clone (); in copy() 331 … for (PropertiesImpl delegate = m_delegate; delegate != null; delegate = delegate.m_delegate) in getLastProperties() 334 if (delegate == this) in getLastProperties() 337 result = delegate; in getLastProperties() 345 void setDelegate (final PropertiesImpl delegate) in setDelegate() argument 347 m_delegate = delegate; in setDelegate()
|
/external/webkit/WebKit/win/WebCoreSupport/ |
D | WebChromeClient.cpp | 154 COMPtr<IWebUIDelegate3> delegate = uiDelegate3(); in createWindow() local 155 if (!delegate) in createWindow() 159 if (FAILED(delegate->createModalDialog(m_webView, request.get(), &dialog))) in createWindow() 194 if (COMPtr<IWebUIDelegate3> delegate = uiDelegate3()) in canRunModal() local 195 delegate->canRunModal(m_webView, &result); in canRunModal() 201 if (COMPtr<IWebUIDelegate3> delegate = uiDelegate3()) in runModal() local 202 delegate->runModal(m_webView); in runModal() 264 COMPtr<IWebUIDelegate3> delegate = uiDelegate3(); in setMenubarVisible() local 265 if (!delegate) in setMenubarVisible() 267 delegate->setMenuBarVisible(m_webView, visible); in setMenubarVisible() [all …]
|
/external/webkit/WebKit/win/Interfaces/ |
D | IWebUIDelegate.idl | 193 @discussion The newly created window is hidden, and the window operations delegate on the 195 @param sender The WebView sending the delegate method. 204 @param sender The WebView sending the delegate method. 216 @param sender The WebView sending the delegate method. 228 @param The WebView sending the delegate method. 238 @param sender The WebView sending the delegate method. 248 @param sender The WebView sending the delegate method. 261 @param sender The WebView sending the delegate method. 275 @param sender The WebView sending the delegate method. 284 @param sender The WebView sending the delegate method. [all …]
|
D | IWebDownload.idl | 48 authentication-related delegate methods, it will automatically 51 but does have one additional delegate method. 89 - (id)initWithRequest:(NSURLRequest *)request delegate:(id)delegate 91 HRESULT initWithRequest([in] IWebURLRequest* request, [in] IWebDownloadDelegate* delegate); 94 - (id)initWithResumeData:(NSData *)resumeData delegate:(id)delegate path:(NSString *)path 96 HRESULT initToResumeWithBundle([in] BSTR bundlePath, [in] IWebDownloadDelegate* delegate); 122 @discussion The WebDownloadDelegate delegate has one extra method used to choose
|
D | IWebFrameLoadDelegate.idl | 68 @abstract Notifies the delegate that the provisional load of a frame has started 79 @abstract Notifies the delegate that a server redirect occurred during the provisional load 88 @abstract Notifies the delegate that the provisional load has failed 100 @abstract Notifies the delegate that the load has changed from provisional to committed 116 @abstract Notifies the delegate that the page title for a frame has been received 127 @abstract Notifies the delegate that a page icon image for a frame has been received 137 @abstract Notifies the delegate that the committed load of a frame has completed 149 @abstract Notifies the delegate that the committed load of a frame has failed 160 @abstract Notifies the delegate that the scroll position in a frame has changed 170 @abstract Notifies the delegate that a frame will perform a client-side redirect [all …]
|
D | IWebView.idl | 135 loaded. This delegate may be used to present users with a progress monitor. 230 @param delegate The WebUIDelegate to set as the delegate. 231 - (void)setUIDelegate:(id)delegate; 245 @abstract Set the WebView's WebResourceLoadDelegate load delegate. 246 @param delegate The WebResourceLoadDelegate to set as the load delegate. 247 - (void)setResourceLoadDelegate:(id)delegate; 261 … @discussion The download delegate is retained by WebDownload when any downloads are in progress. 262 @param delegate The WebDownloadDelegate to set as the download delegate. 263 - (void)setDownloadDelegate:(id)delegate; 277 @abstract Set the WebView's WebFrameLoadDelegate delegate. [all …]
|
/external/webkit/WebCore/platform/network/mac/ |
D | ResourceHandleMac.mm | 141 id delegate; 146 [d->m_proxy.get() setDelegate:ResourceHandle::delegate()]; 149 delegate = d->m_proxy.get(); 151 delegate = ResourceHandle::delegate(); 160 …nnection = [[NSURLConnection alloc] initWithRequest:d->m_request.nsURLRequest() delegate:delegate]; 162 …[NSURLConnection alloc] initWithRequest:d->m_request.nsURLRequest() delegate:delegate startImmedia… 168 connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate]; 170 …connection = [[NSURLConnection alloc] initWithRequest:request delegate:delegate startImmediately:N… 255 WebCoreResourceHandleAsDelegate *ResourceHandle::delegate() 258 …WebCoreResourceHandleAsDelegate *delegate = [[WebCoreResourceHandleAsDelegate alloc] initWithHandl… [all …]
|
/external/webkit/WebKit/mac/WebView/ |
D | WebView.mm | 1129 delegate:_private->downloadDelegate 1183 … // We originally intended to call this delegate method sometimes with a nil dictionary, but due to 1184 … // a bug dating back to WebKit 1.0 this delegate was never called with nil! Unfortunately we can't 1230 - (void)_setFormDelegate: (id<WebFormDelegate>)delegate 1232 _private->formDelegate = delegate; 1354 id delegate = _private->resourceProgressDelegate; 1356 if (!delegate) { 1361 …cache->didCancelAuthenticationChallengeFunc = getMethod(delegate, @selector(webView:resource:didRe… 1362 …cache->didFailLoadingWithErrorFromDataSourceFunc = getMethod(delegate, @selector(webView:resource:… 1363 …cache->didFinishLoadingFromDataSourceFunc = getMethod(delegate, @selector(webView:resource:didFini… [all …]
|
D | WebView.h | 226 - (void)setUIDelegate:(id)delegate; 240 - (void)setResourceLoadDelegate:(id)delegate; 254 - (void)setDownloadDelegate:(id)delegate; 268 - (void)setFrameLoadDelegate:(id)delegate; 282 - (void)setPolicyDelegate:(id)delegate; 717 - (void)setEditingDelegate:(id)delegate;
|
/external/webkit/WebKit/win/ |
D | WebDownloadCurl.cpp | 61 …, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) in init() argument 66 void WebDownload::init(const KURL& url, IWebDownloadDelegate* delegate) in init() argument 75 /* [in] */ IWebDownloadDelegate* delegate) in initWithRequest() argument 83 /* [in] */ IWebDownloadDelegate* delegate) in initToResumeWithBundle() argument
|
D | WebIconFetcher.cpp | 39 WebIconFetcherClient(IWebIconFetcherDelegate* delegate) in WebIconFetcherClient() argument 41 , m_delegate(delegate) in WebIconFetcherClient() 65 …bIconFetcher* WebIconFetcher::fetchApplicationIcon(Frame* frame, IWebIconFetcherDelegate* delegate) in fetchApplicationIcon() argument 67 WebIconFetcherClient* client = new WebIconFetcherClient(delegate); in fetchApplicationIcon()
|
D | WebDownloadCFNet.cpp | 73 …, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) in init() argument 75 m_delegate = delegate ? delegate : DefaultDownloadDelegate::sharedInstance(); in init() 104 void WebDownload::init(const KURL& url, IWebDownloadDelegate* delegate) in init() argument 106 m_delegate = delegate ? delegate : DefaultDownloadDelegate::sharedInstance(); in init() 128 /* [in] */ IWebDownloadDelegate* delegate) in initWithRequest() argument 136 if (!delegate) in initWithRequest() 138 m_delegate = delegate; in initWithRequest() 165 /* [in] */ IWebDownloadDelegate* delegate) in initToResumeWithBundle() argument 174 if (!delegate) in initToResumeWithBundle() 176 m_delegate = delegate; in initToResumeWithBundle()
|
D | WebDownload.cpp | 94 …, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate) in createInstance() argument 98 instance->init(handle, request, response, delegate); in createInstance() 102 WebDownload* WebDownload::createInstance(const KURL& url, IWebDownloadDelegate* delegate) in createInstance() argument 106 instance->init(url, delegate); in createInstance()
|
D | WebScrollBar.cpp | 95 /* [in] */ IWebScrollBarDelegatePrivate* delegate, in init() argument 100 if (!delegate || !containingWindow) in init() 104 m_delegate = delegate; in init()
|
D | WebDownload.h | 63 /* [in] */ IWebDownloadDelegate* delegate); 67 /* [in] */ IWebDownloadDelegate* delegate);
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
D | WebChromeClient.mm | 166 id delegate = [m_webView UIDelegate]; 169 if ([delegate respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)]) { 215 …} else if (features.dialog && [delegate respondsToSelector:@selector(webView:createWebViewModalDia… 288 id delegate = [m_webView UIDelegate]; 290 if (![delegate respondsToSelector:selector]) 322 // FIXME: This code assumes that the UI delegate will respond to a webViewClose 334 id delegate = [m_webView UIDelegate]; 336 if ([delegate respondsToSelector:selector]) { 341 // Call the old version of the delegate method if it is implemented. 343 if ([delegate respondsToSelector:selector]) { [all …]
|
D | WebDragClient.mm | 104 id delegate = [m_webView UIDelegate]; 106 if ([delegate respondsToSelector:selector]) { 109 …[delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:p… 114 …[delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:p…
|
D | WebContextMenuClient.mm | 251 id delegate = [m_webView UIDelegate]; 253 if (![delegate respondsToSelector:selector]) 283 id delegate = [m_webView UIDelegate]; 285 if ([delegate respondsToSelector:selector]) {
|
/external/webkit/WebKit/mac/WebInspector/ |
D | WebNodeHighlight.h | 44 - (void)setDelegate:(id)delegate; 45 - (id)delegate;
|
D | WebNodeHighlight.m | 103 - (id)delegate 131 // try to send our delegate messages after we've been dealloc'ed, e.g. 141 - (void)setDelegate:(id)delegate 143 // The delegate is not retained, as usual in Cocoa. 144 _delegate = delegate;
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | LayoutTestControllerWin.cpp | 71 COMPtr<IWebEditingDelegate> delegate; in ~LayoutTestController() local 72 if (FAILED(viewEditing->editingDelegate(&delegate))) in ~LayoutTestController() 231 COMPtr<IWebEditingDelegate> delegate; in setAcceptsEditing() local 232 if (FAILED(viewEditing->editingDelegate(&delegate))) in setAcceptsEditing() 235 EditingDelegate* editingDelegate = (EditingDelegate*)(IWebEditingDelegate*)delegate.get(); in setAcceptsEditing()
|