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

  /external/webkit/WebCore/css/
CSSTimingFunctionValue.h 43 double x1() const { return m_x1; }
50 : m_x1(x1)
59 double m_x1; member in class:WebCore::CSSTimingFunctionValue
  /external/webkit/WebCore/platform/animation/
TimingFunction.h 35 , m_x1(0.25)
44 , m_x1(x1)
53 return m_type == o.m_type && m_x1 == o.m_x1 && m_y1 == o.m_y1 && m_x2 == o.m_x2 && m_y2 == o.m_y2;
56 double x1() const { return m_x1; }
66 double m_x1; member in struct:WebCore::TimingFunction
  /external/webkit/WebCore/svg/
LinearGradientAttributes.h 30 : m_x1()
41 SVGLength x1() const { return m_x1; }
46 void setX1(const SVGLength& value) { m_x1 = value; m_x1Set = true; }
58 SVGLength m_x1; member in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 32 SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {}
34 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg %.6lg %.6lg", m_x1, m_y1, m_x2, m_y2, m_x, m_y); }
42 void setX1(float x1) { m_x1 = x1; }
43 float x1() const { return m_x1; }
57 float m_x1; member in class:WebCore::SVGPathSegCurvetoCubic
SVGPathSegCurvetoQuadratic.h 33 : SVGPathSeg(), m_x(x), m_y(y), m_x1(x1), m_y1(y1) {}
35 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg", m_x1, m_y1, m_x, m_y); }
43 void setX1(float x1) { m_x1 = x1; }
44 float x1() const { return m_x1; }
52 float m_x1; member in class:WebCore::SVGPathSegCurvetoQuadratic

Completed in 1002 milliseconds