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

  /external/chromium_org/third_party/WebKit/Source/core/css/
StylePropertySerializer.h 54 const StylePropertySet& m_propertySet;
PropertySetCSSStyleDeclaration.h 83 PropertySetCSSStyleDeclaration(MutableStylePropertySet& propertySet) : m_propertySet(&propertySet) { }
93 virtual MutableStylePropertySet& propertySet() const OVERRIDE FINAL { ASSERT(m_propertySet); return *m_propertySet; }
95 RawPtrWillBeMember<MutableStylePropertySet> m_propertySet; // Cannot be null
StylePropertySet.h 62 : m_propertySet(propertySet)
89 const StylePropertySet& m_propertySet;
257 if (m_propertySet.isMutable())
258 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).metadata();
259 return toImmutableStylePropertySet(m_propertySet).metadataArray()[m_index];
264 if (m_propertySet.isMutable())
265 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).value();
266 return toImmutableStylePropertySet(m_propertySet).valueArray()[m_index];
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.h 70 RefPtrWillBeMember<MutableStylePropertySet> m_propertySet;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
StringKeyframe.h 22 void clearPropertyValue(CSSPropertyID property) { m_propertySet->removeProperty(property); }
25 int index = m_propertySet->findPropertyIndex(property);
27 return m_propertySet->propertyAt(static_cast<unsigned>(index)).value();
59 : m_propertySet(MutableStylePropertySet::create())
69 RefPtrWillBeMember<MutableStylePropertySet> m_propertySet;

Completed in 288 milliseconds