HomeSort by relevance Sort by last modified time
    Searched refs:hasCustomFocusLogic (Results 1 - 13 of 13) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/
BaseMultipleFieldsDateAndTimeInputType.h 99 virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
HTMLElement.h 61 virtual bool hasCustomFocusLogic() const;
HTMLTextAreaElement.h 106 virtual bool hasCustomFocusLogic() const OVERRIDE;
InputType.h 194 virtual bool hasCustomFocusLogic() const;
HTMLInputElement.h 310 virtual bool hasCustomFocusLogic() const OVERRIDE;
BaseMultipleFieldsDateAndTimeInputType.cpp 198 bool BaseMultipleFieldsDateAndTimeInputType::hasCustomFocusLogic() const
HTMLMediaElement.h 336 virtual bool hasCustomFocusLogic() const OVERRIDE;
HTMLTextAreaElement.cpp 229 bool HTMLTextAreaElement::hasCustomFocusLogic() const
InputType.cpp 519 bool InputType::hasCustomFocusLogic() const
HTMLInputElement.cpp 354 bool HTMLInputElement::hasCustomFocusLogic() const
356 return m_inputType->hasCustomFocusLogic();
    [all...]
HTMLElement.cpp 614 bool HTMLElement::hasCustomFocusLogic() const
    [all...]
HTMLMediaElement.cpp 386 bool HTMLMediaElement::hasCustomFocusLogic() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 130 static inline bool hasCustomFocusLogic(Element* element)
132 return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
141 return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
150 return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
159 return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
    [all...]

Completed in 387 milliseconds