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

  /external/chromium_org/third_party/WebKit/Source/core/html/forms/
InputTypeView.h 94 virtual bool hasCustomFocusLogic() const;
InputTypeView.cpp 115 bool InputTypeView::hasCustomFocusLogic() const
BaseMultipleFieldsDateAndTimeInputType.h 107 virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
InputType.h 208 virtual bool hasCustomFocusLogic() const OVERRIDE;
BaseMultipleFieldsDateAndTimeInputType.cpp 199 bool BaseMultipleFieldsDateAndTimeInputType::hasCustomFocusLogic() const
InputType.cpp 450 bool InputType::hasCustomFocusLogic() const
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLPlugInElement.h 122 virtual bool hasCustomFocusLogic() const OVERRIDE;
HTMLTextAreaElement.h 118 virtual bool hasCustomFocusLogic() const OVERRIDE;
HTMLElement.h 55 virtual bool hasCustomFocusLogic() const;
HTMLInputElement.h 271 virtual bool hasCustomFocusLogic() const OVERRIDE FINAL;
HTMLPlugInElement.cpp 371 bool HTMLPlugInElement::hasCustomFocusLogic() const
HTMLTextAreaElement.cpp 224 bool HTMLTextAreaElement::hasCustomFocusLogic() const
HTMLInputElement.cpp 318 bool HTMLInputElement::hasCustomFocusLogic() const
320 return m_inputTypeView->hasCustomFocusLogic();
    [all...]
HTMLElement.cpp 493 bool HTMLElement::hasCustomFocusLogic() const
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FocusController.cpp 172 static inline bool hasCustomFocusLogic(Element* element)
174 return element->isHTMLElement() && toHTMLElement(element)->hasCustomFocusLogic();
184 return !element->isFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
194 return !element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
203 return element->isKeyboardFocusable() && isShadowHost(element) && !hasCustomFocusLogic(element);
    [all...]

Completed in 242 milliseconds