Home
last modified time | relevance | path

Searched refs:m_propertySet (Results 1 – 9 of 9) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/css/
DStylePropertySerializer.cpp42 : m_propertySet(properties) in StylePropertySerializer()
67 unsigned size = m_propertySet.propertyCount(); in asText()
70 StylePropertySet::PropertyReference property = m_propertySet.propertyAt(n); in asText()
226 value = m_propertySet.getPropertyValue(shorthandPropertyID); in asText()
329 … RefPtrWillBeRawPtr<CSSValue> value = m_propertySet.getPropertyCSSValue(CSSPropertyMarkerStart); in getPropertyValue()
343 …RefPtrWillBeRawPtr<CSSValue> horizontalValue = m_propertySet.getPropertyCSSValue(shorthand.propert… in borderSpacingValue()
344 …RefPtrWillBeRawPtr<CSSValue> verticalValue = m_propertySet.getPropertyCSSValue(shorthand.propertie… in borderSpacingValue()
361 int foundPropertyIndex = m_propertySet.findPropertyIndex(propertyID); in appendFontLonghandValueIfExplicit()
365 if (m_propertySet.propertyAt(foundPropertyIndex).isImplicit()) { in appendFontLonghandValueIfExplicit()
389 String value = m_propertySet.propertyAt(foundPropertyIndex).value()->cssText(); in appendFontLonghandValueIfExplicit()
[all …]
DStylePropertySet.h58 : m_propertySet(propertySet) in PropertyReference()
85 const StylePropertySet& m_propertySet; variable
258 if (m_propertySet.isMutable()) in propertyMetadata()
259 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).metadata(); in propertyMetadata()
260 return toImmutableStylePropertySet(m_propertySet).metadataArray()[m_index]; in propertyMetadata()
265 if (m_propertySet.isMutable()) in propertyValue()
266 return toMutableStylePropertySet(m_propertySet).m_propertyVector.at(m_index).value(); in propertyValue()
267 return toImmutableStylePropertySet(m_propertySet).valueArray()[m_index]; in propertyValue()
DPropertySetCSSStyleDeclaration.cpp130 m_propertySet->ref(); in ref()
135 m_propertySet->deref(); in deref()
141 visitor->trace(m_propertySet); in trace()
321 m_propertySet->ref(); in StyleRuleCSSStyleDeclaration()
328 m_propertySet->deref(); in ~StyleRuleCSSStyleDeclaration()
370 m_propertySet->deref(); in reattach()
372 m_propertySet = &propertySet; in reattach()
374 m_propertySet->ref(); in reattach()
DPropertySetCSSStyleDeclaration.h82 …PropertySetCSSStyleDeclaration(MutableStylePropertySet& propertySet) : m_propertySet(&propertySet)… in PropertySetCSSStyleDeclaration()
92 …lePropertySet& propertySet() const OVERRIDE FINAL { ASSERT(m_propertySet); return *m_propertySet; } in propertySet()
94 RawPtrWillBeMember<MutableStylePropertySet> m_propertySet; // Cannot be null variable
DStylePropertySerializer.h55 const StylePropertySet& m_propertySet; variable
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
DViewportStyleResolver.cpp74 if (!m_propertySet) { in addViewportRule()
75 m_propertySet = propertySet.mutableCopy(); in addViewportRule()
82 m_propertySet->addParsedProperty(propertySet.propertyAt(i).toCSSProperty()); in addViewportRule()
90 if (!m_propertySet) { in resolve()
109 m_propertySet = nullptr; in resolve()
123 RefPtrWillBeRawPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id); in viewportArgumentValue()
173 RefPtrWillBeRawPtr<CSSValue> value = m_propertySet->getPropertyCSSValue(id); in viewportLengthValue()
202 visitor->trace(m_propertySet); in trace()
DViewportStyleResolver.h70 RefPtrWillBeMember<MutableStylePropertySet> m_propertySet; variable
/external/chromium_org/third_party/WebKit/Source/core/animation/
DStringKeyframe.h22 void clearPropertyValue(CSSPropertyID property) { m_propertySet->removeProperty(property); } in clearPropertyValue()
25 int index = m_propertySet->findPropertyIndex(property); in propertyValue()
27 return m_propertySet->propertyAt(static_cast<unsigned>(index)).value(); in propertyValue()
59 : m_propertySet(MutableStylePropertySet::create()) in StringKeyframe()
69 RefPtrWillBeMember<MutableStylePropertySet> m_propertySet; variable
DStringKeyframe.cpp21 , m_propertySet(copyFrom.m_propertySet->mutableCopy()) in StringKeyframe()
29 m_propertySet->setProperty(property, value, false, styleSheetContents); in setPropertyValue()
37 for (unsigned i = 0; i < m_propertySet->propertyCount(); ++i) in properties()
38 properties.add(m_propertySet->propertyAt(i).id()); in properties()
53 visitor->trace(m_propertySet); in trace()