Home
last modified time | relevance | path

Searched refs:m_x2 (Results 1 – 15 of 15) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeInterval.h43 , 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
DRasterShape.cpp47 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/
DLinearGradientAttributes.h30 , 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
DSVGPathSegCurvetoCubicSmooth.h34 , 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
DSVGPathSegCurvetoCubic.h36 , 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
DSVGLinearGradientElement.cpp39 …, 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()
DSVGLineElement.cpp34 …, 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()
DSVGLineElement.h38 SVGAnimatedLength* x2() const { return m_x2.get(); } in x2()
52 RefPtr<SVGAnimatedLength> m_x2; variable
DSVGLinearGradientElement.h41 SVGAnimatedLength* x2() const { return m_x2.get(); } in x2()
57 RefPtr<SVGAnimatedLength> m_x2; variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSTimingFunctionValue.cpp38 + 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()
DCSSTimingFunctionValue.h46 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/
DTimingFunction.h147 double x2() const { return m_x2; } in x2()
157 , m_x2(x2) in CubicBezierTimingFunction()
165 double m_x2; variable
DTimingFunction.cpp50 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/
DBiquad.h110 double m_x2; // input delayed by 2 samples variable
DBiquad.cpp91 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()