/external/webkit/Source/WebCore/platform/graphics/wx/ |
IntPointWx.cpp | 36 , m_y(p.y) 42 return wxPoint(m_x, m_y);
|
FloatRectWx.cpp | 36 : m_location(FloatPoint(r.m_x, r.m_y))
|
/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; }
|
/external/webkit/Source/WebCore/platform/graphics/ |
FloatPoint.cpp | 39 FloatPoint::FloatPoint(const IntPoint& p) : m_x(p.x()), m_y(p.y()) 49 m_y /= tempLength; 61 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY); 68 transform.map(static_cast<double>(m_x), static_cast<double>(m_y), newX, newY);
|
FloatPoint3D.cpp | 36 m_y /= tempLength;
|
/external/webkit/Source/WebCore/rendering/style/ |
ShadowData.cpp | 34 , m_y(o.m_y) 51 && m_y == o.m_y
|
StyleTransformData.h | 48 Length m_y; member in class:WebCore::StyleTransformData
|
/external/webkit/Source/WebCore/svg/ |
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
|
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
|
/external/webkit/Source/WebCore/rendering/ |
InlineBox.h | 44 , m_y(0) 79 , m_y(y) 229 void setY(float y) { m_y = y; } 230 float y() const { return m_y; } 236 float logicalLeft() const { return isHorizontal() ? m_x : m_y; } 243 m_y = left; 249 int logicalTop() const { return isHorizontal() ? m_y : m_x; } 254 m_y = top; 266 FloatRect logicalFrameRect() const { return isHorizontal() ? IntRect(m_x, m_y, m_logicalWidth, logicalHeight()) : IntRect(m_y, m_x, m_logicalWidth, logicalHeight()); 330 float m_y; member in class:WebCore::InlineBox [all...] |
EllipsisBox.cpp | 56 context->drawText(style->font(), TextRun(str.characters(), str.length(), false, 0, 0, TextRun::AllowTrailingExpansion, false, style->visuallyOrdered()), IntPoint(m_x + tx, m_y + ty + style->fontMetrics().ascent())); 68 ty += m_y + style->fontMetrics().ascent() - (m_markupBox->y() + m_markupBox->renderer()->style(m_firstLine)->fontMetrics().ascent()); 78 IntPoint(m_x + tx, m_y + ty + root()->selectionTop()), root()->selectionHeight())); 98 IntPoint(m_x + tx, m_y + ty + y), h, c, style->colorSpace()); 105 ty += m_y;
|
/external/webkit/Source/WebCore/platform/graphics/brew/ |
IntPointBrew.cpp | 35 , m_y(point.y) 43 point.y = static_cast<int16>(m_y);
|
/external/webkit/Source/WebCore/platform/graphics/cg/ |
FloatPointCG.cpp | 36 FloatPoint::FloatPoint(const CGPoint& p) : m_x(p.x), m_y(p.y) 42 return CGPointMake(m_x, m_y);
|
IntPointCG.cpp | 35 IntPoint::IntPoint(const CGPoint& p) : m_x(static_cast<int>(p.x)), m_y(static_cast<int>(p.y)) 41 return CGPointMake(m_x, m_y);
|
/external/webkit/Source/WebCore/platform/graphics/skia/ |
FloatPointSkia.cpp | 41 , m_y(p.fY) 47 SkPoint p = { WebCoreFloatToSkScalar(m_x), WebCoreFloatToSkScalar(m_y) };
|
/external/webkit/Source/WebCore/platform/graphics/android/rendering/ |
Tile.cpp | 52 , m_y(-1) 87 || (m_y != y) 95 m_y = y; 168 if (intersectWithRect(m_x, m_y, TilesManager::tileWidth(), TilesManager::tileHeight(), 196 this, m_x, m_y, isLayerTile(), m_state); 227 if (m_x < 0 || m_y < 0 || m_scale != scale) 238 this, m_x, m_y, fillPortion.x(), fillPortion.y(), 292 && m_y >= viewTileBounds.y() 293 && m_y < viewTileBounds.y() + viewTileBounds.height()); 308 const int y = m_y; [all...] |
/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/platform/graphics/efl/ |
IntPointEfl.cpp | 32 , m_y(p.y)
|
/external/webkit/Source/WebCore/platform/graphics/gtk/ |
IntPointGtk.cpp | 29 , m_y(p.y)
|
/external/webkit/Source/WebCore/dom/ |
DeviceMotionData.h | 46 double y() const { return m_y; } 53 double m_y; member in class:WebCore::DeviceMotionData::Acceleration
|
DeviceMotionData.cpp | 40 , m_y(y)
|
/external/webkit/Source/WebCore/rendering/svg/ |
SVGInlineTextBox.h | 43 virtual int selectionTop() { return m_y; }
|
SVGTextLayoutEngine.h | 90 float m_y; member in class:WebCore::SVGTextLayoutEngine
|
/frameworks/base/media/jni/mediaeditor/ |
VideoBrowserInternal.h | 107 M4OSA_UInt32 m_y ; member in struct:__anon19791
|