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

  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSTimingFunctionValue.cpp 38 + String::number(m_x2) + ", "
44 return m_x1 == other.m_x1 && m_x2 == other.m_x2 && m_y1 == other.m_y1 && m_y2 == other.m_y2;
CSSTimingFunctionValue.h 45 double x2() const { return m_x2; }
55 , m_x2(x2)
62 double m_x2; member in class:WebCore::CSSCubicBezierTimingFunctionValue
  /external/chromium_org/third_party/WebKit/Source/core/svg/
LinearGradientAttributes.h 30 , m_x2(LengthModeWidth, "100%")
41 SVGLength x2() const { return m_x2; }
46 void setX2(const SVGLength& value) { m_x2 = value; m_x2Set = true; }
58 SVGLength m_x2; member in struct:WebCore::LinearGradientAttributes
SVGPathSegCurvetoCubic.h 36 , m_x2(x2)
69 float x2() const { return m_x2; }
72 m_x2 = x2;
88 float m_x2; member in class:WebCore::SVGPathSegCurvetoCubic
SVGPathSegCurvetoCubicSmooth.h 34 , m_x2(x2)
53 float x2() const { return m_x2; }
56 m_x2 = x2;
70 float m_x2; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGLineElement.cpp 51 , m_x2(LengthModeWidth)
SVGLinearGradientElement.cpp 54 , m_x2(LengthModeWidth, "100%")
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 43 , m_x2(x2)
49 T x2() const { return m_x2; }
50 T width() const { return m_x2 - m_x1; }
51 bool isEmpty() const { return m_x1 == m_x2; }
55 ASSERT(m_x2 >= x1);
62 m_x2 = x2;
69 m_x2 = x2;
212 T m_x2; member in class:WebCore::ShapeInterval
RasterShape.cpp 47 int m_x2; member in class:WebCore::MarginIntervalGenerator
53 , m_x2(0)
66 m_x2 = interval.x2();
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));
151 double x2() const { return m_x2; }
161 , m_x2(x2)
169 double m_x2; member in class:WebCore::CubicBezierTimingFunction
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Biquad.h 110 double m_x2; // input delayed by 2 samples member in class:WebCore::FINAL
Biquad.cpp 91 double x2 = m_x2;
118 m_x2 = DenormalDisabler::flushDenormalFloatToZero(x2);
205 m_x1 = m_x2 = m_y1 = m_y2 = 0;

Completed in 68 milliseconds