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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSProperty.h 36 : m_propertyID(propertyID)
47 uint16_t m_propertyID : 10;
69 ASSERT((metadata.m_propertyID == CSSPropertyVariable) == (m_value && m_value->isVariableValue()));
72 CSSPropertyID id() const { return static_cast<CSSPropertyID>(m_metadata.m_propertyID); }
StylePropertySet.h 60 CSSPropertyID id() const { return static_cast<CSSPropertyID>(propertyMetadata().m_propertyID); }
CSSProperty.cpp 43 getMatchingShorthandsForLonghand(static_cast<CSSPropertyID>(m_propertyID), &shorthands);
StylePropertySet.cpp 484 // Convert here propertyID into an uint16_t to compare it with the metadata's m_propertyID to avoid
488 if (id == propertyAt(n).propertyMetadata().m_propertyID) {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 163 virtual bool propertyExistsInStyle(const StylePropertySet* style) const { return style->getPropertyCSSValue(m_propertyID); }
171 const CSSPropertyID m_propertyID;
177 : m_propertyID(id)
183 : m_propertyID(id)
189 : m_propertyID(id)
198 RefPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
204 style->setProperty(m_propertyID, m_primitiveValue->cssText());
222 // m_propertyID is used in HTMLElementEquivalent::addToStyle
279 RefPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
287 style->setProperty(m_propertyID, value->cssText())
    [all...]

Completed in 56 milliseconds