Home
last modified time | relevance | path

Searched refs:responder (Results 1 – 25 of 40) sorted by relevance

12

/external/webkit/WebCore/page/mac/
DChromeMac.mm43 // first responder. This confuses AppKit so we must restore
44 // the old first responder.
DEventHandlerMac.mm289 // Normally [NSWindow sendEvent:] handles setting the first responder.
/external/webkit/WebKit/mac/Misc/
DWebNSViewExtras.m206 NSResponder *responder = [[self window] firstResponder];
207 return (responder &&
208 (responder == self ||
209 … ([responder isKindOfClass:[NSView class]] && [(NSView *)responder isDescendantOf:self])));
/external/netcat/
Dnetcat.blurb20 Optional telnet-options responder
46 Telnet responder
DChangelog102 telnet-opts responder in; left as OPTIONAL chunk since it mucks
DREADME61 Optional telnet-options responder
747 are responded to behind the scenes. The telnet responder does NOT update the
837 supplied code for the telnet-options responder. Outbound "-e <prog>" resulted
931 telnet-responder code *almost* verges on the gratuitous, especially since it
/external/webkit/WebKit/mac/Carbon/
DHIWebView.mm686 // if the first responder in the kit window is something other than the
690 // with the first responder to have a chance at the event.
695 NSResponder* responder = [kitWindow firstResponder];
696 if ( responder != kitWindow )
906 // If we tab out of our NSView, it will no longer be the responder
926 // Despite our efforts to record what view we made the first responder
952 // We recorded which view we made into the first responder the
962 // we don't get fooled if we recently made some view the first responder, but
963 // it passed on first-responder-ness to some temporary subview.
979 …The user has tabbed past the subviews of this control view. The window is the first responder now.
[all …]
DCarbonWindowAdapter.mm423 // Make the window the first responder, so that no view is the key view.
787 // Tell the content view it's new place in the responder chain.
/external/webkit/WebKit/mac/WebView/
DWebFrameView.mm137 // If the old view is the first responder, transfer first responder status to the new view as
397 // We always accept first responder; this matches OS X 10.2 WebKit
419 // the first responder ourself like a normal view. This lets us be the first
420 // responder in cases where no page has yet been loaded.
666 // If we were already at the top, tell the next responder to scroll if it can.
674 // If we were already at the bottom, tell the next responder to scroll if it can.
DWebPDFView.mm207 // PDFView doesn't support this responder method directly, so we pass it a fake key event
213 // PDFView doesn't support this responder method directly, so we pass it a fake key event
219 // PDFView doesn't support this responder method directly, so we pass it a fake key event
225 // PDFView doesn't support this responder method directly, so we pass it a fake key event
231 // PDFView doesn't support this responder method directly, so we pass it a fake key event
237 // PDFView doesn't support this responder method directly, so we pass it a fake key event
414 // FIXME 2573089: we can observe a notification for first responder changes
450 // FIXME 2573089: we can observe a notification for changes to the first responder
1397 // first responder view is a PDFKit class that we can't subclass.
DWebUIDelegate.h251 - (void)webView:(WebView *)sender makeFirstResponder:(NSResponder *)responder;
DWebView.mm2735 … // If the first responder is a view in our tree, we get the frame containing the first responder.
2743 …// If the first responder is outside of our view tree, we search for a frame containing a selectio…
3611 id responder = [self _responderForResponderOperations];
3612 if (responder != self && [responder respondsToSelector:[item action]]) {
3613 if ([responder respondsToSelector:@selector(validateUserInterfaceItemWithoutDelegate:)])
3614 return [responder validateUserInterfaceItemWithoutDelegate:item];
3615 if ([responder respondsToSelector:@selector(validateUserInterfaceItem:)])
3616 return [responder validateUserInterfaceItem:item];
4675 // One is that WebView has been called in its role as part of the responder chain.
4676 // In that case, it's fine to call the first responder and end up calling down the
[all …]
DWebHTMLView.mm2647 // code checks the first responder.
2668 // code checks the first responder.
2730 // Don't accept first responder when we first click on this view.
2732 // Do accept first responder at any other time, for example from keyboard events,
2746 // an inactive selection when it's not first responder.
2748 // clearing them when the view was not first responder. However,
2757 // Predict the case where we are losing first responder status only to
4799 // 1) first responder is self
4848 // Returns nil instead of the next responder if called when the
4942 …// FIXME: NSTextView bails out if becoming or resigning first responder, for which it has ivar fla…
[all …]
DWebFrame.mm441 …// responder. It would be nicer to just notice first responder changes here instead, but there's n…
442 // notification sent when the first responder changes in general (Radar 2573089).
/external/ipsec-tools/src/racoon/samples/
Dracoon.conf.sample42 # the configuration could makes racoon (as a responder)
/external/webkit/WebKit/mac/DefaultDelegates/
DWebDefaultUIDelegate.m96 - (void)webView: (WebView *)wv makeFirstResponder:(NSResponder *)responder
98 [[wv window] makeFirstResponder:responder];
/external/webkit/WebKitTools/DumpRenderTree/win/
DUIDelegate.h69 /* [retval][out] */ OLE_HANDLE *responder) { return E_NOTIMPL; } in webViewFirstResponder() argument
73 /* [in] */ OLE_HANDLE responder) { return E_NOTIMPL; } in makeFirstResponder() argument
/external/webkit/WebKit/win/Interfaces/
DIWebUIDelegate.idl247 @abstract Get the first responder for this window.
253 real first responder if some control not in the window has focus.
260 @abstract Set the first responder for this window.
262 @param responder The responder to make first (will always be a view)
263 @discussion responder will always be a view that is in the view
266 hierarchy, it may be desirable to save the first responder
268 - (void)webView:(WebView *)sender makeFirstResponder:(NSResponder *)responder;
/external/webkit/WebCore/platform/mac/
DWidgetMac.mm67 // If the the view is the first responder, then set the window's first responder to nil so
/external/webkit/WebKitTools/DumpRenderTree/mac/
DDumpRenderTreeWindow.mm88 // once we get to the end of the responder chain.
/external/webkit/WebKit/mac/WebCoreSupport/
DWebChromeClient.mm148 // There's unfortunately no way to determine if we will become first responder again
636 void WebChromeClient::makeFirstResponder(NSResponder *responder)
640 [[m_webView _UIDelegateForwarder] webView:m_webView makeFirstResponder:responder];
/external/webkit/SunSpider/tests/parse-only/
Dprototype-1.6.0.3.js1141 register: function(responder) { argument
1142 if (!this.include(responder))
1143 this.responders.push(responder);
1146 unregister: function(responder) { argument
1147 this.responders = this.responders.without(responder);
1151 this.each(function(responder) { argument
1152 if (Object.isFunction(responder[callback])) {
1154 responder[callback].apply(responder, [request, transport, json]);
Dconcat-jquery-mootools-prototype.js9520 register: function(responder) { argument
9521 if (!this.include(responder))
9522 this.responders.push(responder);
9525 unregister: function(responder) { argument
9526 this.responders = this.responders.without(responder);
9530 this.each(function(responder) { argument
9531 if (Object.isFunction(responder[callback])) {
9533 responder[callback].apply(responder, [request, transport, json]);
/external/ipsec-tools/src/racoon/
DTODO79 o responder policy and initiator policy should be separated.
/external/webkit/WebKit/mac/Plugins/
DWebBaseNetscapePluginView.mm438 …// Workaround for: <rdar://problem/3822871> resignFirstResponder is not sent to first responder vi…

12