/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSTimingFunctionValue.cpp | 36 + String::number(m_x1) + ", " 44 return m_x1 == other.m_x1 && m_x2 == other.m_x2 && m_y1 == other.m_y1 && m_y2 == other.m_y2;
|
CSSTimingFunctionValue.h | 43 double x1() const { return m_x1; } 53 , m_x1(x1) 60 double m_x1; member in class:WebCore::CSSCubicBezierTimingFunctionValue
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
LinearGradientAttributes.h | 28 : m_x1() 39 SVGLength x1() const { return m_x1; } 44 void setX1(const SVGLength& value) { m_x1 = value; m_x1Set = true; } 56 SVGLength m_x1; member in struct:WebCore::LinearGradientAttributes
|
SVGPathSegCurvetoCubic.h | 34 , m_x1(x1) 55 float x1() const { return m_x1; } 58 m_x1 = x1; 86 float m_x1; member in class:WebCore::SVGPathSegCurvetoCubic
|
SVGPathSegCurvetoQuadratic.h | 34 , m_x1(x1) 53 float x1() const { return m_x1; } 56 m_x1 = x1; 70 float m_x1; member in class:WebCore::SVGPathSegCurvetoQuadratic
|
SVGLineElement.cpp | 49 , m_x1(LengthModeWidth)
|
SVGLinearGradientElement.cpp | 52 , m_x1(LengthModeWidth)
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
ShapeInterval.h | 42 : m_x1(x1) 48 T x1() const { return m_x1; } 50 T width() const { return m_x2 - m_x1; } 51 bool isEmpty() const { return m_x1 == m_x2; } 56 m_x1 = x1; 61 ASSERT(x2 >= m_x1); 68 m_x1 = x1; 211 T m_x1; member in class:WebCore::ShapeInterval
|
RasterShape.cpp | 46 int m_x1; member in class:WebCore::MarginIntervalGenerator 52 , m_x1(0) 65 m_x1 = interval.x1(); 73 return IntShapeInterval(m_x1 - dx, m_x2 + dx);
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
TimingFunction.h | 145 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); 149 double x1() const { return m_x1; } 159 , m_x1(x1) 167 double m_x1; member in class:WebCore::CubicBezierTimingFunction
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
Biquad.h | 109 double m_x1; // input delayed by 1 sample member in class:WebCore::FINAL
|
Biquad.cpp | 90 double x1 = m_x1; 117 m_x1 = DenormalDisabler::flushDenormalFloatToZero(x1); 205 m_x1 = m_x2 = m_y1 = m_y2 = 0;
|