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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGPathSegLinetoVertical.h 32 , m_y(y)
36 float y() const { return m_y; }
39 m_y = y;
44 float m_y; member in class:WebCore::SVGPathSegLinetoVertical
SVGGlyphRefElement.h 42 float y() const { return m_y; }
62 float m_y; member in class:WebCore::FINAL
SVGPathSegCurvetoCubicSmooth.h 33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 33 , m_y(y)
46 float y() const { return m_y; }
49 m_y = y;
69 float m_y; member in class:WebCore::SVGPathSegCurvetoQuadratic
SVGPathSegWithContext.h 85 float y() const { return m_y; }
88 m_y = y;
96 , m_y(y)
102 float m_y; member in class:WebCore::SVGPathSegSingleCoordinate
SVGPathSegArc.h 33 , m_y(y)
49 float y() const { return m_y; }
52 m_y = y;
93 float m_y; member in class:WebCore::SVGPathSegArc
SVGPathSegCurvetoCubic.h 33 , m_y(y)
48 float y() const { return m_y; }
51 m_y = y;
85 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
  /external/chromium_org/third_party/WebKit/Source/core/page/
DOMPoint.h 47 float y() const { return m_y; }
50 void setY(float y) { m_y = y; }
55 , m_y(y)
61 float m_y; member in class:WebCore::DOMPoint
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
StyleTransformData.h 48 Length m_y; member in class:WebCore::StyleTransformData
BasicShapes.h 72 Length y() const { return m_y; }
79 void setY(Length y) { m_y = y; }
100 Length m_y; member in class:WebCore::BasicShapeRectangle
  /external/chromium_org/third_party/WebKit/Source/core/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 47 double y(const FloatSize& borderBoxSize) const { return floatValueForLength(m_y, borderBoxSize.height()); }
51 Length y() const { return m_y; }
55 virtual bool isIdentity() const { return !floatValueForLength(m_x, 1) && !floatValueForLength(m_y, 1) && !floatValueForLength(m_z, 1); }
65 return m_x == t->m_x && m_y == t->m_y && m_z == t->m_z;
71 return m_x.type() == Percent || m_y.type() == Percent;
78 , m_y(ty)
86 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:__anon30956
  /external/chromium_org/third_party/WebKit/Source/core/platform/graphics/
IntPoint.h 47 IntPoint() : m_x(0), m_y(0) { }
48 IntPoint(int x, int y) : m_x(x), m_y(y) { }
49 explicit IntPoint(const IntSize& size) : m_x(size.width()), m_y(size.height()) { }
54 int y() const { return m_y; }
57 void setY(int y) { m_y = y; }
61 void move(int dx, int dy) { m_x += dx; m_y += dy; }
65 m_y = lroundf(static_cast<float>(m_y * sy));
71 m_y > other.m_y ? m_y : other.m_y)
103 int m_x, m_y; member in class:WebCore::IntPoint
    [all...]
FloatPoint.h 57 FloatPoint() : m_x(0), m_y(0) { }
58 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
61 explicit FloatPoint(const FloatSize& size) : m_x(size.width()), m_y(size.height()) { }
68 float y() const { return m_y; }
71 void setY(float y) { m_y = y; }
75 m_y = y;
80 m_y += dy;
85 m_y += a.height();
91 m_y += a.height();
96 m_y += a.y()
149 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...]
LayoutPoint.h 42 LayoutPoint() : m_x(0), m_y(0) { }
43 LayoutPoint(LayoutUnit x, LayoutUnit y) : m_x(x), m_y(y) { }
44 LayoutPoint(const IntPoint& point) : m_x(point.x()), m_y(point.y()) { }
45 explicit LayoutPoint(const FloatPoint& size) : m_x(size.x()), m_y(size.y()) { }
46 explicit LayoutPoint(const LayoutSize& size) : m_x(size.width()), m_y(size.height()) { }
51 LayoutUnit y() const { return m_y; }
54 void setY(LayoutUnit y) { m_y = y; }
58 void move(LayoutUnit dx, LayoutUnit dy) { m_x += dx; m_y += dy; }
62 m_y *= sy;
67 return LayoutPoint(std::max(m_x, other.m_x), std::max(m_y, other.m_y))
86 LayoutUnit m_x, m_y; member in class:WebCore::LayoutPoint
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextLayoutEngine.h 93 float m_y; member in class:WebCore::SVGTextLayoutEngine
  /external/chromium_org/third_party/WebKit/Source/modules/device_orientation/
DeviceMotionData.h 50 double y() const { return m_y; }
57 double m_y; member in class:WebCore::DeviceMotionData::Acceleration
  /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));
  /frameworks/base/media/jni/mediaeditor/
VideoBrowserInternal.h 107 M4OSA_UInt32 m_y ; member in struct:__anon31964
  /sdk/emulator/opengl/host/libs/libOpenglRender/
FrameBuffer.h 111 int m_y; member in class:FrameBuffer
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSBasicShapes.h 70 CSSPrimitiveValue* y() const { return m_y.get(); }
77 void setY(PassRefPtr<CSSPrimitiveValue> y) { m_y = y; }
93 RefPtr<CSSPrimitiveValue> m_y; member in class:WebCore::CSSBasicShapeRectangle

Completed in 492 milliseconds

1 2