OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompositableValue
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimationEffect.h
52
class
CompositableValue
: public RefCounted<
CompositableValue
> {
54
virtual ~
CompositableValue
() { }
60
typedef HashMap<CSSPropertyID, RefPtr<
CompositableValue
> > CompositableValueMap;
61
typedef Vector<std::pair<CSSPropertyID, RefPtr<
CompositableValue
> > > CompositableValueList;
KeyframeAnimationEffect.cpp
41
class ReplaceCompositableValue : public AnimationEffect::
CompositableValue
{
63
class AddCompositableValue : public AnimationEffect::
CompositableValue
{
85
class BlendedCompositableValue : public AnimationEffect::
CompositableValue
{
87
static PassRefPtr<BlendedCompositableValue> create(const AnimationEffect::
CompositableValue
* before, const AnimationEffect::
CompositableValue
* after, double fraction)
100
BlendedCompositableValue(const AnimationEffect::
CompositableValue
* before, const AnimationEffect::
CompositableValue
* after, double fraction)
101
: m_before(const_cast<AnimationEffect::
CompositableValue
*>(before))
102
, m_after(const_cast<AnimationEffect::
CompositableValue
*>(after))
106
RefPtr<AnimationEffect::
CompositableValue
> m_before
[
all
...]
KeyframeAnimationEffect.h
108
const
CompositableValue
* value() const { return m_value.get(); }
112
PropertySpecificKeyframe(double offset, PassRefPtr<
CompositableValue
>);
114
RefPtr<
CompositableValue
> m_value;
120
PassRefPtr<
CompositableValue
> sample(int iteration, double offset) const;
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp
509
const AnimationEffect::
CompositableValue
*
compositableValue
= oldAnimation->compositableValues()->at(0).second.get();
510
ASSERT(!
compositableValue
->dependsOnUnderlyingValue());
511
newFrames[0]->setPropertyValue(id,
compositableValue
->compositeOnto(0).get());
[
all
...]
Completed in 689 milliseconds