HomeSort by relevance Sort by last modified time
    Searched refs:m_x (Results 26 - 50 of 72) sorted by null

12 3

  /external/webkit/WebCore/platform/graphics/transforms/
RotateTransformOperation.h 57 return m_x == r->m_x && m_y == r->m_y && m_z == r->m_z && m_angle == r->m_angle;
62 transform.rotate3d(m_x, m_y, m_z, m_angle);
69 : m_x(x)
78 double m_x; member in class:WebCore::RotateTransformOperation
  /external/webkit/WebCore/svg/
SVGPathSegCurvetoCubicSmooth.h 33 : m_x(x), m_y(y), m_x2(x2), m_y2(y2) { }
35 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg", m_x2, m_y2, m_x, m_y); }
37 void setX(float x) { m_x = x; }
38 float x() const { return m_x; }
50 float m_x; member in class:WebCore::SVGPathSegCurvetoCubicSmooth
SVGPathSegCurvetoQuadratic.h 33 : SVGPathSeg(), m_x(x), m_y(y), m_x1(x1), m_y1(y1) {}
35 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg", m_x1, m_y1, m_x, m_y); }
37 void setX(float x) { m_x = x; }
38 float x() const { return m_x; }
50 float m_x; member in class:WebCore::SVGPathSegCurvetoQuadratic
PatternAttributes.h 28 : m_x()
46 SVGLength x() const { return m_x; }
55 void setX(const SVGLength& value) { m_x = value; m_xSet = true; }
75 SVGLength m_x; member in struct:WebCore::PatternAttributes
SVGPathSegArc.h 33 : m_x(x), m_y(y), m_r1(r1), m_r2(r2), m_angle(angle), m_largeArcFlag(largeArcFlag), m_sweepFlag(sweepFlag) {}
35 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %d %d %.6lg %.6lg", m_r1, m_r2, m_angle, m_largeArcFlag, m_sweepFlag, m_x, m_y); }
37 void setX(float x) { m_x = x; }
38 float x() const { return m_x; }
59 float m_x; member in class:WebCore::SVGPathSegArc
SVGPathSegCurvetoCubic.h 32 SVGPathSegCurvetoCubic(float x, float y, float x1, float y1, float x2, float y2) : SVGPathSeg() , m_x(x) , m_y(y) , m_x1(x1) , m_y1(y1) , m_x2(x2) , m_y2(y2) {}
34 virtual String toString() const { return pathSegTypeAsLetter() + String::format(" %.6lg %.6lg %.6lg %.6lg %.6lg %.6lg", m_x1, m_y1, m_x2, m_y2, m_x, m_y); }
36 void setX(float x) { m_x = x; }
37 float x() const { return m_x; }
55 float m_x; member in class:WebCore::SVGPathSegCurvetoCubic
SVGFilterPrimitiveStandardAttributes.cpp 38 , m_x(LengthModeWidth, "0%")
SVGTextPositioningElement.cpp 36 , m_x(SVGLengthList::create(SVGNames::xAttr))
  /external/webkit/WebCore/platform/graphics/
FloatPoint.cpp 36 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y())
43 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
50 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
FloatPoint3D.h 35 float x() const { return m_x; }
36 void setX(float x) { m_x = x; }
47 float m_x; member in class:WebCore::FloatPoint3D
FloatPoint.h 70 FloatPoint() : m_x(0), m_y(0) { }
71 FloatPoint(float x, float y) : m_x(x), m_y(y) { }
76 float x() const { return m_x; }
79 void setX(float x) { m_x = x; }
81 void move(float dx, float dy) { m_x += dx; m_y += dy; }
113 float m_x, m_y; member in class:WebCore::FloatPoint
  /development/samples/BrowserPlugin/jni/animation/
AnimationPlugin.h 41 float m_x; member in class:BallAnimation
AnimationPlugin.cpp 74 m_x = m_y = 0;
144 m_oval.left = m_x;
146 m_oval.right = m_x + OW;
153 bounce(&m_x, &m_dx, obj->window->width - OW);
  /external/webkit/WebCore/platform/graphics/gtk/
IntPointGtk.cpp 28 : m_x(p.x)
  /external/webkit/WebCore/platform/graphics/wx/
FloatRectWx.cpp 36 : m_location(FloatPoint(r.m_x, r.m_y))
  /external/webkit/WebCore/platform/graphics/wince/
PlatformPathWince.cpp 55 pp.m_x = c1x;
66 pp.m_x = c1x * a + c2x * b + c3x * c;
72 pp.m_x = c3x;
95 pp.m_x = c1x;
109 pp.m_x = c1x * a + c2x * b + c3x * c + c4x * d;
115 pp.m_x = c4x;
169 return point.m_x < origin.m_x ?
189 float m_x; member in struct:WebCore::PathVector
192 PathVector() : m_x(0), m_y(0) {
    [all...]
PlatformPathWince.h 28 float m_x; member in struct:WebCore::PathPoint
30 const float& x() const { return m_x; }
34 m_x = x;
37 operator FloatPoint() const { return FloatPoint(m_x, m_y); }
40 m_x += offset.width();
45 m_x = p.x();
49 void clear() { m_x = m_y = 0; }
  /external/webkit/WebCore/rendering/
InlineFlowBox.h 147 IntRect visibleOverflowRect() const { return m_overflow ? m_overflow->visibleOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
151 int leftLayoutOverflow() const { return m_overflow ? m_overflow->leftLayoutOverflow() : m_x; }
152 int rightLayoutOverflow() const { return m_overflow ? m_overflow->rightLayoutOverflow() : m_x + m_width; }
153 IntRect layoutOverflowRect() const { return m_overflow ? m_overflow->layoutOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
157 int leftVisualOverflow() const { return m_overflow ? m_overflow->leftVisualOverflow() : m_x; }
158 int rightVisualOverflow() const { return m_overflow ? m_overflow->rightVisualOverflow() : m_x + m_width; }
159 IntRect visualOverflowRect() const { return m_overflow ? m_overflow->visualOverflowRect() : IntRect(m_x, m_y, m_width, height()); }
185 if (leftLayoutOverflow == m_x && rightLayoutOverflow == m_x + m_width && leftVisualOverflow == m_x && rightVisualOverflow == m_x + m_width
    [all...]
EllipsisBox.cpp 54 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->font().ascent()));
65 tx += m_x + m_width - m_markupBox->x();
76 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight()));
94 context->clip(IntRect(m_x + tx, y + ty, m_width, h));
96 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace());
102 tx += m_x;
InlineTextBox.cpp 120 IntPoint(tx + m_x, ty + selTop), selHeight, sPos, ePos));
121 if (r.x() > tx + m_x + m_width)
123 else if (r.right() - 1 > tx + m_x + m_width)
124 r.setWidth(tx + m_x + m_width - r.x());
163 bool ltrFullTruncation = flowIsLTR && ellipsisX <= m_x;
164 bool rtlFullTruncation = !flowIsLTR && ellipsisX >= (m_x + m_width);
172 bool ltrEllipsisWithinBox = flowIsLTR && (ellipsisX < m_x + m_width);
173 bool rtlEllipsisWithinBox = !flowIsLTR && (ellipsisX > m_x);
184 ellipsisX = ltr ? m_x + visibleBoxWidth : m_x + m_width - visibleBoxWidth
    [all...]
InlineBox.h 43 , m_x(0)
76 , m_x(x)
199 void setX(int x) { m_x = x; }
200 int x() const { return m_x; }
257 int m_x; member in class:WebCore::InlineBox
  /external/webkit/WebCore/platform/graphics/filters/
FEGaussianBlur.h 49 float m_x; member in class:WebCore::FEGaussianBlur
FEGaussianBlur.cpp 42 , m_x(x)
54 return m_x;
59 m_x = x;
113 if (m_x == 0 || m_y == 0)
116 unsigned sdx = static_cast<unsigned>(floor(m_x * filter->filterResolution().width() * 3 * sqrt(2 * piDouble) / 4.f + 0.5f));
  /external/webkit/WebCore/rendering/style/
StyleTransformData.h 47 Length m_x; member in class:WebCore::StyleTransformData
  /development/simulator/app/
DeviceWindow.cpp 123 if (pEvent->m_x < 0)
124 pEvent->m_x = 0;
125 else if (pEvent->m_x >= width)
126 pEvent->m_x = width-1;

Completed in 1458 milliseconds

12 3