Home
last modified time | relevance | path

Searched refs:m_y2 (Results 1 – 13 of 13) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGPathSegCurvetoCubicSmooth.h35 , m_y2(y2) in SVGPathSegCurvetoCubicSmooth()
60 float y2() const { return m_y2; } in y2()
63 m_y2 = y2; in setY2()
71 float m_y2; variable
DSVGPathSegCurvetoCubic.h37 , m_y2(y2) in SVGPathSegCurvetoCubic()
76 float y2() const { return m_y2; } in y2()
79 m_y2 = y2; in setY2()
89 float m_y2; variable
DLinearGradientAttributes.h31 , m_y2(SVGLength::create(LengthModeWidth)) in LinearGradientAttributes()
43 SVGLength* y2() const { return m_y2.get(); } in y2()
48 void setY2(PassRefPtr<SVGLength> value) { m_y2 = value; m_y2Set = true; } in setY2()
60 RefPtr<SVGLength> m_y2; member
DSVGLineElement.cpp35 …, m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), Allo… in SVGLineElement()
40 addToPropertyMap(m_y2); in SVGLineElement()
97 || m_y2->currentValue()->isRelative(); in selfHasRelativeLengths()
DSVGLinearGradientElement.cpp40 …, m_y2(SVGAnimatedLength::create(this, SVGNames::y2Attr, SVGLength::create(LengthModeHeight), Allo… in SVGLinearGradientElement()
48 addToPropertyMap(m_y2); in SVGLinearGradientElement()
78 m_y2->setBaseValueAsString(value, parseError); in parseAttribute()
183 || m_y2->currentValue()->isRelative(); in selfHasRelativeLengths()
DSVGLineElement.h39 SVGAnimatedLength* y2() const { return m_y2.get(); } in y2()
53 RefPtr<SVGAnimatedLength> m_y2; variable
DSVGLinearGradientElement.h42 SVGAnimatedLength* y2() const { return m_y2.get(); } in y2()
58 RefPtr<SVGAnimatedLength> m_y2; variable
/external/chromium_org/third_party/WebKit/Source/platform/animation/
DTimingFunction.cpp50 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); in evaluate()
60 if (0 <= m_y1 && m_y2 < 1 && 0 <= m_y2 && m_y2 <= 1) { in range()
64 double a = 3.0 * (m_y1 - m_y2) + 1.0; in range()
65 double b = 2.0 * (m_y2 - 2.0 * m_y1); in range()
93 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); in range()
DTimingFunction.h148 double y2() const { return m_y2; } in y2()
158 , m_y2(y2) in CubicBezierTimingFunction()
166 double m_y2; variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSTimingFunctionValue.cpp39 + String::number(m_y2) + ")"; in customCSSText()
44 return m_x1 == other.m_x1 && m_x2 == other.m_x2 && m_y1 == other.m_y1 && m_y2 == other.m_y2; in equals()
DCSSTimingFunctionValue.h47 double y2() const { return m_y2; } in y2()
59 , m_y2(y2) in CSSCubicBezierTimingFunctionValue()
66 double m_y2; variable
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DBiquad.h112 double m_y2; // output delayed by 2 samples variable
DBiquad.cpp93 double y2 = m_y2; in process()
120 m_y2 = DenormalDisabler::flushDenormalFloatToZero(y2); in process()
205 m_x1 = m_x2 = m_y1 = m_y2 = 0; in reset()