/external/webkit/WebCore/page/mac/ |
D | ChromeMac.mm | 43 // first responder. This confuses AppKit so we must restore 44 // the old first responder.
|
D | EventHandlerMac.mm | 289 // Normally [NSWindow sendEvent:] handles setting the first responder.
|
/external/webkit/WebKit/mac/Misc/ |
D | WebNSViewExtras.m | 206 NSResponder *responder = [[self window] firstResponder]; 207 return (responder && 208 (responder == self || 209 … ([responder isKindOfClass:[NSView class]] && [(NSView *)responder isDescendantOf:self])));
|
/external/netcat/ |
D | netcat.blurb | 20 Optional telnet-options responder 46 Telnet responder
|
D | Changelog | 102 telnet-opts responder in; left as OPTIONAL chunk since it mucks
|
D | README | 61 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/ |
D | HIWebView.mm | 686 // 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 …]
|
D | CarbonWindowAdapter.mm | 423 // 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/ |
D | WebFrameView.mm | 137 // 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.
|
D | WebPDFView.mm | 207 // 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.
|
D | WebUIDelegate.h | 251 - (void)webView:(WebView *)sender makeFirstResponder:(NSResponder *)responder;
|
D | WebView.mm | 2735 … // 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 …]
|
D | WebHTMLView.mm | 2647 // 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 …]
|
D | WebFrame.mm | 441 …// 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/ |
D | racoon.conf.sample | 42 # the configuration could makes racoon (as a responder)
|
/external/webkit/WebKit/mac/DefaultDelegates/ |
D | WebDefaultUIDelegate.m | 96 - (void)webView: (WebView *)wv makeFirstResponder:(NSResponder *)responder 98 [[wv window] makeFirstResponder:responder];
|
/external/webkit/WebKitTools/DumpRenderTree/win/ |
D | UIDelegate.h | 69 /* [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/ |
D | IWebUIDelegate.idl | 247 @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/ |
D | WidgetMac.mm | 67 // If the the view is the first responder, then set the window's first responder to nil so
|
/external/webkit/WebKitTools/DumpRenderTree/mac/ |
D | DumpRenderTreeWindow.mm | 88 // once we get to the end of the responder chain.
|
/external/webkit/WebKit/mac/WebCoreSupport/ |
D | WebChromeClient.mm | 148 // 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/ |
D | prototype-1.6.0.3.js | 1141 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]);
|
D | concat-jquery-mootools-prototype.js | 9520 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/ |
D | TODO | 79 o responder policy and initiator policy should be separated.
|
/external/webkit/WebKit/mac/Plugins/ |
D | WebBaseNetscapePluginView.mm | 438 …// Workaround for: <rdar://problem/3822871> resignFirstResponder is not sent to first responder vi…
|