Searched refs:m_property (Results 1 – 12 of 12) sorted by relevance
/external/webkit/Source/WebCore/editing/ |
D | RemoveCSSPropertyCommand.cpp | 37 , m_property(property) in RemoveCSSPropertyCommand() 46 m_oldValue = style->getPropertyValue(m_property); in doApply() 47 m_important = style->getPropertyPriority(m_property); in doApply() 48 style->removeProperty(m_property); in doApply() 54 style->setProperty(m_property, m_oldValue, m_important); in doUnapply()
|
D | RemoveCSSPropertyCommand.h | 49 CSSPropertyID m_property; variable
|
/external/webkit/Source/WebCore/svg/properties/ |
D | SVGAnimatedStaticPropertyTearOff.h | 33 return m_property; in baseVal() 39 return m_property; in animVal() 44 m_property = property; in setBaseVal() 62 , m_property(property) in SVGAnimatedStaticPropertyTearOff() 67 PropertyType& m_property;
|
D | SVGAnimatedPropertyTearOff.h | 35 m_baseVal = SVGPropertyTearOff<PropertyType>::create(this, BaseValRole, m_property); in baseVal() 42 m_animVal = SVGPropertyTearOff<PropertyType>::create(this, AnimValRole, m_property); in animVal() 57 , m_property(property) in SVGAnimatedPropertyTearOff() 62 PropertyType& m_property;
|
/external/webkit/Source/WebCore/platform/animation/ |
D | Animation.cpp | 29 , m_property(initialAnimationProperty()) in Animation() 53 , m_property(o.m_property) in Animation() 77 m_property = o.m_property; in operator =() 110 && m_property == o->m_property in animationsMatch()
|
D | Animation.h | 97 int property() const { return m_property; } in property() 107 void setProperty(int t) { m_property = t; m_propertySet = true; } in setProperty() 129 int m_property; variable
|
/external/webkit/Source/WebCore/bridge/qt/ |
D | qt_instance.cpp | 331 return m_property.name(); in name() 349 if (m_property.isReadable()) in valueFromInstance() 350 val = m_property.read(obj); in valueFromInstance() 375 argtype = (QMetaType::Type) QMetaType::type(m_property.typeName()); in setValueToInstance() 380 if (m_property.isWritable()) in setValueToInstance() 381 m_property.write(obj, val); in setValueToInstance()
|
D | qt_runtime.h | 50 : m_type(MetaProperty), m_property(p) in QtField() 70 QMetaProperty m_property; variable
|
/external/webkit/Source/WebCore/platform/graphics/ |
D | GraphicsLayer.h | 160 : m_property(property) in KeyframeValueList() 169 AnimatedPropertyID property() const { return m_property; } in property() 179 AnimatedPropertyID m_property; variable
|
/external/webkit/Source/WebCore/platform/graphics/ca/ |
D | GraphicsLayerCA.h | 367 , m_property(property) in LayerPropertyAnimation() 374 AnimatedPropertyID m_property; member
|
D | GraphicsLayerCA.cpp | 454 if (currAnimation.m_property == property) in moveOrCopyAnimationsForProperty() 455 …ion(operation, animationIdentifier(currAnimation.m_name, currAnimation.m_property, currAnimation.m… in moveOrCopyAnimationsForProperty() 1418 … removeCAAnimationFromLayer(currAnimation.m_property, currAnimationName, currAnimation.m_index); in updateLayerAnimations() 1421 …pauseCAAnimationOnLayer(currAnimation.m_property, currAnimationName, currAnimation.m_index, proces… in updateLayerAnimations() 1437 …setAnimationOnLayer(pendingAnimation.m_animation.get(), pendingAnimation.m_property, pendingAnimat… in updateLayerAnimations()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2010-12-06 | 23158 …VGAnimatedStaticPropertyTearOff::baseVal): Directly returns the stored m_property as reference, no… 23160 …nimatedStaticPropertyTearOff::setBaseVal): Directly updates the stored m_property reference, and i…
|