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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTimingFunctionValue.cpp 49 return "steps(" + String::number(m_steps) + ", " + (m_stepAtStart ? "start" : "end") + ')';
54 return m_steps == other.m_steps && m_stepAtStart == other.m_stepAtStart;
CSSTimingFunctionValue.h 75 int numberOfSteps() const { return m_steps; }
85 , m_steps(steps)
90 int m_steps; member in class:WebCore::CSSStepsTimingFunctionValue
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XPathPath.cpp 88 deleteAllValues(m_steps);
123 for (unsigned i = 0; i < m_steps.size(); i++) {
124 Step* step = m_steps[i];
160 unsigned stepCount = m_steps.size();
163 optimizeStepPair(m_steps[stepCount - 1], step, dropSecondStep);
170 m_steps.append(step);
175 if (m_steps.size()) {
177 optimizeStepPair(step, m_steps[0], dropSecondStep);
179 delete m_steps[0];
180 m_steps[0] = step
    [all...]
XPathPath.h 69 Vector<Step*> m_steps; member in class:WebCore::XPath::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/platform/animation/
TimingFunction.h 214 return std::min(1.0, (floor(m_steps * fraction) + m_stepAtStart) / m_steps);
217 int numberOfSteps() const { return m_steps; }
225 , m_steps(steps)
231 int m_steps; member in class:WebCore::StepsTimingFunction

Completed in 74 milliseconds