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

1 2

  /external/webkit/Source/WebCore/page/
WebKitPoint.h 47 float y() const { return m_y; }
50 void setY(float y) { m_y = y; }
55 , m_y(y)
59 float m_x, m_y; member in class:WebCore::WebKitPoint
  /external/webkit/Source/WebCore/rendering/style/
StyleTransformData.h 48 Length m_y; member in class:WebCore::StyleTransformData
ShadowData.h 44 , m_y(0)
55 , m_y(y)
75 int y() const { return m_y; }
90 int m_y; member in class:WebCore::ShadowData
  /external/webkit/Source/WebCore/svg/
SVGPathSegLinetoVertical.h 33 , m_y(y)
37 float y() const { return m_y; }
40 m_y = y;
45 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
SVGPathSegCurvetoCubicSmooth.h 34 , m_y(y)
47 float y() const { return m_y; }
50 m_y = y;
70 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 34 , m_y(y)
47 float y() const { return m_y; }
50 m_y = y;
70 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGPathSegWithContext.h 86 float y() const { return m_y; }
89 m_y = y;
97 , m_y(y)
103 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
SVGPathSegArc.h 34 , m_y(y)
50 float y() const { return m_y; }
53 m_y = y;
94 float m_y; member in class:WebCore::SVGPathSegArc
SVGPathSegCurvetoCubic.h 34 , m_y(y)
49 float y() const { return m_y; }
52 m_y = y;
86 float m_y; member in class:WebCore::SVGPathSegCurvetoCubic
PatternAttributes.h 34 , m_y()
56 SVGLength y() const { return m_y; }
74 m_y = value;
140 SVGLength m_y; member in struct:WebCore::PatternAttributes
  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.h 54 float m_y; member in class:AnimationThread
  /external/webkit/Source/WebCore/platform/graphics/transforms/
RotateTransformOperation.h 45 double y() const { return m_y; }
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);
73 , m_y(y)
82 double m_y; member in class:WebCore::RotateTransformOperation
ScaleTransformOperation.h 45 double y() const { return m_y; }
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);
72 , m_y(sy)
80 double m_y; member in class:WebCore::ScaleTransformOperation
TranslateTransformOperation.h 46 double y(const IntSize& borderBoxSize) const { return m_y.calcFloatValue(borderBoxSize.height()); }
50 Length y() const { return m_y; }
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;
77 , m_y(ty)
85 Length m_y; member in class:WebCore::TranslateTransformOperation
  /frameworks/av/libvideoeditor/vss/common/inc/
M4AIR_API.h 62 M4OSA_UInt32 m_y; /**< Y coordinate */ member in struct:__anon17314
  /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) { }
79 float y() const { return m_y; }
82 void setY(float y) { m_y = y; }
86 m_y = y;
91 m_y += dy;
96 m_y *= sy;
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 34 , m_y(0)
41 , m_y(y)
48 , m_y(p.y())
55 , m_y(p.y())
63 float y() const { return m_y; }
64 void setY(float y) { m_y = y; }
71 m_y = y;
77 m_y += dy;
83 m_y *= sy;
89 return !m_x && !m_y && !m_z
128 float m_y; 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()) { }
87 int y() const { return m_y; }
90 void setY(int y) { m_y = y; }
93 void move(int dx, int dy) { m_x += dx; m_y += dy; }
98 m_y > other.m_y ? m_y : other.m_y);
163 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
  /external/webkit/Source/WebCore/rendering/svg/
SVGTextLayoutEngine.h 90 float m_y; member in class:WebCore::SVGTextLayoutEngine
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/table/
PropertyTableTooltipHelper.java 78 private int m_y; field in class:PropertyTableTooltipHelper
96 m_y = y;
160 tooltipLocation = m_table.toDisplay(new Point(startX, m_y));
162 tooltipLocation = m_table.toDisplay(new Point(startX, m_y + m_rowHeight));
  /external/webkit/Source/WebCore/dom/
DeviceMotionData.h 46 double y() const { return m_y; }
53 double m_y; member in class:WebCore::DeviceMotionData::Acceleration
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
Tile.h 127 int y() const { return m_y; }
149 int m_y; member in class:WebCore::Tile
  /external/webkit/Tools/DumpRenderTree/chromium/
AccessibilityUIElement.h 97 CppVariant m_y; member in class:AccessibilityUIElement
  /frameworks/base/media/jni/mediaeditor/
VideoBrowserInternal.h 107 M4OSA_UInt32 m_y ; member in struct:__anon18283
  /external/webkit/Source/WebCore/platform/graphics/wince/
PlatformPathWinCE.h 34 float m_y; member in struct:WebCore::PathPoint
36 const float& y() const { return m_y; }
40 m_y = y;
42 operator FloatPoint() const { return FloatPoint(m_x, m_y); }
46 m_y += offset.height();
51 m_y = p.y();
54 void clear() { m_x = m_y = 0; }

Completed in 658 milliseconds

1 2