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

  /external/chromium_org/third_party/WebKit/Source/core/css/
PropertySetCSSStyleDeclaration.cpp 130 m_propertySet->ref();
135 m_propertySet->deref();
140 return m_propertySet->propertyCount();
145 if (i >= m_propertySet->propertyCount())
147 return m_propertySet->propertyAt(i).cssName();
152 return m_propertySet->asText();
161 m_propertySet->parseDeclaration(text, contextStyleSheet());
173 return cloneAndCacheForCSSOM(m_propertySet->getPropertyCSSValue(propertyID).get());
181 return m_propertySet->getPropertyValue(propertyID);
189 return m_propertySet->propertyIsImportant(propertyID) ? "important" : ""
    [all...]
StylePropertySet.h 55 : m_propertySet(propertySet)
82 const StylePropertySet& m_propertySet;
234 explicit VariablesIterator(MutableStylePropertySet* propertySet) : m_propertySet(propertySet) { }
239 virtual String value() const OVERRIDE { return m_propertySet->variableValue(name()); }
244 RefPtr<MutableStylePropertySet> m_propertySet;
269 if (m_propertySet.isMutable())
270 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).metadata();
271 return toImmutableStylePropertySet(m_propertySet).metadataArray()[m_index];
276 if (m_propertySet.isMutable())
277 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).value()
    [all...]
StylePropertySerializer.cpp 44 : m_propertySet(properties)
60 unsigned size = m_propertySet.propertyCount();
63 StylePropertySet::PropertyReference property = m_propertySet.propertyAt(n);
217 value = m_propertySet.getPropertyValue(shorthandPropertyID);
246 if (positionXPropertyIndex != -1 && positionYPropertyIndex != -1 && m_propertySet.propertyAt(positionXPropertyIndex).isImportant() == m_propertySet.propertyAt(positionYPropertyIndex).isImportant()) {
247 StylePropertySet::PropertyReference positionXProperty = m_propertySet.propertyAt(positionXPropertyIndex);
248 StylePropertySet::PropertyReference positionYProperty = m_propertySet.propertyAt(positionYPropertyIndex);
267 result.append(m_propertySet.propertyAt(positionXPropertyIndex).cssText());
272 result.append(m_propertySet.propertyAt(positionYPropertyIndex).cssText())
    [all...]
StylePropertySerializer.h 49 const StylePropertySet& m_propertySet;
PropertySetCSSStyleDeclaration.h 45 PropertySetCSSStyleDeclaration(MutableStylePropertySet* propertySet) : m_propertySet(propertySet) { }
88 MutableStylePropertySet* m_propertySet;
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
CSSAnimationData.cpp 45 , m_propertySet(false)
70 , m_propertySet(o.m_propertySet)
96 m_propertySet = o.m_propertySet;
118 && m_propertySet == o->m_propertySet
CSSAnimationData.h 51 bool isPropertySet() const { return m_propertySet; }
64 && !m_delaySet && !m_timingFunctionSet && !m_propertySet);
79 void clearProperty() { m_propertySet = false; }
131 void setProperty(CSSPropertyID t) { m_property = t; m_propertySet = true; }
173 bool m_propertySet : 1;
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ViewportStyleResolver.cpp 74 if (!m_propertySet) {
75 m_propertySet = propertySet->mutableCopy();
82 m_propertySet->addParsedProperty(propertySet->propertyAt(i).toCSSProperty());
95 if (!m_propertySet || (!m_hasAuthorStyle && m_document->hasLegacyViewportTag())) {
97 m_propertySet = 0;
116 m_propertySet = 0;
130 RefPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id);
180 RefPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id);
ViewportStyleResolver.h 70 RefPtr<MutableStylePropertySet> m_propertySet;

Completed in 257 milliseconds