Searched defs:propertySet (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.cpp31 void KeyframeValue::addProperties(const StylePropertySet* propertySet) argument
33 if (!propertySet)
35 unsigned propertyCount = propertySet->propertyCount();
37 CSSPropertyID property = propertySet->propertyAt(i).id();
/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DElementAnimation.cpp81 RefPtr<MutableStylePropertySet> propertySet = MutableStylePropertySet::create(); local
82 propertySetVector.append(propertySet);
120 propertySet->setProperty(id, value);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DPropertySetCSSStyleDeclaration.h45 PropertySetCSSStyleDeclaration(MutableStylePropertySet* propertySet) : m_propertySet(propertySet) { } argument
95 static PassRefPtr<StyleRuleCSSStyleDeclaration> create(MutableStylePropertySet* propertySet, CSSRule* parentRule) argument
97 return adoptRef(new StyleRuleCSSStyleDeclaration(propertySet, parentRule));
125 InlineCSSStyleDeclaration(MutableStylePropertySet* propertySet, Element* parentElement) argument
126 : PropertySetCSSStyleDeclaration(propertySet)
H A DStylePropertySet.h54 PropertyReference(const StylePropertySet& propertySet, unsigned index) argument
55 : m_propertySet(propertySet)
234 explicit VariablesIterator(MutableStylePropertySet* propertySet) : m_propertySet(propertySet) { } argument
H A DElementRuleCollector.cpp108 void ElementRuleCollector::addElementStyleProperties(const StylePropertySet* propertySet, bool isCacheable) argument
110 if (!propertySet)
115 m_result.addMatchedProperties(propertySet);
H A DPropertySetCSSStyleDeclaration.cpp360 StyleRuleCSSStyleDeclaration::StyleRuleCSSStyleDeclaration(MutableStylePropertySet* propertySet, CSSRule* parentRule) argument
361 : PropertySetCSSStyleDeclaration(propertySet)
406 void StyleRuleCSSStyleDeclaration::reattach(MutableStylePropertySet* propertySet) argument
408 ASSERT(propertySet);
410 m_propertySet = propertySet;
H A DStylePropertySet.cpp569 PassRefPtr<MutableStylePropertySet::VariablesIterator> MutableStylePropertySet::VariablesIterator::create(MutableStylePropertySet* propertySet) argument
572 const size_t propertyCount = propertySet->propertyCount();
576 const PropertyReference& property = propertySet->propertyAt(i);
582 RefPtr<VariablesIterator> iterator = adoptRef(new VariablesIterator(propertySet));
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DViewportStyleResolver.cpp65 StylePropertySet* propertySet = viewportRule->mutableProperties(); local
67 unsigned propertyCount = propertySet->propertyCount();
75 m_propertySet = propertySet->mutableCopy();
82 m_propertySet->addParsedProperty(propertySet->propertyAt(i).toCSSProperty());
/external/chromium_org/third_party/WebKit/Source/core/html/shadow/
H A DMediaControlElementTypes.cpp87 const StylePropertySet* propertySet = m_element->inlineStyle(); local
90 return (!propertySet || !propertySet->getPropertyCSSValue(CSSPropertyDisplay));
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGAnimateElement.cpp251 MutableStylePropertySet* propertySet = targetElement->ensureAnimatedSMILStyleProperties(); local
252 if (!propertySet->setProperty(id, value, false, 0))
/external/chromium_org/v8/src/
H A Dv8natives.js1092 var propertySet = { __proto__: null };
1098 // properties like toString if(propertySet["toString"]) will always
1100 if (propertySet[name] === true) {
1103 propertySet[name] = true;

Completed in 307 milliseconds