Searched defs:focused (Results 1 - 11 of 11) sorted by relevance

/external/webkit/WebCore/html/
H A DHTMLDataGridCellElement.cpp54 bool HTMLDataGridCellElement::focused() const function in class:WebCore::HTMLDataGridCellElement
59 void HTMLDataGridCellElement::setFocused(bool focused) argument
61 setAttribute(focusedAttr, focused ? "" : 0);
H A DHTMLDataGridRowElement.cpp61 bool HTMLDataGridRowElement::focused() const function in class:WebCore::HTMLDataGridRowElement
66 void HTMLDataGridRowElement::setFocused(bool focused) argument
68 setAttribute(focusedAttr, focused ? "" : 0);
/external/webkit/WebCore/dom/
H A DNodeRareData.h105 void setFocused(bool focused) { m_isFocused = focused; } argument
H A DNode.h276 bool focused() const { return hasRareData() ? rareDataFocused() : false; } function in class:WebCore::Node
303 // Whether the node can actually be focused.
/external/webkit/WebCore/page/
H A DFocusController.cpp59 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused) argument
61 // If we have a focused node we should dispatch blur on it before we blur the window.
62 // If we have a focused node we should dispatch focus on it after we focus the window.
64 if (!focused && document->focusedNode())
66 document->dispatchWindowEvent(Event::create(focused ? eventNames().focusEvent : eventNames().blurEvent, false, false));
67 if (focused && document->focusedNode())
91 // Now that the frame is updated, fire events and update the selection focused states of both frames.
112 void FocusController::setFocused(bool focused) argument
114 if (isFocused() == focused)
117 m_isFocused = focused;
[all...]
/external/webkit/WebKit/chromium/src/
H A DWebAccessibilityObject.cpp134 RefPtr<AccessibilityObject> focused = m_private->focusedUIElement(); local
135 if (m_private == focused.get() || focused->parentObject() == m_private)
136 return WebAccessibilityObject(focused);
H A DWebViewImpl.cpp342 // Already focused text field was clicked, let's remember this. If
406 // If the event was a middle click, attempt to copy text into the focused
408 // because the page may change what is focused during in its event handler.
423 Frame* focused = focusedWebCoreFrame(); local
427 HitTestResult hitTestResult = focused->eventHandler()->hitTestResultAtPoint(contentPoint, false, false, ShouldHitTestScrollbars);
431 if (!hitTestResult.scrollbar() && !hitTestResult.isLiveLink() && focused && !view->scrollbarAtPoint(clickPoint)) {
432 Editor* editor = focused->editor();
965 // focused, then the focus element shows with a focus ring but
986 // Clear focus on the currently focused frame if any.
1011 Frame* focused local
1096 const Frame* focused = focusedWebCoreFrame(); local
1127 const Frame* focused = focusedWebCoreFrame(); local
[all...]
/external/webkit/WebKit/android/nav/
H A DFindCanvas.cpp547 // matches than this, only draw the focused match.
600 bool focused)
604 if (focused) {
620 if (!focused) {
626 if (!focused)
599 drawMatch(const SkRegion& region, SkCanvas* canvas, bool focused) argument
H A DCacheBuilder.cpp950 Node* focused = doc->focusedNode(); local
951 if (focused)
952 cachedRoot->setFocusBounds(focused->getRect());
1074 bool isFocus = node == focused;
1329 if (node == focused) {
/external/webkit/WebCore/platform/gtk/
H A Dgtkdrawing.h60 guint8 focused; member in struct:__anon5698
/external/webkit/WebKitTools/DumpRenderTree/qt/
H A DDumpRenderTreeQt.cpp818 void DumpRenderTree::switchFocus(bool focused) argument
820 QFocusEvent event((focused) ? QEvent::FocusIn : QEvent::FocusOut, Qt::ActiveWindowFocusReason);

Completed in 190 milliseconds