OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AnimationEffect
(Results
1 - 18
of
18
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
InertAnimation.h
34
#include "core/animation/
AnimationEffect
.h"
43
static PassRefPtr<InertAnimation> create(PassRefPtr<
AnimationEffect
>, const Timing&, bool paused);
44
PassOwnPtr<
AnimationEffect
::CompositableValueList> sample();
45
AnimationEffect
* effect() const { return m_effect.get(); }
54
InertAnimation(PassRefPtr<
AnimationEffect
>, const Timing&, bool paused);
55
RefPtr<
AnimationEffect
> m_effect;
AnimationEffect.h
43
class
AnimationEffect
: public RefCounted<
AnimationEffect
> {
59
virtual ~
AnimationEffect
() { }
InertAnimation.cpp
36
PassRefPtr<InertAnimation> InertAnimation::create(PassRefPtr<
AnimationEffect
> effect, const Timing& timing, bool paused)
41
InertAnimation::InertAnimation(PassRefPtr<
AnimationEffect
> effect, const Timing& timing, bool paused)
48
PassOwnPtr<
AnimationEffect
::CompositableValueList> InertAnimation::sample()
Animation.h
34
#include "core/animation/
AnimationEffect
.h"
47
static PassRefPtr<Animation> create(PassRefPtr<Element>, PassRefPtr<
AnimationEffect
>, const Timing&, Priority = DefaultPriority, PassOwnPtr<EventDelegate> = nullptr);
50
const
AnimationEffect
::CompositableValueList* compositableValues() const
57
const
AnimationEffect
* effect() const { return m_effect.get(); }
79
Animation(PassRefPtr<Element>, PassRefPtr<
AnimationEffect
>, const Timing&, Priority, PassOwnPtr<EventDelegate>);
82
RefPtr<
AnimationEffect
> m_effect;
85
OwnPtr<
AnimationEffect
::CompositableValueList> m_compositableValues;
AnimationStack.cpp
40
void copyToCompositableValueMap(const
AnimationEffect
::CompositableValueList* source,
AnimationEffect
::CompositableValueMap& target)
44
for (
AnimationEffect
::CompositableValueList::const_iterator iter = source->begin(); iter != source->end(); ++iter)
68
AnimationEffect
::CompositableValueMap AnimationStack::compositableValues(const AnimationStack* animationStack, const Vector<InertAnimation*>* newAnimations, const HashSet<const Player*>* cancelledPlayers, Animation::Priority priority)
70
AnimationEffect
::CompositableValueMap result;
CompositorAnimations.h
34
#include "core/animation/
AnimationEffect
.h"
61
virtual bool isCandidateForAnimationOnCompositor(const Timing&, const
AnimationEffect
&);
64
virtual bool startAnimationOnCompositor(const Element&, const Timing&, const
AnimationEffect
&, Vector<int>& startedAnimationIds);
KeyframeAnimationEffect.h
35
#include "core/animation/
AnimationEffect
.h"
60
void setComposite(
AnimationEffect
::CompositeOperation composite) { m_composite = composite; }
61
AnimationEffect
::CompositeOperation composite() const { return m_composite; }
72
AnimationEffect
::CompositeOperation m_composite;
77
class KeyframeAnimationEffect : public
AnimationEffect
{
94
//
AnimationEffect
implementation.
151
DEFINE_TYPE_CASTS(KeyframeAnimationEffect,
AnimationEffect
, value, value->isKeyframeAnimationEffect(), value.isKeyframeAnimationEffect());
AnimationStack.h
35
#include "core/animation/
AnimationEffect
.h"
56
static
AnimationEffect
::CompositableValueMap compositableValues(const AnimationStack*, const Vector<InertAnimation*>* newAnimations, const HashSet<const Player*>* cancelledPlayers, Animation::Priority);
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
...]
KeyframeAnimationEffectTest.cpp
83
OwnPtr<
AnimationEffect
::CompositableValueList> values = effect->sample(0, 0.6);
92
keyframes[0]->setComposite(
AnimationEffect
::CompositeReplace);
93
keyframes[1]->setComposite(
AnimationEffect
::CompositeReplace);
101
keyframes[0]->setComposite(
AnimationEffect
::CompositeReplace);
102
keyframes[1]->setComposite(
AnimationEffect
::CompositeReplace);
110
keyframes[0]->setComposite(
AnimationEffect
::CompositeAdd);
111
keyframes[1]->setComposite(
AnimationEffect
::CompositeAdd);
120
keyframes[0]->setComposite(
AnimationEffect
::CompositeReplace);
121
keyframes[1]->setComposite(
AnimationEffect
::CompositeReplace);
129
keyframes[0]->setComposite(
AnimationEffect
::CompositeReplace)
[
all
...]
Animation.cpp
42
PassRefPtr<Animation> Animation::create(PassRefPtr<Element> target, PassRefPtr<
AnimationEffect
> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate)
47
Animation::Animation(PassRefPtr<Element> target, PassRefPtr<
AnimationEffect
> effect, const Timing& timing, Priority priority, PassOwnPtr<EventDelegate> eventDelegate)
CompositorAnimationsTest.cpp
107
bool isCandidateForAnimationOnCompositor(const Timing& timing, const
AnimationEffect
& effect)
148
keyframe->setComposite(
AnimationEffect
::CompositeReplace);
153
PassRefPtr<Keyframe> createDefaultKeyframe(CSSPropertyID id,
AnimationEffect
::CompositeOperation op, double offset = 0)
242
RefPtr<Keyframe> keyframeGoodMultiple = createDefaultKeyframe(CSSPropertyOpacity,
AnimationEffect
::CompositeReplace);
246
RefPtr<Keyframe> keyframeBadMultipleOp = createDefaultKeyframe(CSSPropertyOpacity,
AnimationEffect
::CompositeAdd);
254
RefPtr<Keyframe> keyframeBadMultiple1ID = createDefaultKeyframe(CSSPropertyColor,
AnimationEffect
::CompositeReplace);
259
RefPtr<Keyframe> keyframeBadMultiple2ID = createDefaultKeyframe(CSSPropertyWebkitTransform,
AnimationEffect
::CompositeReplace);
298
framesSame.append(createDefaultKeyframe(CSSPropertyOpacity,
AnimationEffect
::CompositeReplace, 0.0).get());
299
framesSame.append(createDefaultKeyframe(CSSPropertyOpacity,
AnimationEffect
::CompositeReplace, 1.0).get());
303
framesMixed.append(createDefaultKeyframe(CSSPropertyOpacity,
AnimationEffect
::CompositeReplace, 0.0).get())
[
all
...]
ElementAnimation.cpp
101
keyframe->setComposite(
AnimationEffect
::CompositeAdd);
CompositorAnimations.cpp
148
bool CompositorAnimations::isCandidateForAnimationOnCompositor(const Timing& timing, const
AnimationEffect
& effect)
156
if (frames[i]->composite() !=
AnimationEffect
::CompositeReplace)
255
bool CompositorAnimations::startAnimationOnCompositor(const Element& element, const Timing& timing, const
AnimationEffect
& effect, Vector<int>& startedAnimationIds)
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h
107
void adoptCompositableValuesForAnimations(
AnimationEffect
::CompositableValueMap& newMap) { newMap.swap(m_compositableValuesForAnimations); }
108
void adoptCompositableValuesForTransitions(
AnimationEffect
::CompositableValueMap& newMap) { newMap.swap(m_compositableValuesForTransitions); }
109
const
AnimationEffect
::CompositableValueMap& compositableValuesForAnimations() const { return m_compositableValuesForAnimations; }
110
const
AnimationEffect
::CompositableValueMap& compositableValuesForTransitions() const { return m_compositableValuesForTransitions; }
111
AnimationEffect
::CompositableValueMap& compositableValuesForAnimations() { return m_compositableValuesForAnimations; }
137
AnimationEffect
::CompositableValueMap m_compositableValuesForAnimations;
138
AnimationEffect
::CompositableValueMap m_compositableValuesForTransitions;
175
AnimationEffect
::CompositableValueMap m_previousCompositableValuesForAnimations;
CSSAnimations.cpp
495
RefPtr<
AnimationEffect
> effect = inertAnimation->effect();
509
const
AnimationEffect
::CompositableValue* compositableValue = oldAnimation->compositableValues()->at(0).second.get();
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleResolver.h
278
void applyAnimatedProperties(StyleResolverState&, const
AnimationEffect
::CompositableValueMap&);
StyleResolver.cpp
[
all
...]
Completed in 186 milliseconds