/external/webkit/Source/WebKit/chromium/src/ |
D | WebViewImpl.cpp | 764 Frame* focusedFrame = page()->focusController()->focusedOrMainFrame(); in sendContextMenuEvent() local 765 bool handled = focusedFrame->eventHandler()->sendContextMenuEventForKey(); in sendContextMenuEvent() 789 focusedFrame()->executeCommand(WebString::fromUTF8("SelectAll")); in keyEventDefault() 793 focusedFrame()->executeCommand(WebString::fromUTF8("Copy")); in keyEventDefault() 1244 RefPtr<Frame> focusedFrame = m_page->focusController()->focusedFrame(); in setFocus() local 1245 if (focusedFrame) { in setFocus() 1246 Node* focusedNode = focusedFrame->document()->focusedNode(); in setFocus() 1248 && focusedFrame->selection()->selection().isNone()) { in setFocus() 1262 focusedFrame->selection()->setSelection( in setFocus() 1280 RefPtr<Frame> focusedFrame = m_page->focusController()->focusedFrame(); in setFocus() local [all …]
|
D | WebViewImpl.h | 138 virtual WebFrame* focusedFrame();
|
/external/webkit/Source/WebCore/page/ |
D | FocusController.cpp | 123 if (Frame* frame = focusedFrame()) in focusedOrMainFrame() 361 RefPtr<Frame> oldFocusedFrame = focusedFrame(); in setFocusedNode() 491 …Node* focusedNode = (focusedFrame() && focusedFrame()->document()) ? focusedFrame()->document()->f… in findFocusCandidateInContainer()
|
D | FocusController.h | 49 Frame* focusedFrame() const { return m_focusedFrame.get(); } in focusedFrame() function
|
D | Frame.cpp | 705 if (page() && page()->focusController()->focusedFrame() == this) in pageDestroyed() 740 if (m_page->focusController()->focusedFrame() == this) in transferChildFrameToNewDocument()
|
/external/webkit/Source/WebCore/html/ |
D | HTMLDocument.cpp | 153 if (Frame* focusedFrame = page->focusController()->focusedFrame()) { in hasFocus() local 154 if (focusedFrame->tree()->isDescendantOf(frame())) in hasFocus()
|
D | HTMLFrameElementBase.cpp | 231 …else if (page->focusController()->focusedFrame() == contentFrame()) // Focus may have already been… in setFocus()
|
/external/webkit/Source/WebKit/qt/Api/ |
D | qwebpage.cpp | 680 Frame* focusedFrame = page->focusController()->focusedFrame(); in mousePressEvent() local 681 if (Document* focusedDocument = focusedFrame ? focusedFrame->document() : 0) in mousePressEvent() 700 focusedFrame = page->focusController()->focusedFrame(); in mousePressEvent() 701 if (Document* focusedDocument = focusedFrame ? focusedFrame->document() : 0) in mousePressEvent() 785 Frame* frame = page->focusController()->focusedFrame(); in handleSoftwareInputPanel() 959 if (!focusController->focusedFrame()) in focusInEvent() 1381 Frame* frame = d->page->focusController()->focusedFrame(); in inputMethodQuery() 3151 Frame *frame = d->page->focusController()->focusedFrame(); in focusNextPrevChild() 3254 WebCore::Frame* focusedFrame = d->page->focusController()->focusedOrMainFrame(); in swallowContextMenuEvent() local 3255 focusedFrame->eventHandler()->sendContextMenuEvent(PlatformMouseEvent(event, 1)); in swallowContextMenuEvent() [all …]
|
D | qwebframe.cpp | 1307 WebCore::Frame* ff = d->frame->page()->focusController()->focusedFrame(); in hasFocus()
|
/external/webkit/Source/WebKit/gtk/webkit/ |
D | webkitwebview.cpp | 309 Frame* focusedFrame; in webkit_web_view_forward_context_menu_event() local 326 focusedFrame = page->focusController()->focusedOrMainFrame(); in webkit_web_view_forward_context_menu_event() 327 if (targetFrame != focusedFrame) { in webkit_web_view_forward_context_menu_event() 329 focusedFrame = targetFrame; in webkit_web_view_forward_context_menu_event() 332 focusedFrame = mainFrame; in webkit_web_view_forward_context_menu_event() 334 if (focusedFrame->view() && focusedFrame->eventHandler()->handleMousePressEvent(event)) in webkit_web_view_forward_context_menu_event() 338 bool handledEvent = focusedFrame->eventHandler()->sendContextMenuEvent(event); in webkit_web_view_forward_context_menu_event() 850 Frame* focusedFrame = core(webView)->focusController()->focusedFrame(); in webkit_web_view_button_release_event() local 852 if (focusedFrame && focusedFrame->editor()->canEdit()) { in webkit_web_view_button_release_event() 963 if (focusController->focusedFrame()) in webkit_web_view_grab_focus() [all …]
|
/external/webkit/Source/WebKit/wx/ |
D | WebView.cpp | 803 WebCore::Frame* focusedFrame = m_impl->page->focusController()->focusedOrMainFrame(); in OnContextMenuEvents() local 804 if (!focusedFrame->view()) in OnContextMenuEvents() 813 bool handledEvent = focusedFrame->eventHandler()->sendContextMenuEvent(wkEvent); in OnContextMenuEvents() 1029 if (!m_impl->page->focusController()->focusedFrame() && m_mainFrame) in OnSetFocus()
|
/external/webkit/Source/WebKit/chromium/public/ |
D | WebView.h | 160 virtual WebFrame* focusedFrame() = 0;
|
/external/webkit/Source/WebCore/history/ |
D | CachedFrame.cpp | 136 if (frame->page()->focusController()->focusedFrame() == frame) in CachedFrame()
|
/external/webkit/Source/WebKit/android/jni/ |
D | WebViewCore.cpp | 620 return focusedFrame()->document()->focusedNode(); in currentFocus() 1394 WebCore::Frame* focusedFrame = focus->document()->frame(); in revealSelection() local 1395 if (!focusedFrame->page()->focusController()->isActive()) in revealSelection() 1397 focusedFrame->selection()->revealSelection(ScrollAlignment::alignToEdgeIfNeeded); in revealSelection() 1425 WebCore::Frame* WebViewCore::focusedFrame() const in focusedFrame() function in android::WebViewCore 1443 focusedFrame()->document()->renderView()->layer()->hitTest(request, result); in visiblePositionForContentPoint() 1473 focusedFrame()->document()->renderView()->layer()->hitTest(request, result); in selectWordAt() 1483 SelectionController* sc = focusedFrame()->selection(); in selectWordAt() 1719 if (!frame) frame = focusedFrame(); in convertGlobalContentToFrameContent() 1756 SelectionController* sc = focusedFrame()->selection(); in selectText() [all …]
|
D | AndroidHitTestResult.cpp | 231 Node* focusedNode = m_webViewCore->focusedFrame()->document()->focusedNode(); in createJavaObject()
|
D | WebViewCore.h | 522 WebCore::Frame* focusedFrame() const;
|
/external/webkit/Source/WebKit2/WebProcess/WebCoreSupport/ |
D | WebEditorClient.cpp | 189 Frame* frame = m_page->corePage()->focusController()->focusedFrame(); in respondToChangedSelection()
|
/external/webkit/Source/WebKit/win/ |
D | WebView.cpp | 1270 Frame* focusedFrame = m_page->focusController()->focusedOrMainFrame(); in handleContextMenuEvent() local 1271 return focusedFrame->eventHandler()->sendContextMenuEventForKey(); in handleContextMenuEvent() 2176 if (Frame* frame = focusController->focusedFrame()) { in WebViewWndProc() 2855 HRESULT STDMETHODCALLTYPE WebView::focusedFrame( in focusedFrame() function in WebView 2864 Frame* f = m_page->focusController()->focusedFrame(); in focusedFrame() 3331 Frame* focusedFrame = m_page->focusController()->focusedOrMainFrame(); in updateFocusedAndActiveState() local 3332 mainFrame->selection()->setFocused(active && mainFrame == focusedFrame); in updateFocusedAndActiveState() 3565 …Frame* focusedFrame = (m_page && m_page->focusController()) ? m_page->focusController()->focusedOr… in selectedText() local 3566 if (!focusedFrame) in selectedText() 3569 String frameSelectedText = focusedFrame->editor()->selectedText(); in selectedText()
|
D | WebView.h | 160 virtual HRESULT STDMETHODCALLTYPE focusedFrame(
|
/external/webkit/Source/WebKit/efl/ewk/ |
D | ewk_view.cpp | 1239 WebCore::Frame* core = priv->page->focusController()->focusedFrame(); in ewk_view_frame_focused_get() 3456 WebCore::Frame* focusedFrame = priv->page->focusController()->focusedOrMainFrame(); in ewk_view_input_method_state_set() local 3458 if (focusedFrame in ewk_view_input_method_state_set() 3459 && focusedFrame->document() in ewk_view_input_method_state_set() 3460 && focusedFrame->document()->focusedNode() in ewk_view_input_method_state_set() 3461 && focusedFrame->document()->focusedNode()->hasTagName(WebCore::HTMLNames::inputTag)) { in ewk_view_input_method_state_set() 3464 … inputElement = static_cast<WebCore::HTMLInputElement*>(focusedFrame->document()->focusedNode()); in ewk_view_input_method_state_set()
|
/external/webkit/Tools/DumpRenderTree/chromium/ |
D | LayoutTestController.cpp | 737 …m_shell->webView()->focusedFrame()->executeCommand(WebString::fromUTF8(command), WebString::fromUT… in execCommand() 748 bool rv = m_shell->webView()->focusedFrame()->isCommandEnabled(WebString::fromUTF8(command)); in isCommandEnabled() 1221 …m_shell->webView()->focusedFrame()->executeScriptInIsolatedWorld(arguments[0].toInt32(), &source, … in evaluateScriptInIsolatedWorld()
|
D | WebViewHost.cpp | 401 WebFrame* frame = webView()->focusedFrame(); in handleCurrentKeyboardEvent()
|
/external/webkit/Source/WebKit2/UIProcess/API/C/ |
D | WKPage.cpp | 155 return toAPI(toImpl(pageRef)->focusedFrame()); in WKPageGetFocusedFrame()
|
/external/webkit/Source/WebKit2/UIProcess/ |
D | WebPageProxy.h | 168 WebFrameProxy* focusedFrame() const { return m_focusedFrame.get(); } in focusedFrame() function
|
/external/webkit/Source/WebKit/win/Interfaces/ |
D | IWebView.idl | 320 @method focusedFrame 323 HRESULT focusedFrame([retval, out] IWebFrame** frame);
|