/external/chromium_org/third_party/WebKit/Source/core/css/ |
CSSTimingFunctionValue.cpp | 39 + String::number(m_y2) + ")"; 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 y2() const { return m_y2; } 56 , m_y2(y2) 63 double m_y2; member in class:WebCore::CSSCubicBezierTimingFunctionValue
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
LinearGradientAttributes.h | 31 , m_y2() 42 SVGLength y2() const { return m_y2; } 47 void setY2(const SVGLength& value) { m_y2 = value; m_y2Set = true; } 59 SVGLength m_y2; member in struct:WebCore::LinearGradientAttributes
|
SVGPathSegCurvetoCubic.h | 37 , m_y2(y2) 76 float y2() const { return m_y2; } 79 m_y2 = y2; 89 float m_y2; member in class:WebCore::SVGPathSegCurvetoCubic
|
SVGPathSegCurvetoCubicSmooth.h | 35 , m_y2(y2) 60 float y2() const { return m_y2; } 63 m_y2 = y2; 71 float m_y2; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
|
SVGLineElement.cpp | 52 , m_y2(LengthModeHeight)
|
SVGLinearGradientElement.cpp | 55 , m_y2(LengthModeHeight)
|
/external/chromium_org/third_party/WebKit/Source/core/platform/animation/ |
TimingFunction.h | 145 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); 152 double y2() const { return m_y2; } 162 , m_y2(y2) 170 double m_y2; member in class:WebCore::CubicBezierTimingFunction
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
Biquad.h | 112 double m_y2; // output delayed by 2 samples member in class:WebCore::FINAL
|
Biquad.cpp | 93 double y2 = m_y2; 120 m_y2 = DenormalDisabler::flushDenormalFloatToZero(y2); 205 m_x1 = m_x2 = m_y1 = m_y2 = 0;
|