hasCustomFocusLogic   53 Source/core/html/HTMLElement.h     virtual bool hasCustomFocusLogic() const;
hasCustomFocusLogic  326 Source/core/html/HTMLInputElement.cpp     return m_inputTypeView->hasCustomFocusLogic();
hasCustomFocusLogic  298 Source/core/html/HTMLInputElement.h     virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
hasCustomFocusLogic  299 Source/core/html/HTMLMediaElement.h     virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
hasCustomFocusLogic  114 Source/core/html/HTMLPlugInElement.h     virtual bool hasCustomFocusLogic() const OVERRIDE;
hasCustomFocusLogic  111 Source/core/html/HTMLTextAreaElement.h     virtual bool hasCustomFocusLogic() const OVERRIDE;
hasCustomFocusLogic  100 Source/core/html/forms/BaseMultipleFieldsDateAndTimeInputType.h     virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
hasCustomFocusLogic  223 Source/core/html/forms/InputType.h     virtual bool hasCustomFocusLogic() const OVERRIDE;
hasCustomFocusLogic   89 Source/core/html/forms/InputTypeView.h     virtual bool hasCustomFocusLogic() const;
hasCustomFocusLogic  172 Source/core/page/FocusController.cpp     return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
hasCustomFocusLogic  182 Source/core/page/FocusController.cpp     return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
hasCustomFocusLogic  192 Source/core/page/FocusController.cpp     return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
hasCustomFocusLogic  201 Source/core/page/FocusController.cpp     return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);