HomeSort by relevance Sort by last modified time
    Searched refs:movableWidth (Results 1 - 2 of 2) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderThemeChromiumSkia.cpp 564 int movableWidth = rect.width() - valueWidth;
565 if (movableWidth <= 0)
570 return IntRect(rect.x() + progress * 2 * movableWidth, rect.y(), valueWidth, rect.height());
571 return IntRect(rect.x() + (1.0 - progress) * 2 * movableWidth, rect.y(), valueWidth, rect.height());
  /external/webkit/Source/WebCore/platform/gtk/
RenderThemeGtk.cpp 660 int movableWidth = progressRect.width() - newWidth;
668 progressRect.setX(progressRect.x() + (animationProgress * 2 * movableWidth));
670 progressRect.setX(progressRect.x() + ((1.0 - animationProgress) * 2 * movableWidth));

Completed in 5848 milliseconds