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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoQuadratic.h 34 , m_x1(x1)
53 float x1() const { return m_x1; }
56 m_x1 = x1;
70 float m_x1; member in class:blink::SVGPathSegCurvetoQuadratic
SVGPathSegCurvetoCubic.h 34 , m_x1(x1)
55 float x1() const { return m_x1; }
58 m_x1 = x1;
86 float m_x1; member in class:blink::SVGPathSegCurvetoCubic
SVGLineElement.h 36 SVGAnimatedLength* x1() const { return m_x1.get(); }
50 RefPtr<SVGAnimatedLength> m_x1; member in class:blink::FINAL
LinearGradientAttributes.h 28 : m_x1(SVGLength::create(LengthModeWidth))
40 SVGLength* x1() const { return m_x1.get(); }
45 void setX1(PassRefPtr<SVGLength> value) { m_x1 = value; m_x1Set = true; }
57 RefPtr<SVGLength> m_x1; member in struct:blink::LinearGradientAttributes
SVGLinearGradientElement.h 39 SVGAnimatedLength* x1() const { return m_x1.get(); }
55 RefPtr<SVGAnimatedLength> m_x1; member in class:blink::FINAL
SVGLineElement.cpp 32 , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
37 addToPropertyMap(m_x1);
94 return m_x1->currentValue()->isRelative()
SVGLinearGradientElement.cpp 37 , m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
45 addToPropertyMap(m_x1);
72 m_x1->setBaseValueAsString(value, parseError);
180 return m_x1->currentValue()->isRelative()
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 42 : m_x1(-1)
45 // The initial values of m_x1,x2 don't matter (unless you're looking
51 : m_x1(x1)
57 bool isUndefined() const { return m_x2 < m_x1; }
58 T x1() const { return isUndefined() ? 0 : m_x1; }
60 T width() const { return isUndefined() ? 0 : m_x2 - m_x1; }
61 bool isEmpty() const { return isUndefined() ? true : m_x1 == m_x2; }
66 m_x1 = x1;
98 T m_x1; member in class:blink::ShapeInterval
RasterShape.cpp 46 int m_x1; member in class:blink::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/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 44 double x1() const { return m_x1; }
56 , m_x1(x1)
63 double m_x1; member in class:blink::CSSCubicBezierTimingFunctionValue
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 145 double x1() const { return m_x1; }
155 , m_x1(x1)
163 double m_x1; member in class:blink::FINAL
TimingFunction.cpp 50 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2));
93 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2));
  /external/chromium_org/third_party/WebKit/Source/platform/audio/
Biquad.h 109 double m_x1; // input delayed by 1 sample member in class:blink::FINAL
Biquad.cpp 90 double x1 = m_x1;
117 m_x1 = DenormalDisabler::flushDenormalFloatToZero(x1);
205 m_x1 = m_x2 = m_y1 = m_y2 = 0;

Completed in 163 milliseconds