HomeSort by relevance Sort by last modified time
    Searched refs:FocusType (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.h 29 #include "core/page/FocusType.h"
76 bool setInitialFocus(FocusType);
77 bool advanceFocus(FocusType type) { return advanceFocus(type, false); }
79 bool setFocusedElement(Element*, PassRefPtr<Frame>, FocusType = FocusTypeNone);
90 bool advanceFocus(FocusType, bool initialFocus);
91 bool advanceFocusDirectionally(FocusType);
92 bool advanceFocusInDocumentOrder(FocusType, bool initialFocus);
94 Node* findFocusableNodeAcrossFocusScope(FocusType, FocusNavigationScope startScope, Node* start);
95 Node* findFocusableNodeRecursively(FocusType, FocusNavigationScope, Node* start);
96 Node* findFocusableNodeDecendingDownIntoFrameDocument(FocusType, Node*)
    [all...]
SpatialNavigation.h 25 #include "core/page/FocusType.h"
114 FocusCandidate(Node*, FocusType);
115 explicit FocusCandidate(HTMLAreaElement*, FocusType);
136 bool hasOffscreenRect(Node*, FocusType = FocusTypeNone);
137 bool scrollInDirection(LocalFrame*, FocusType);
138 bool scrollInDirection(Node* container, FocusType);
139 bool canScrollInDirection(const Node* container, FocusType);
140 bool canScrollInDirection(const LocalFrame*, FocusType);
141 bool canBeScrolledIntoView(FocusType, const FocusCandidate&);
143 void distanceDataForNode(FocusType, const FocusCandidate& current, FocusCandidate&)
    [all...]
FocusType.h 31 enum FocusType {
SpatialNavigation.cpp 48 static RectsAlignment alignmentForRects(FocusType, const LayoutRect&, const LayoutRect&, const LayoutSize& viewSize);
49 static bool areRectsFullyAligned(FocusType, const LayoutRect&, const LayoutRect&);
50 static bool areRectsPartiallyAligned(FocusType, const LayoutRect&, const LayoutRect&);
51 static bool areRectsMoreThanFullScreenApart(FocusType, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize);
52 static bool isRectInDirection(FocusType, const LayoutRect&, const LayoutRect&);
57 FocusCandidate::FocusCandidate(Node* node, FocusType type)
97 static RectsAlignment alignmentForRects(FocusType type, const LayoutRect& curRect, const LayoutRect& targetRect, const LayoutSize& viewSize)
112 static inline bool isHorizontalMove(FocusType type)
117 static inline LayoutUnit start(FocusType type, const LayoutRect& rect)
122 static inline LayoutUnit middle(FocusType type, const LayoutRect& rect
    [all...]
Chrome.h 26 #include "core/page/FocusType.h"
84 bool canTakeFocus(FocusType) const;
85 void takeFocus(FocusType) const;
FocusController.cpp 331 Node* FocusController::findFocusableNodeDecendingDownIntoFrameDocument(FocusType type, Node* node)
349 bool FocusController::setInitialFocus(FocusType type)
365 bool FocusController::advanceFocus(FocusType type, bool initialFocus)
383 bool FocusController::advanceFocusInDocumentOrder(FocusType type, bool initialFocus)
468 Node* FocusController::findFocusableNodeAcrossFocusScope(FocusType type, FocusNavigationScope scope, Node* currentNode)
495 Node* FocusController::findFocusableNodeRecursively(FocusType type, FocusNavigationScope scope, Node* start)
519 Node* FocusController::findFocusableNode(FocusType type, FocusNavigationScope scope, Node* node)
524 Node* FocusController::findNodeWithExactTabIndex(Node* start, int tabIndex, FocusType type)
672 bool FocusController::setFocusedElement(Element* element, PassRefPtr<Frame> newFocusedFrame, FocusType type)
733 static void updateFocusCandidateIfNeeded(FocusType type, const FocusCandidate& current, FocusCandidate& candidate, FocusCandidate& closest
    [all...]
ChromeClient.h 30 #include "core/page/FocusType.h"
93 virtual bool canTakeFocus(FocusType) = 0;
94 virtual void takeFocus(FocusType) = 0;
Chrome.cpp 117 bool Chrome::canTakeFocus(FocusType type) const
122 void Chrome::takeFocus(FocusType type) const
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLLegendElement.h 46 virtual void focus(bool restorePreviousSelection, FocusType) OVERRIDE;
HTMLLabelElement.h 57 virtual void focus(bool restorePreviousSelection, FocusType) OVERRIDE;
HTMLLegendElement.cpp 60 void HTMLLegendElement::focus(bool, FocusType type)
HTMLTextFormControlElement.h 121 virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE FINAL;
129 virtual void handleFocusEvent(Element* /* oldFocusedNode */, FocusType) { }
HTMLFormControlElement.h 132 virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE;
HTMLLabelElement.cpp 186 void HTMLLabelElement::focus(bool, FocusType type)
HTMLTextAreaElement.h 90 virtual void handleFocusEvent(Element* oldFocusedNode, FocusType) OVERRIDE;
HTMLSelectElement.h 131 virtual void dispatchFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE;
HTMLFormControlElement.cpp 332 void HTMLFormControlElement::dispatchFocusEvent(Element* oldFocusedElement, FocusType type)
HTMLInputElement.h 346 virtual void handleFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE FINAL;
  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 36 #include "core/page/FocusType.h"
94 virtual void handleFocusEvent(Element* oldFocusedElement, FocusType);
TextFieldInputType.h 61 virtual void handleFocusEvent(Element* oldFocusedNode, FocusType) OVERRIDE FINAL;
InputTypeView.cpp 120 void InputTypeView::handleFocusEvent(Element*, FocusType)
BaseMultipleFieldsDateAndTimeInputType.h 101 virtual void handleFocusEvent(Element* oldFocusedElement, FocusType) OVERRIDE;
  /external/chromium_org/third_party/WebKit/Source/web/
ChromeClientImpl.h 83 virtual bool canTakeFocus(WebCore::FocusType) OVERRIDE;
84 virtual void takeFocus(WebCore::FocusType) OVERRIDE;
ChromeClientImpl.cpp 181 bool ChromeClientImpl::canTakeFocus(FocusType)
188 void ChromeClientImpl::takeFocus(FocusType type)
  /external/chromium_org/third_party/WebKit/Source/core/loader/
EmptyClients.h 40 #include "core/page/FocusType.h"
81 virtual bool canTakeFocus(FocusType) OVERRIDE { return false; }
82 virtual void takeFocus(FocusType) OVERRIDE { }

Completed in 972 milliseconds

1 2