Home
last modified time | relevance | path

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

/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/
DShapeInterval.h42 : m_x1(-1) in ShapeInterval()
51 : m_x1(x1) in ShapeInterval()
57 bool isUndefined() const { return m_x2 < m_x1; } in isUndefined()
58 T x1() const { return isUndefined() ? 0 : m_x1; } in x1()
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()
66 m_x1 = x1; in set()
98 T m_x1;
DRasterShape.cpp46 int m_x1; member in blink::MarginIntervalGenerator
52 , m_x1(0) in MarginIntervalGenerator()
65 m_x1 = interval.x1(); in set()
73 return IntShapeInterval(m_x1 - dx, m_x2 + dx); in intervalAt()
/external/chromium_org/third_party/WebKit/Source/core/svg/
DSVGPathSegCurvetoQuadratic.h34 , m_x1(x1) in SVGPathSegCurvetoQuadratic()
53 float x1() const { return m_x1; } in x1()
56 m_x1 = x1; in setX1()
70 float m_x1; variable
DSVGPathSegCurvetoCubic.h34 , m_x1(x1) in SVGPathSegCurvetoCubic()
55 float x1() const { return m_x1; } in x1()
58 m_x1 = x1; in setX1()
86 float m_x1; variable
DLinearGradientAttributes.h28 : m_x1(SVGLength::create(LengthModeWidth)) in LinearGradientAttributes()
40 SVGLength* x1() const { return m_x1.get(); } in x1()
45 void setX1(PassRefPtr<SVGLength> value) { m_x1 = value; m_x1Set = true; } in setX1()
57 RefPtr<SVGLength> m_x1;
DSVGLineElement.cpp32 …, m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), Allow… in SVGLineElement()
37 addToPropertyMap(m_x1); in SVGLineElement()
94 return m_x1->currentValue()->isRelative() in selfHasRelativeLengths()
DSVGLinearGradientElement.cpp37 …, m_x1(SVGAnimatedLength::create(this, SVGNames::x1Attr, SVGLength::create(LengthModeWidth), Allow… in SVGLinearGradientElement()
45 addToPropertyMap(m_x1); in SVGLinearGradientElement()
72 m_x1->setBaseValueAsString(value, parseError); in parseAttribute()
180 return m_x1->currentValue()->isRelative() in selfHasRelativeLengths()
DSVGLineElement.h36 SVGAnimatedLength* x1() const { return m_x1.get(); } in x1()
50 RefPtr<SVGAnimatedLength> m_x1; variable
DSVGLinearGradientElement.h39 SVGAnimatedLength* x1() const { return m_x1.get(); } in x1()
55 RefPtr<SVGAnimatedLength> m_x1; variable
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSTimingFunctionValue.cpp36 + String::number(m_x1) + ", " 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.h44 double x1() const { return m_x1; } in x1()
56 , m_x1(x1) in CSSCubicBezierTimingFunctionValue()
63 double m_x1; variable
/external/chromium_org/third_party/WebKit/Source/platform/animation/
DTimingFunction.h145 double x1() const { return m_x1; } in x1()
155 , m_x1(x1) in CubicBezierTimingFunction()
163 double m_x1; 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.h109 double m_x1; // input delayed by 1 sample variable
DBiquad.cpp90 double x1 = m_x1; in process()
117 m_x1 = DenormalDisabler::flushDenormalFloatToZero(x1); in process()
205 m_x1 = m_x2 = m_y1 = m_y2 = 0; in reset()