Searched defs:timeOffset (Results 1 - 13 of 13) sorted by relevance

/external/webkit/Tools/DumpRenderTree/mac/
H A DEventSendingController.h39 double timeOffset; variable
/external/webkit/Source/WebCore/page/animation/
H A DImplicitAnimation.cpp109 bool ImplicitAnimation::startAnimation(double timeOffset) argument
115 return layer->backing()->startTransition(timeOffset, m_animatingProperty, m_fromStyle.get(), m_toStyle.get());
118 UNUSED_PARAM(timeOffset);
123 void ImplicitAnimation::pauseAnimation(double timeOffset) argument
132 layer->backing()->transitionPaused(timeOffset, m_animatingProperty);
135 UNUSED_PARAM(timeOffset);
H A DKeyframeAnimation.cpp248 bool KeyframeAnimation::startAnimation(double timeOffset) argument
254 return layer->backing()->startAnimation(timeOffset, m_animation.get(), m_keyframes);
257 UNUSED_PARAM(timeOffset);
262 void KeyframeAnimation::pauseAnimation(double timeOffset) argument
271 layer->backing()->animationPaused(timeOffset, m_keyframes.animationName());
274 UNUSED_PARAM(timeOffset);
H A DAnimationBase.cpp1035 double timeOffset = 0; local
1038 timeOffset = -m_animation->delay();
1039 bool started = startAnimation(timeOffset);
/external/webkit/Source/WebCore/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp179 animation->setTimeOffset(timeOffset());
250 CFTimeInterval PlatformCAAnimation::timeOffset() const function in class:PlatformCAAnimation
H A DPlatformCALayerWin.cpp571 CFTimeInterval PlatformCALayer::timeOffset() const function in class:PlatformCALayer
/external/webkit/Tools/DumpRenderTree/win/
H A DEventSender.cpp48 static int timeOffset; variable
108 return ::GetTickCount() + timeOffset;
682 timeOffset = 0;
/external/quake/quake/src/WinQuake/
H A Dnet_main.cpp958 void SchedulePollProcedure(PollProcedure *proc, double timeOffset) argument
962 proc->nextTime = Sys_FloatTime() + timeOffset;
/external/webkit/Source/WebCore/platform/graphics/ca/
H A DGraphicsLayerCA.h105 virtual bool addAnimation(const KeyframeValueList&, const IntSize& boxSize, const Animation*, const String& animationName, double timeOffset);
106 virtual void pauseAnimation(const String& animationName, double timeOffset);
161 bool createAnimationFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset);
162 bool createTransformAnimationsFromKeyframes(const KeyframeValueList&, const Animation*, const String& animationName, double timeOffset, const IntSize& boxSize);
297 void setAnimationOnLayer(PlatformCAAnimation*, AnimatedPropertyID, const String& animationName, int index, double timeOffset);
299 void pauseCAAnimationOnLayer(AnimatedPropertyID, const String& animationName, int index, double timeOffset);
364 LayerPropertyAnimation(PassRefPtr<PlatformCAAnimation> caAnimation, const String& animationName, AnimatedPropertyID property, int index, double timeOffset) argument
369 , m_timeOffset(timeOffset)
384 AnimationProcessingAction(Action action = Remove, double timeOffset = 0)
386 , timeOffset(timeOffse
390 double timeOffset; // only used for pause member in struct:WebCore::GraphicsLayerCA::AnimationProcessingAction
[all...]
H A DGraphicsLayerCA.cpp605 bool GraphicsLayerCA::addAnimation(const KeyframeValueList& valueList, const IntSize& boxSize, const Animation* anim, const String& animationName, double timeOffset) argument
626 createdAnimations = createTransformAnimationsFromKeyframes(valueList, anim, animationName, timeOffset, boxSize);
628 createdAnimations = createAnimationFromKeyframes(valueList, anim, animationName, timeOffset);
636 void GraphicsLayerCA::pauseAnimation(const String& animationName, double timeOffset) argument
648 m_animationsToProcess.add(animationName, AnimationProcessingAction(Pause, timeOffset));
1421 pauseCAAnimationOnLayer(currAnimation.m_property, currAnimationName, currAnimation.m_index, processingInfo.timeOffset);
1454 void GraphicsLayerCA::setAnimationOnLayer(PlatformCAAnimation* caAnim, AnimatedPropertyID property, const String& animationName, int index, double timeOffset) argument
1458 if (timeOffset)
1459 caAnim->setBeginTime(CACurrentMediaTime() - timeOffset);
1518 void GraphicsLayerCA::pauseCAAnimationOnLayer(AnimatedPropertyID property, const String& animationName, int index, double timeOffset) argument
1565 createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
1593 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
[all...]
/external/webkit/Tools/DumpRenderTree/gtk/
H A DEventSender.cpp57 static int timeOffset = 0; variable
108 timeOffset += msgQueue[endOfQueue].delay;
260 || timeOffset - lastClickTimeOffset >= 1)
365 lastClickTimeOffset = timeOffset;
839 timeOffset += 1000;
/external/webkit/Source/WebCore/rendering/
H A DRenderLayerBacking.cpp1275 bool RenderLayerBacking::startAnimation(double timeOffset, const Animation* anim, const KeyframeList& keyframes) argument
1309 if (hasTransform && m_graphicsLayer->addAnimation(transformVector, toRenderBox(renderer())->borderBoxRect().size(), anim, keyframes.animationName(), timeOffset)) {
1314 if (hasOpacity && m_graphicsLayer->addAnimation(opacityVector, IntSize(), anim, keyframes.animationName(), timeOffset)) {
1322 void RenderLayerBacking::animationPaused(double timeOffset, const String& animationName) argument
1324 m_graphicsLayer->pauseAnimation(animationName, timeOffset);
1332 bool RenderLayerBacking::startTransition(double timeOffset, int property, const RenderStyle* fromStyle, const RenderStyle* toStyle) argument
1345 if (m_graphicsLayer->addAnimation(opacityVector, IntSize(), opacityAnim, GraphicsLayer::animationNameForTransition(AnimatedPropertyOpacity), timeOffset)) {
1359 if (m_graphicsLayer->addAnimation(transformVector, toRenderBox(renderer())->borderBoxRect().size(), transformAnim, GraphicsLayer::animationNameForTransition(AnimatedPropertyWebkitTransform), timeOffset)) {
1376 void RenderLayerBacking::transitionPaused(double timeOffset, int property) argument
1380 m_graphicsLayer->pauseAnimation(GraphicsLayer::animationNameForTransition(animatedProperty), timeOffset); local
[all...]
/external/webkit/Source/WebCore/platform/graphics/qt/
H A DGraphicsLayerQt.cpp1630 bool GraphicsLayerQt::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* anim, const String& keyframesName, double timeOffset) argument
1675 // We synchronize the animation's clock to WebCore's timeOffset.
1676 newAnim->setCurrentTime(timeOffset * 1000);
1720 void GraphicsLayerQt::pauseAnimation(const String& name, double timeOffset) argument
1729 // we synchronize the animation's clock to WebCore's timeOffset
1730 anim->setCurrentTime(timeOffset * 1000);

Completed in 252 milliseconds