/external/chromium_org/third_party/WebKit/Source/core/rendering/shapes/ |
D | ShapeInterval.h | 42 : 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;
|
D | RasterShape.cpp | 46 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/ |
D | SVGPathSegCurvetoQuadratic.h | 34 , 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
|
D | SVGPathSegCurvetoCubic.h | 34 , 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
|
D | LinearGradientAttributes.h | 28 : 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;
|
D | SVGLineElement.cpp | 32 …, 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()
|
D | SVGLinearGradientElement.cpp | 37 …, 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()
|
D | SVGLineElement.h | 36 SVGAnimatedLength* x1() const { return m_x1.get(); } in x1() 50 RefPtr<SVGAnimatedLength> m_x1; variable
|
D | SVGLinearGradientElement.h | 39 SVGAnimatedLength* x1() const { return m_x1.get(); } in x1() 55 RefPtr<SVGAnimatedLength> m_x1; variable
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSTimingFunctionValue.cpp | 36 + 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()
|
D | CSSTimingFunctionValue.h | 44 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/ |
D | TimingFunction.h | 145 double x1() const { return m_x1; } in x1() 155 , m_x1(x1) in CubicBezierTimingFunction() 163 double m_x1; 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 | 109 double m_x1; // input delayed by 1 sample variable
|
D | Biquad.cpp | 90 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()
|