HomeSort by relevance Sort by last modified time
    Searched defs:m_x (Results 1 - 25 of 44) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoHorizontal.h 32 , m_x(x)
36 float x() const { return m_x; }
39 m_x = x;
44 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
SVGCursorElement.h 48 SVGAnimatedLength* x() const { return m_x.get(); }
64 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGPathSegWithContext.h 39 float x() const { return m_x; }
42 m_x = x;
56 , m_x(x)
62 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
SVGFilterPrimitiveStandardAttributes.h 46 SVGAnimatedLength* x() const { return m_x.get(); }
74 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::SVGFilterPrimitiveStandardAttributes
SVGForeignObjectElement.h 35 SVGAnimatedLength* x() const { return m_x.get(); }
54 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGGlyphRefElement.h 41 float x() const { return m_x; }
59 float m_x; member in class:WebCore::FINAL
SVGImageElement.h 42 SVGAnimatedLength* x() const { return m_x.get(); }
72 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGMaskElement.h 38 SVGAnimatedLength* x() const { return m_x.get(); }
60 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGPathSegCurvetoCubicSmooth.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 32 , m_x(x)
39 float x() const { return m_x; }
42 m_x = x;
68 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGRectElement.h 35 SVGAnimatedLength* x() const { return m_x.get(); }
53 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGTextPositioningElement.h 35 SVGAnimatedLengthList* x() { return m_x.get(); }
49 RefPtr<SVGAnimatedLengthList> m_x; member in class:WebCore::SVGTextPositioningElement
SVGFilterElement.h 48 SVGAnimatedLength* x() const { return m_x.get(); }
71 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGPatternElement.h 50 SVGAnimatedLength* x() const { return m_x.get(); }
76 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGUseElement.h 46 SVGAnimatedLength* x() const { return m_x.get(); }
97 RefPtr<SVGAnimatedLength> m_x; member in class:WebCore::FINAL
SVGFELightElement.h 43 SVGAnimatedNumber* x() { return m_x.get(); }
44 const SVGAnimatedNumber* x() const { return m_x.get(); }
73 RefPtr<SVGAnimatedNumber> m_x; member in class:WebCore::SVGFELightElement
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleTransformData.h 47 Length m_x; member in class:WebCore::StyleTransformData
  /external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableLengthPoint.h 45 const AnimatableValue* x() const { return m_x.get(); }
55 : m_x(x)
62 RefPtrWillBeMember<AnimatableValue> m_x; member in class:WebCore::FINAL
AnimatableLengthPoint3D.h 45 const AnimatableValue* x() const { return m_x.get(); }
56 : m_x(x)
64 RefPtrWillBeMember<AnimatableValue> m_x; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/core/frame/
DOMPoint.h 47 float x() const { return m_x; }
50 void setX(float x) { m_x = x; }
57 : m_x(x)
63 float m_x; member in class:WebCore::FINAL
  /external/chromium_org/third_party/WebKit/Source/platform/
LengthPoint.h 44 : m_x(x)
49 bool operator==(const LengthPoint& o) const { return m_x == o.m_x && m_y == o.m_y; }
50 bool operator!=(const LengthPoint& o) const { return m_x != o.m_x || m_y != o.m_y; }
52 void setX(const Length& x) { m_x = x; }
53 const Length& x() const { return m_x; }
59 Length m_x; member in struct:WebCore::LengthPoint
  /external/chromium_org/third_party/WebKit/Source/platform/transforms/
RotateTransformOperation.h 44 double x() const { return m_x; }
63 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
68 transform.rotate3d(m_x, m_y, m_z, m_angle);
74 : m_x(x)
83 double m_x; member in class:WebCore::RotateTransformOperation
ScaleTransformOperation.h 44 double x() const { return m_x; }
51 virtual bool isIdentity() const OVERRIDE { return m_x == 1 && m_y == 1 && m_z == 1; }
60 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
65 transform.scale3d(m_x, m_y, m_z);
71 : m_x(sx)
79 double m_x; member in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.h 48 double x(const FloatSize& borderBoxSize) const { return floatValueForLength(m_x, borderBoxSize.width()); }
51 Length x() const { return m_x; }
56 virtual bool isIdentity() const OVERRIDE { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !m_z; }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
77 return m_x.isPercent() || m_y.isPercent();
81 : m_x(tx)
89 Length m_x; member in class:WebCore::TranslateTransformOperation
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngine.h 89 float m_x; member in class:WebCore::SVGTextLayoutEngine

Completed in 929 milliseconds

1 2