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

  /external/webkit/Source/WebCore/rendering/
RenderProgress.cpp 65 double RenderProgress::animationProgress() const
  /external/webkit/Source/WebKit2/WebProcess/WebPage/
PageOverlay.cpp 152 float animationProgress = (currentTime() - m_fadeAnimationStartTime) / m_fadeAnimationDuration;
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/
RenderThemeGtk.cpp 656 double animationProgress = renderProgress->animationProgress();
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 214 milliseconds