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

  /external/chromium_org/third_party/WebKit/Source/core/svg/properties/
SVGAnimatedProperty.h 38 bool isReadOnly() const { return m_isReadOnly; }
39 void setIsReadOnly() { m_isReadOnly = true; }
91 bool m_isReadOnly;
SVGAnimatedProperty.cpp 33 , m_isReadOnly(false)
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLFormControlElement.h 97 bool isReadOnly() const { return m_isReadOnly; }
98 bool isDisabledOrReadOnly() const { return isDisabledFormControl() || m_isReadOnly; }
150 bool m_isReadOnly : 1;
HTMLFormControlElement.cpp 50 , m_isReadOnly(false)
133 bool wasReadOnly = m_isReadOnly;
134 m_isReadOnly = !value.isNull();
135 if (wasReadOnly != m_isReadOnly) {

Completed in 214 milliseconds