/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeInterval.h | 43 , m_x2(-2) in ShapeInterval() 52 , m_x2(x2) in ShapeInterval() 57 bool isUndefined() const { return m_x2 < m_x1; } in isUndefined() 59 T x2() const { return isUndefined() ? 0 : m_x2; } in x2() 60 T width() const { return isUndefined() ? 0 : m_x2 - m_x1; } in width() 61 bool isEmpty() const { return isUndefined() ? true : m_x1 == m_x2; } in isEmpty() 67 m_x2 = x2; in set() 99 T m_x2; variable
|
D | RasterShape.cpp | 47 int m_x2; member in blink::MarginIntervalGenerator 53 , m_x2(0) in MarginIntervalGenerator() 66 m_x2 = interval.x2(); in set() 73 return IntShapeInterval(m_x1 - dx, m_x2 + dx); in intervalAt()
|
/external/chromium_org/third_party/WebKit/Source/core/svg/ |
D | LinearGradientAttributes.h | 30 , m_x2(SVGLength::create(LengthModeWidth)) in LinearGradientAttributes() 37 m_x2->setValueAsString("100%", ASSERT_NO_EXCEPTION); in LinearGradientAttributes() 42 SVGLength* x2() const { return m_x2.get(); } in x2() 47 void setX2(PassRefPtr<SVGLength> value) { m_x2 = value; m_x2Set = true; } in setX2() 59 RefPtr<SVGLength> m_x2; member
|
D | SVGPathSegCurvetoCubicSmooth.h | 34 , m_x2(x2) in SVGPathSegCurvetoCubicSmooth() 53 float x2() const { return m_x2; } in x2() 56 m_x2 = x2; in setX2() 70 float m_x2; variable
|
D | SVGPathSegCurvetoCubic.h | 36 , m_x2(x2) in SVGPathSegCurvetoCubic() 69 float x2() const { return m_x2; } in x2() 72 m_x2 = x2; in setX2() 88 float m_x2; variable
|
D | SVGLinearGradientElement.cpp | 39 …, m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), Allow… in SVGLinearGradientElement() 43 m_x2->setDefaultValueAsString("100%"); in SVGLinearGradientElement() 47 addToPropertyMap(m_x2); in SVGLinearGradientElement() 76 m_x2->setBaseValueAsString(value, parseError); in parseAttribute() 182 || m_x2->currentValue()->isRelative() in selfHasRelativeLengths()
|
D | SVGLineElement.cpp | 34 …, m_x2(SVGAnimatedLength::create(this, SVGNames::x2Attr, SVGLength::create(LengthModeWidth), Allow… in SVGLineElement() 39 addToPropertyMap(m_x2); in SVGLineElement() 96 || m_x2->currentValue()->isRelative() in selfHasRelativeLengths()
|
D | SVGLineElement.h | 38 SVGAnimatedLength* x2() const { return m_x2.get(); } in x2() 52 RefPtr<SVGAnimatedLength> m_x2; variable
|
D | SVGLinearGradientElement.h | 41 SVGAnimatedLength* x2() const { return m_x2.get(); } in x2() 57 RefPtr<SVGAnimatedLength> m_x2; variable
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSTimingFunctionValue.cpp | 38 + String::number(m_x2) + ", " 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 | 46 double x2() const { return m_x2; } in x2() 58 , m_x2(x2) in CSSCubicBezierTimingFunctionValue() 65 double m_x2; variable
|
/external/chromium_org/third_party/WebKit/Source/platform/animation/ |
D | TimingFunction.h | 147 double x2() const { return m_x2; } in x2() 157 , m_x2(x2) in CubicBezierTimingFunction() 165 double m_x2; variable
|
D | TimingFunction.cpp | 50 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); in evaluate() 93 m_bezier = adoptPtr(new UnitBezier(m_x1, m_y1, m_x2, m_y2)); in range()
|
/external/chromium_org/third_party/WebKit/Source/platform/audio/ |
D | Biquad.h | 110 double m_x2; // input delayed by 2 samples variable
|
D | Biquad.cpp | 91 double x2 = m_x2; in process() 118 m_x2 = DenormalDisabler::flushDenormalFloatToZero(x2); in process() 205 m_x1 = m_x2 = m_y1 = m_y2 = 0; in reset()
|