Searched defs:m_x2 (Results 1 - 5 of 5) sorted by relevance
/external/webkit/WebCore/css/ |
H A D | CSSTimingFunctionValue.h | 45 double x2() const { return m_x2; } 52 , m_x2(x2) 61 double m_x2; member in class:WebCore::CSSTimingFunctionValue
|
/external/webkit/WebCore/platform/animation/ |
H A D | TimingFunction.h | 37 , m_x2(0.25) 46 , m_x2(x2) 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; 58 double x2() const { return m_x2; } 68 double m_x2; member in struct:WebCore::TimingFunction
|
/external/webkit/WebCore/svg/ |
H A D | LinearGradientAttributes.h | 32 , m_x2(LengthModeWidth, "100%") 43 SVGLength x2() const { return m_x2; } 48 void setX2(const SVGLength& value) { m_x2 = value; m_x2Set = true; } 60 SVGLength m_x2; member in struct:WebCore::LinearGradientAttributes
|
H A D | 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); } 48 void setX2(float x2) { m_x2 = x2; } 49 float x2() const { return m_x2; } 59 float m_x2; member in class:WebCore::SVGPathSegCurvetoCubic
|
H A D | SVGPathSegCurvetoCubicSmooth.h | 33 : m_x(x), m_y(y), m_x2(x2), m_y2(y2) { } 35 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg", m_x2, m_y2, m_x, m_y); } 43 void setX2(float x2) { m_x2 = x2; } 44 float x2() const { return m_x2; } 52 float m_x2; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
|
Completed in 75 milliseconds