Searched defs:animationProgress (Results 1 - 3 of 3) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DRenderProgress.cpp65 double RenderProgress::animationProgress() const function in class:WebCore::RenderProgress
/external/webkit/Source/WebKit2/WebProcess/WebPage/
H A DPageOverlay.cpp152 float animationProgress = (currentTime() - m_fadeAnimationStartTime) / m_fadeAnimationDuration; local
154 if (animationProgress >= 1.0)
155 animationProgress = 1.0;
157 double sine = sin(piOverTwoFloat * animationProgress);
163 if (animationProgress == 1.0) {
/external/webkit/Source/WebCore/platform/gtk/
H A DRenderThemeGtk.cpp656 double animationProgress = renderProgress->animationProgress(); local
667 if (animationProgress < 0.5)
668 progressRect.setX(progressRect.x() + (animationProgress * 2 * movableWidth));
670 progressRect.setX(progressRect.x() + ((1.0 - animationProgress) * 2 * movableWidth));

Completed in 542 milliseconds