HomeSort by relevance Sort by last modified time
    Searched full:animationprogress (Results 1 - 10 of 10) sorted by null

  /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/rendering/
RenderProgress.h 37 double animationProgress() const;
RenderProgress.cpp 65 double RenderProgress::animationProgress() const
RenderThemeChromiumSkia.cpp 568 double progress = renderProgress->animationProgress();
RenderThemeChromiumWin.cpp 763 // On Chromium Windows port, animationProgress() and associated values aren't used.
RenderThemeMac.mm     [all...]
  /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));
  /external/webkit/WebKitLibraries/
WebKitSystemInterface.h 339 void WKWindowBounceAnimationSetAnimationProgress(WKWindowBounceAnimationContextRef context, double animationProgress);
  /external/webkit/Source/WebCore/platform/qt/
RenderThemeQt.cpp 890 p.painter->fillRect(option.rect.right() - chunkWidth - renderProgress->animationProgress() * option.rect.width(), 0, chunkWidth, option.rect.height(), color);
892 p.painter->fillRect(renderProgress->animationProgress() * option.rect.width(), 0, chunkWidth, option.rect.height(), color);
    [all...]
  /external/webkit/Source/WebCore/
ChangeLog-2010-05-24     [all...]

Completed in 133 milliseconds