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 35 : m_propertyID(propertyID)
46 uint16_t m_propertyID : 10;
68 ASSERT((metadata.m_propertyID == CSSPropertyVariable) == (m_value && m_value->isVariableValue()));
71 CSSPropertyID id() const { return static_cast<CSSPropertyID>(m_metadata.m_propertyID); }
StylePropertySet.h 59 CSSPropertyID id() const { return static_cast<CSSPropertyID>(propertyMetadata().m_propertyID); }
CSSProperty.cpp 42 const Vector<StylePropertyShorthand> shorthands = matchingShorthandsForLonghand(static_cast<CSSPropertyID>(m_propertyID));
StylePropertySet.cpp 480 // Convert here propertyID into an uint16_t to compare it with the metadata's m_propertyID to avoid
484 if (id == propertyAt(n).propertyMetadata().m_propertyID) {
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditingStyle.cpp 152 virtual bool propertyExistsInStyle(const StylePropertySet* style) const { return style->getPropertyCSSValue(m_propertyID); }
160 const CSSPropertyID m_propertyID;
166 : m_propertyID(id)
172 : m_propertyID(id)
178 : m_propertyID(id)
187 RefPtr<CSSValue> value = style->getPropertyCSSValue(m_propertyID);
193 style->setProperty(m_propertyID, m_primitiveValue->cssText());
211 // m_propertyID is used in HTMLElementEquivalent::addToStyle
267 RefPtr<CSSValue> styleValue = style->getPropertyCSSValue(m_propertyID);
275 style->setProperty(m_propertyID, value->cssText())
    [all...]

Completed in 71 milliseconds