Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGPathSegCurvetoQuadratic.h35 , m_y1(y1) in SVGPathSegCurvetoQuadratic()
60 float y1() const { return m_y1; } in y1()
63 m_y1 = y1; in setY1()
71 float m_y1; variable
DSVGPathSegCurvetoCubic.h35 , m_y1(y1) in SVGPathSegCurvetoCubic()
62 float y1() const { return m_y1; } in y1()
65 m_y1 = y1; in setY1()
87 float m_y1; variable
DLinearGradientAttributes.h29 , m_y1(SVGLength::create(LengthModeWidth)) in LinearGradientAttributes()
41 SVGLength* y1() const { return m_y1.get(); } in y1()
46 void setY1(PassRefPtr<SVGLength> value) { m_y1 = value; m_y1Set = true; } in setY1()
58 RefPtr<SVGLength> m_y1; member
DSVGLineElement.cpp33 …, m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), Allo… in SVGLineElement()
38 addToPropertyMap(m_y1); in SVGLineElement()
95 || m_y1->currentValue()->isRelative() in selfHasRelativeLengths()
DSVGLinearGradientElement.cpp38 …, m_y1(SVGAnimatedLength::create(this, SVGNames::y1Attr, SVGLength::create(LengthModeHeight), Allo… in SVGLinearGradientElement()
46 addToPropertyMap(m_y1); in SVGLinearGradientElement()
74 m_y1->setBaseValueAsString(value, parseError); in parseAttribute()
181 || m_y1->currentValue()->isRelative() in selfHasRelativeLengths()
DSVGLineElement.h37 SVGAnimatedLength* y1() const { return m_y1.get(); } in y1()
51 RefPtr<SVGAnimatedLength> m_y1; variable
DSVGLinearGradientElement.h40 SVGAnimatedLength* y1() const { return m_y1.get(); } in y1()
56 RefPtr<SVGAnimatedLength> m_y1; 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()
66 double c = m_y1; in range()
93 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); in range()
DTimingFunction.h146 double y1() const { return m_y1; } in y1()
156 , m_y1(y1) in CubicBezierTimingFunction()
164 double m_y1; variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSTimingFunctionValue.cpp37 + String::number(m_y1) + ", " 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.h45 double y1() const { return m_y1; } in y1()
57 , m_y1(y1) in CSSCubicBezierTimingFunctionValue()
64 double m_y1; variable
/external/chromium_org/third_party/WebKit/Source/platform/audio/
DBiquad.h111 double m_y1; // output delayed by 1 sample variable
DBiquad.cpp92 double y1 = m_y1; in process()
119 m_y1 = DenormalDisabler::flushDenormalFloatToZero(y1); in process()
205 m_x1 = m_x2 = m_y1 = m_y2 = 0; in reset()