HomeSort by relevance Sort by last modified time
    Searched refs:delegate (Results 101 - 125 of 192) sorted by null

1 2 3 45 6 7 8

  /external/webkit/WebKit/mac/WebInspector/
WebNodeHighlight.mm 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/WebKitLauncher/
WebKitNightlyEnablerSparkle.m 99 id delegate = [[sender window] delegate];
100 objc_msgSend(delegate, selector, sender);
  /external/clearsilver/csharp/
csperftest.cs 8 public delegate void test_function(int INDEX);
  /external/webkit/WebKit/mac/WebCoreSupport/
WebChromeClient.mm 192 id delegate = [m_webView UIDelegate];
195 if ([delegate respondsToSelector:@selector(webView:createWebViewWithRequest:windowFeatures:)]) {
241 } else if (features.dialog && [delegate respondsToSelector:@selector(webView:createWebViewModalDialogWithRequest:)]) {
319 id delegate = [m_webView UIDelegate];
321 if (![delegate respondsToSelector:selector])
353 // FIXME: This code assumes that the UI delegate will respond to a webViewClose
365 id delegate = [m_webView UIDelegate];
367 if ([delegate respondsToSelector:selector]) {
372 // Call the old version of the delegate method if it is implemented.
374 if ([delegate respondsToSelector:selector])
    [all...]
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:pasteboard source:sourceHTMLView slideBack:YES forView:topHTMLView];
114 [delegate webView:m_webView dragImage:dragNSImage at:at offset:NSZeroSize event:event pasteboard:pasteboard source:sourceHTMLView slideBack:YES forView:topHTMLView];
WebContextMenuClient.mm 273 id delegate = [m_webView UIDelegate];
275 if (![delegate respondsToSelector:selector])
305 id delegate = [m_webView UIDelegate];
307 if ([delegate respondsToSelector:selector]) {
  /external/webkit/WebKit/win/
WebDownload.h 65 /* [in] */ IWebDownloadDelegate* delegate);
69 /* [in] */ IWebDownloadDelegate* delegate);
WebDownload.cpp 94 WebDownload* WebDownload::createInstance(ResourceHandle* handle, const ResourceRequest& request, const ResourceResponse& response, IWebDownloadDelegate* delegate)
98 instance->init(handle, request, response, delegate);
102 WebDownload* WebDownload::createInstance(const KURL& url, IWebDownloadDelegate* delegate)
106 instance->init(url, delegate);
  /external/guava/src/com/google/common/collect/
Maps.java 546 @Override protected Collection<Entry<K, V>> delegate() {
551 final Iterator<Entry<K, V>> delegate = super.iterator();
556 @Override protected Iterator<Entry<K, V>> delegate() {
557 return delegate;
573 return containsEntryImpl(delegate(), o);
623 final BiMap<? extends K, ? extends V> delegate;
627 UnmodifiableBiMap(BiMap<? extends K, ? extends V> delegate,
629 unmodifiableMap = Collections.<K, V>unmodifiableMap(delegate);
630 this.delegate = delegate;
    [all...]
AbstractMapBasedMultiset.java 340 private final Set<E> delegate;
344 delegate = map.keySet();
347 @Override protected Set<E> delegate() {
348 return delegate;
  /cts/tests/accessibilityservice/src/android/accessibilityservice/delegate/
DelegatingAccessibilityService.java 17 package android.accessibilityservice.delegate;
109 * Sets the interface to which to delegate.
111 * @param delegateInterface The delegate interface.
119 * delegate interface to which the {@link DelegatingAccessibilityService}
120 * to delegate.
  /external/chromium/net/socket/
tcp_client_socket_pool.cc 40 Delegate* delegate,
42 : ConnectJob(group_name, timeout_duration, delegate, load_log),
161 ConnectJob::Delegate* delegate,
166 client_socket_factory_, host_resolver_, delegate, load_log);
client_socket_pool_base.h 54 class Delegate {
56 Delegate() {}
57 virtual ~Delegate() {}
59 // Alerts the delegate that the connection completed.
63 DISALLOW_COPY_AND_ASSIGN(Delegate);
69 Delegate* delegate,
99 // Alerts the delegate that the ConnectJob has timed out.
106 Delegate* delegate_;
122 public ConnectJob::Delegate,
    [all...]
  /external/chromium/net/url_request/
url_request.h 52 // object during the handling of a callback to its delegate. Of course, once
53 // the URLRequest is deleted, no further callbacks to its delegate will occur.
86 // the request delegate being informed of the redirect. Can return a new
89 // the delegate never sees the original redirect response, instead the
97 // the request delegate being informed of the response. This is also
101 // continue. If a new job is provided, the delegate never sees the original
109 // The delegate's methods are called from the message loop of the thread
123 // Read() initiated by delegate
132 class Delegate {
134 virtual ~Delegate() {}
283 Delegate* delegate() const { return delegate_; } function in class:URLRequest
    [all...]
url_request_http_job.cc 384 // URLRequest delegate via the message loop.
405 // URLRequest delegate via the message loop.
434 if (request_ && request_->delegate()) {
452 if (request_ && request_->delegate()) {
469 if (!request_ || !request_->delegate())
483 // We encountered an SSL certificate error. Ask our delegate to decide
487 request_->delegate()->OnSSLCertificateError(
490 request_->delegate()->OnCertificateRequested(
617 // URLRequest delegate via the message loop.
882 net::HTTPSProberDelegate* delegate local
    [all...]
url_request_job.cc 348 if (!request_ || !request_->delegate())
362 // When notifying the delegate, the delegate can release the request
389 if (!request_ || !request_->delegate())
408 request_->delegate()->OnAuthRequired(request_, auth_info);
438 if (!request_ || !request_->delegate())
455 // When notifying the delegate, the delegate can release the request
469 request_->delegate()->OnReadCompleted(request_, filter_bytes_read);
471 request_->delegate()->OnReadCompleted(request_, bytes_read)
    [all...]
  /external/webkit/WebKit/chromium/src/
DebuggerAgentImpl.h 59 DebuggerAgentDelegate* delegate,
  /external/webkit/WebKit/win/Interfaces/
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
IWebScrollBarPrivate.idl 43 HRESULT init([in] IWebScrollBarDelegatePrivate* delegate, [in] OLE_HANDLE containingWindow, [in] WebScrollBarOrientation orientation, [in] WebScrollBarControlSize controlSize);
  /external/webkit/WebKit/mac/WebView/
WebView.mm     [all...]
  /external/chromium/base/
directory_watcher_inotify.cc 99 // Start watching |path| for changes and notify |delegate| on each change.
104 virtual bool Watch(const FilePath& path, DirectoryWatcher::Delegate* delegate,
114 // Delegate to notify upon changes.
115 DirectoryWatcher::Delegate* delegate_;
117 // Path we're watching (passed to delegate).
175 DirectoryWatcherImplNotifyTask(DirectoryWatcher::Delegate* delegate,
177 : delegate_(delegate),
186 DirectoryWatcher::Delegate* delegate_
    [all...]
  /external/chromium/net/base/
directory_lister.cc 59 DirectoryListerDelegate* delegate)
61 delegate_(delegate),
146 // Since the delegate can clear itself during the OnListFile callback, we
148 // necessary to check the canceled_ flag to avoid sending data to a delegate
  /external/chromium/net/websockets/
websocket.h 33 // Delegate methods will be called on the same message loop as
54 public SocketStream::Delegate {
116 // |delegate| must be alive while this object is alive.
117 WebSocket(Request* req, WebSocketDelegate* delegate);
120 WebSocketDelegate* delegate() const { return delegate_; } function in class:net::WebSocket
134 // Detach delegate. Call before delegate is deleted.
135 // Once delegate is detached, close the WebSocket connection and never call
136 // delegate back.
139 // SocketStream::Delegate methods
    [all...]
  /external/webkit/WebKitTools/Scripts/webkitpy/
queueengine.py 69 def __init__(self, name, delegate):
71 self._delegate = delegate
  /external/chromium/net/proxy/
proxy_config_service_linux.h 27 // Forward declaration of Delegate.
28 class Delegate;
54 virtual bool SetupNotification(Delegate* delegate) = 0;
94 // thread through Delegate::SetNewProxyConfig().
99 // wrapped in the Delegate ref counted class. On deleting the
100 // ProxyConfigServiceLinux, Delegate::OnDestroy() is posted to the
102 // releasing Delegate.
104 class Delegate : public base::RefCountedThreadSafe<Delegate> {
    [all...]

Completed in 1797 milliseconds

1 2 3 45 6 7 8