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

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegCurvetoCubicSmooth.h 34 , m_x2(x2)
53 float x2() const { return m_x2; }
56 m_x2 = x2;
70 float m_x2; member in class:blink::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoCubic.h 36 , m_x2(x2)
69 float x2() const { return m_x2; }
72 m_x2 = x2;
88 float m_x2; member in class:blink::SVGPathSegCurvetoCubic
LinearGradientAttributes.h 30 , m_x2(SVGLength::create(LengthModeWidth))
37 m_x2->setValueAsString("100%", ASSERT_NO_EXCEPTION);
42 SVGLength* x2() const { return m_x2.get(); }
47 void setX2(PassRefPtr<SVGLength> value) { m_x2 = value; m_x2Set = true; }
59 RefPtr<SVGLength> m_x2; member in struct:blink::LinearGradientAttributes
SVGLineElement.h 38 SVGAnimatedLength* x2() const { return m_x2.get(); }
52 RefPtr<SVGAnimatedLength> m_x2; member in class:blink::FINAL
SVGLinearGradientElement.h 41 SVGAnimatedLength* x2() const { return m_x2.get(); }
57 RefPtr<SVGAnimatedLength> m_x2; member in class:blink::FINAL
SVGLineElement.cpp 34 , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
39 addToPropertyMap(m_x2);
96 || m_x2->currentValue()->isRelative()
SVGLinearGradientElement.cpp 39 , m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), AllowNegativeLengths))
43 m_x2->setDefaultValueAsString("100%");
47 addToPropertyMap(m_x2);
76 m_x2->setBaseValueAsString(value, parseError);
182 || m_x2->currentValue()->isRelative()
  /external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
ShapeInterval.h 43 , m_x2(-2)
52 , m_x2(x2)
57 bool isUndefined() const { return m_x2 < m_x1; }
59 T x2() const { return isUndefined() ? 0 : m_x2; }
60 T width() const { return isUndefined() ? 0 : m_x2 - m_x1; }
61 bool isEmpty() const { return isUndefined() ? true : m_x1 == m_x2; }
67 m_x2 = x2;
99 T m_x2; member in class:blink::ShapeInterval
RasterShape.cpp 47 int m_x2; member in class:blink::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/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 46 double x2() const { return m_x2; }
58 , m_x2(x2)
65 double m_x2; member in class:blink::CSSCubicBezierTimingFunctionValue
  /external/chromium_org/third_party/WebKit/Source/platform/animation/
TimingFunction.h 147 double x2() const { return m_x2; }
157 , m_x2(x2)
165 double m_x2; 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 110 double m_x2; // input delayed by 2 samples member in class:blink::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 694 milliseconds