HomeSort by relevance Sort by last modified time
    Searched refs:AnimationNode (Results 1 - 25 of 93) sorted by null

1 2 3 4

  /external/chromium_org/third_party/WebKit/Source/core/animation/
TimingCalculationsTest.cpp 48 EXPECT_TRUE(isNull(calculateActiveTime(20, Timing::FillModeForwards, 0, AnimationNode::PhaseActive, AnimationNode::PhaseBefore, timing)));
49 EXPECT_TRUE(isNull(calculateActiveTime(20, Timing::FillModeNone, 0, AnimationNode::PhaseActive, AnimationNode::PhaseBefore, timing)));
50 EXPECT_EQ(0, calculateActiveTime(20, Timing::FillModeBackwards, 0, AnimationNode::PhaseActive, AnimationNode::PhaseBefore, timing));
51 EXPECT_EQ(0, calculateActiveTime(20, Timing::FillModeBoth, 0, AnimationNode::PhaseActive, AnimationNode::PhaseBefore, timing));
56 EXPECT_TRUE(isNull(calculateActiveTime(20, Timing::FillModeNone, 15, AnimationNode::PhaseBefore, AnimationNode::PhaseActive, timing)))
    [all...]
AnimationNodeTiming.h 10 #include "core/animation/AnimationNode.h"
19 static PassRefPtrWillBeRawPtr<AnimationNodeTiming> create(AnimationNode* parent);
43 RefPtrWillBeMember<AnimationNode> m_parent;
44 explicit AnimationNodeTiming(AnimationNode*);
Animation.idl 40 ] interface Animation : AnimationNode {
AnimationNode.h 44 class AnimationNode;
62 class AnimationNode : public RefCountedWillBeGarbageCollectedFinalized<AnimationNode>, public ScriptWrappable {
77 virtual void onEventCondition(const AnimationNode*) = 0;
81 virtual ~AnimationNode() { }
122 explicit AnimationNode(const Timing&, PassOwnPtrWillBeRawPtr<EventDelegate> = nullptr);
124 // When AnimationNode receives a new inherited time via updateInheritedTime
151 RawPtrWillBeMember<AnimationNode> m_parent;
TimingCalculations.h 34 #include "core/animation/AnimationNode.h"
48 static inline AnimationNode::Phase calculatePhase(double activeDuration, double localTime, const Timing& specified)
52 return AnimationNode::PhaseNone;
54 return AnimationNode::PhaseBefore;
56 return AnimationNode::PhaseAfter;
57 return AnimationNode::PhaseActive;
60 static inline bool isActiveInParentPhase(AnimationNode::Phase parentPhase, Timing::FillMode fillMode)
63 case AnimationNode::PhaseBefore:
65 case AnimationNode::PhaseActive:
67 case AnimationNode::PhaseAfter
    [all...]
AnimationNode.cpp 32 #include "core/animation/AnimationNode.h"
53 AnimationNode::AnimationNode(const Timing& timing, PassOwnPtrWillBeRawPtr<EventDelegate> eventDelegate)
66 double AnimationNode::iterationDuration() const
73 double AnimationNode::repeatedDuration() const
80 double AnimationNode::activeDurationInternal() const
89 void AnimationNode::updateSpecifiedTiming(const Timing& timing)
99 void AnimationNode::updateInheritedTime(double inheritedTime, TimingUpdateReason reason) const
112 const AnimationNode::Phase parentPhase = AnimationNode::PhaseActive
    [all...]
AnimationPlayer.h 34 #include "core/animation/AnimationNode.h"
60 static PassRefPtrWillBeRawPtr<AnimationPlayer> create(ExecutionContext*, AnimationTimeline&, AnimationNode*);
120 const AnimationNode* source() const { return m_content.get(); }
121 AnimationNode* source() { return m_content.get(); }
122 void setSource(AnimationNode*);
162 AnimationPlayer(ExecutionContext*, AnimationTimeline&, AnimationNode*);
178 RefPtrWillBeMember<AnimationNode> m_content;
AnimationNode.idl 34 ] interface AnimationNode {
InertAnimation.cpp 43 : AnimationNode(timing)
69 AnimationNode::trace(visitor);
AnimationTimeline.h 47 class AnimationNode;
70 AnimationPlayer* createAnimationPlayer(AnimationNode*);
71 AnimationPlayer* play(AnimationNode*);
InertAnimation.h 35 #include "core/animation/AnimationNode.h"
40 class InertAnimation FINAL : public AnimationNode {
AnimationPlayer.idl 38 [RuntimeEnabled=WebAnimationsAPI] attribute AnimationNode? source;
Animation.h 35 #include "core/animation/AnimationNode.h"
48 class Animation FINAL : public AnimationNode {
111 DEFINE_TYPE_CASTS(Animation, AnimationNode, animationNode, animationNode->isAnimation(), animationNode.isAnimation());
AnimationNodeTest.cpp 32 #include "core/animation/AnimationNode.h"
40 class TestAnimationNodeEventDelegate : public AnimationNode::EventDelegate {
42 virtual void onEventCondition(const AnimationNode* animationNode) OVERRIDE
57 class TestAnimationNode : public AnimationNode {
72 AnimationNode::updateInheritedTime(time, reason);
101 AnimationNode::trace(visitor);
106 : AnimationNode(specified, adoptPtrWillBeNoop(eventDelegate))
120 RefPtrWillBeRawPtr<TestAnimationNode> animationNode = TestAnimationNode::create(timing);
122 EXPECT_EQ(0, animationNode->startTime())
    [all...]
AnimationNodeTiming.cpp 9 #include "core/animation/AnimationNode.h"
14 PassRefPtrWillBeRawPtr<AnimationNodeTiming> AnimationNodeTiming::create(AnimationNode* parent)
19 AnimationNodeTiming::AnimationNodeTiming(AnimationNode* parent)
Animation.cpp 91 : AnimationNode(timing, eventDelegate)
117 AnimationNode::attach(player);
126 AnimationNode::detach();
318 AnimationNode::trace(visitor);
AnimationTimeline.cpp 83 AnimationPlayer* AnimationTimeline::createAnimationPlayer(AnimationNode* child)
92 AnimationPlayer* AnimationTimeline::play(AnimationNode* child)
AnimationPlayer.cpp 54 PassRefPtrWillBeRawPtr<AnimationPlayer> AnimationPlayer::create(ExecutionContext* executionContext, AnimationTimeline& timeline, AnimationNode* content)
63 AnimationPlayer::AnimationPlayer(ExecutionContext* executionContext, AnimationTimeline& timeline, AnimationNode* content)
366 void AnimationPlayer::setSource(AnimationNode* newSource)
AnimationPlayerTest.cpp 638 RefPtrWillBeRawPtr<AnimationNode> source1 = makeAnimation();
639 RefPtrWillBeRawPtr<AnimationNode> source2 = makeAnimation();
684 AnimationNode* animationNode = player->source();
685 AnimationPlayer* player2 = timeline->createAnimationPlayer(animationNode);
687 player->setSource(animationNode);
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.h 220 class AnimationEventDelegate FINAL : public AnimationNode::EventDelegate {
225 , m_previousPhase(AnimationNode::PhaseNone)
229 virtual void onEventCondition(const AnimationNode*) OVERRIDE;
236 AnimationNode::Phase m_previousPhase;
240 class TransitionEventDelegate FINAL : public AnimationNode::EventDelegate {
245 , m_previousPhase(AnimationNode::PhaseNone)
248 virtual void onEventCondition(const AnimationNode*) OVERRIDE;
254 AnimationNode::Phase m_previousPhase;
CSSAnimations.cpp 603 void CSSAnimations::AnimationEventDelegate::onEventCondition(const AnimationNode* animationNode)
605 const AnimationNode::Phase currentPhase = animationNode->phase();
606 const double currentIteration = animationNode->currentIteration();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/core/
core_global_constructors_idls.target.darwin-arm.mk 23 $(gyp_shared_intermediate_dir)/blink/core/WindowCoreConstructors.idl: $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/utilities.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/core/core_global_constructors_idls_idl_files_list.tmp $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/Animation.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationEffect.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationPlayer.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationNode.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationTimeline.idl $(LOCAL_PATH)/thi (…)
    [all...]
core_global_constructors_idls.target.darwin-arm64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/WindowCoreConstructors.idl: $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/utilities.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/core/core_global_constructors_idls_idl_files_list.tmp $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/Animation.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationEffect.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationPlayer.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationNode.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationTimeline.idl $(LOCAL_PATH)/thi (…)
    [all...]
core_global_constructors_idls.target.darwin-mips.mk 23 $(gyp_shared_intermediate_dir)/blink/core/WindowCoreConstructors.idl: $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/utilities.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/core/core_global_constructors_idls_idl_files_list.tmp $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/Animation.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationEffect.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationPlayer.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationNode.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationTimeline.idl $(LOCAL_PATH)/thi (…)
    [all...]
core_global_constructors_idls.target.darwin-mips64.mk 23 $(gyp_shared_intermediate_dir)/blink/core/WindowCoreConstructors.idl: $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/generate_global_constructors.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/scripts/utilities.py $(LOCAL_PATH)/third_party/WebKit/Source/bindings/core/core_global_constructors_idls_idl_files_list.tmp $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/Animation.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationEffect.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationPlayer.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationNode.idl $(LOCAL_PATH)/third_party/WebKit/Source/core/animation/AnimationTimeline.idl $(LOCAL_PATH)/thi (…)
    [all...]

Completed in 146 milliseconds

1 2 3 4