Searched refs:m_y2 (Results 1 – 13 of 13) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | SVGPathSegCurvetoCubicSmooth.h | 35 , 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
|
D | SVGPathSegCurvetoCubic.h | 37 , 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
|
D | LinearGradientAttributes.h | 31 , 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
|
D | SVGLineElement.cpp | 35 …, 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()
|
D | SVGLinearGradientElement.cpp | 40 …, 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()
|
D | SVGLineElement.h | 39 SVGAnimatedLength* y2() const { return m_y2.get(); } in y2() 53 RefPtr<SVGAnimatedLength> m_y2; variable
|
D | SVGLinearGradientElement.h | 42 SVGAnimatedLength* y2() const { return m_y2.get(); } in y2() 58 RefPtr<SVGAnimatedLength> m_y2; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/animation/ |
D | TimingFunction.cpp | 50 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()
|
D | TimingFunction.h | 148 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/ |
D | CSSTimingFunctionValue.cpp | 39 + 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()
|
D | CSSTimingFunctionValue.h | 47 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/ |
D | Biquad.h | 112 double m_y2; // output delayed by 2 samples variable
|
D | Biquad.cpp | 93 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()
|