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

1 2

  /external/webkit/Source/WebCore/page/
WebKitPoint.h 46 float x() const { return m_x; }
49 void setX(float x) { m_x = x; }
54 : m_x(x)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
  /external/webkit/Source/WebCore/rendering/style/
StyleTransformData.h 47 Length m_x; member in class:WebCore::StyleTransformData
ShadowData.h 43 : m_x(0)
54 : m_x(x)
74 int x() const { return m_x; }
89 int m_x; member in class:WebCore::ShadowData
  /external/webkit/Source/WebCore/svg/
SVGPathSegLinetoHorizontal.h 33 , m_x(x)
37 float x() const { return m_x; }
40 m_x = x;
45 float m_x; member in class:WebCore::SVGPathSegLinetoHorizontal
SVGPathSegCurvetoCubicSmooth.h 33 , m_x(x)
40 float x() const { return m_x; }
43 m_x = x;
69 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 33 , m_x(x)
40 float x() const { return m_x; }
43 m_x = x;
69 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGPathSegWithContext.h 79 float x() const { return m_x; }
82 m_x = x;
96 , m_x(x)
102 float m_x; member in class:WebCore::SVGPathSegSingleCoordinate
SVGPathSegArc.h 33 , m_x(x)
43 float x() const { return m_x; }
46 m_x = x;
93 float m_x; member in class:WebCore::SVGPathSegArc
SVGPathSegCurvetoCubic.h 33 , m_x(x)
42 float x() const { return m_x; }
45 m_x = x;
85 float m_x; member in class:WebCore::SVGPathSegCurvetoCubic
PatternAttributes.h 33 : m_x()
55 SVGLength x() const { return m_x; }
68 m_x = value;
139 SVGLength m_x; member in struct:WebCore::PatternAttributes
  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.h 53 float m_x; member in class:AnimationThread
  /external/webkit/Source/WebCore/platform/graphics/transforms/
RotateTransformOperation.h 44 double x() const { return m_x; }
60 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
65 transform.rotate3d(m_x, m_y, m_z, m_angle);
72 : m_x(x)
81 double m_x; member in class:WebCore::RotateTransformOperation
ScaleTransformOperation.h 44 double x() const { return m_x; }
49 virtual bool isIdentity() const { return m_x == 1 && m_y == 1 && m_z == 1; }
59 return m_x == s->m_x && m_y == s->m_y && m_z == s->m_z;
64 transform.scale3d(m_x, m_y, m_z);
71 : m_x(sx)
79 double m_x; member in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.h 45 double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); }
49 Length x() const { return m_x; }
54 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
64 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
70 return m_x.type() == Percent || m_y.type() == Percent;
76 : m_x(tx)
84 Length m_x; member in class:WebCore::TranslateTransformOperation
  /frameworks/av/libvideoeditor/vss/common/inc/
M4AIR_API.h 61 M4OSA_UInt32 m_x; /**< X coordinate */ member in struct:__anon15926
  /external/webkit/Source/WebCore/platform/graphics/
FloatPoint.h 69 FloatPoint() : m_x(0), m_y(0) { }
70 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
78 float x() const { return m_x; }
81 void setX(float x) { m_x = x; }
85 m_x = x;
90 m_x += dx;
95 m_x *= sx;
103 return m_x * a.x() + m_y * a.y();
109 return m_x * m_x + m_y * m_y
142 float m_x, m_y; member in class:WebCore::FloatPoint
    [all...]
FloatPoint3D.h 33 : m_x(0)
40 : m_x(x)
47 : m_x(p.x())
54 : m_x(p.x())
60 float x() const { return m_x; }
61 void setX(float x) { m_x = x; }
70 m_x = x;
76 m_x += dx;
82 m_x *= sx;
89 return !m_x && !m_y && !m_z
127 float m_x; member in class:WebCore::FloatPoint3D
    [all...]
IntPoint.h 80 IntPoint() : m_x(0), m_y(0) { }
81 IntPoint(int x, int y) : m_x(x), m_y(y) { }
82 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
86 int x() const { return m_x; }
89 void setX(int x) { m_x = x; }
93 void move(int dx, int dy) { m_x += dx; m_y += dy; }
97 return IntPoint(m_x > other.m_x ? m_x : other.m_x,
163 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.h 89 float m_x; member in class:WebCore::SVGTextLayoutEngine
  /external/webkit/Source/WebCore/dom/
DeviceMotionData.h 45 double x() const { return m_x; }
52 double m_x; member in class:WebCore::DeviceMotionData::Acceleration
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Tile.h 126 int x() const { return m_x; }
148 int m_x; member in class:WebCore::Tile
  /external/webkit/Tools/DumpRenderTree/chromium/
AccessibilityUIElement.h 96 CppVariant m_x; member in class:AccessibilityUIElement
  /frameworks/base/media/jni/mediaeditor/
VideoBrowserInternal.h 106 M4OSA_UInt32 m_x ; member in struct:__anon16920
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.h 33 float m_x; member in struct:WebCore::PathPoint
35 const float& x() const { return m_x; }
39 m_x = x;
42 operator FloatPoint() const { return FloatPoint(m_x, m_y); }
45 m_x += offset.width();
50 m_x = p.x();
54 void clear() { m_x = m_y = 0; }
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 102 int m_x; member in class:FrameBuffer

Completed in 95 milliseconds

1 2