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

  /external/webkit/Source/WebCore/css/
CSSTimingFunctionValue.h 100 static PassRefPtr<CSSStepsTimingFunctionValue> create(int steps, bool stepAtStart)
102 return adoptRef(new CSSStepsTimingFunctionValue(steps, stepAtStart));
106 bool stepAtStart() const { return m_stepAtStart; }
109 CSSStepsTimingFunctionValue(int steps, bool stepAtStart)
111 , m_stepAtStart(stepAtStart)
CSSComputedStyleDeclaration.cpp 559 list->append(CSSStepsTimingFunctionValue::create(stf->numberOfSteps(), stf->stepAtStart()));
572 list->append(CSSStepsTimingFunctionValue::create(stf->numberOfSteps(), stf->stepAtStart()));
    [all...]
CSSParser.cpp     [all...]
CSSStyleSelector.cpp     [all...]
  /external/webkit/Source/WebCore/platform/animation/
TimingFunction.h 129 static PassRefPtr<StepsTimingFunction> create(int steps, bool stepAtStart)
131 return adoptRef(new StepsTimingFunction(steps, stepAtStart));
146 bool stepAtStart() const { return m_stepAtStart; }
149 StepsTimingFunction(int steps, bool stepAtStart)
152 , m_stepAtStart(stepAtStart)
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
AndroidAnimation.cpp 149 if (stepFunction->stepAtStart()) {
  /external/webkit/Source/WebCore/page/animation/
AnimationBase.cpp 73 static inline double solveStepsFunction(int numSteps, bool stepAtStart, double t)
75 if (stepAtStart)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/qt/
GraphicsLayerQt.cpp     [all...]

Completed in 381 milliseconds