HomeSort by relevance Sort by last modified time
    Searched defs:isCandidateForAnimationOnCompositor (Results 1 - 3 of 3) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
Animation.cpp 149 bool Animation::isCandidateForAnimationOnCompositor() const
153 return CompositorAnimations::instance()->isCandidateForAnimationOnCompositor(specified(), *effect());
159 if (!isCandidateForAnimationOnCompositor())
CompositorAnimations.cpp 148 bool CompositorAnimations::isCandidateForAnimationOnCompositor(const Timing& timing, const AnimationEffect& effect)
258 ASSERT(isCandidateForAnimationOnCompositor(timing, effect));
CompositorAnimationsTest.cpp 107 bool isCandidateForAnimationOnCompositor(const Timing& timing, const AnimationEffect& effect)
109 return CompositorAnimations::instance()->isCandidateForAnimationOnCompositor(timing, effect);
123 return isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(frames).get());
300 EXPECT_TRUE(isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(framesSame).get()));
305 EXPECT_TRUE(isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(framesMixed).get()));
313 EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(framesSame).get()));
318 EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(framesMixedProperties).get()));
323 EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *KeyframeAnimationEffect::create(framesMixedOps).get()));
468 EXPECT_FALSE(isCandidateForAnimationOnCompositor(m_timing, *m_keyframeAnimationEffect2.get()));
474 EXPECT_TRUE(isCandidateForAnimationOnCompositor(m_timing, *m_keyframeAnimationEffect2.get()))
    [all...]

Completed in 121 milliseconds