HomeSort by relevance Sort by last modified time
    Searched refs:m_anchorPoint (Results 1 - 14 of 14) sorted by null

  /external/skia/include/utils/
SkLayer.h 34 const SkPoint& getAnchorPoint() const { return m_anchorPoint; }
45 void setAnchorPoint(SkScalar x, SkScalar y) { m_anchorPoint.set(x, y); }
118 SkPoint m_anchorPoint;
  /external/webkit/Source/WebCore/platform/graphics/android/layers/
Layer.h 53 const SkPoint& getAnchorPoint() const { return m_anchorPoint; }
65 void setAnchorPoint(SkScalar x, SkScalar y) { m_anchorPoint.set(x, y); }
176 SkPoint m_anchorPoint;
Layer.cpp 24 m_anchorPoint.set(SK_ScalarHalf, SK_ScalarHalf);
45 m_anchorPoint = src.m_anchorPoint;
129 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width());
130 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height());
  /external/skia/src/utils/
SkLayer.cpp 25 m_anchorPoint.set(SK_ScalarHalf, SK_ScalarHalf);
42 m_anchorPoint = src.m_anchorPoint;
144 SkScalar tx = SkScalarMul(m_anchorPoint.fX, m_size.width());
145 SkScalar ty = SkScalarMul(m_anchorPoint.fY, m_size.height());
  /external/webkit/Source/WebCore/platform/graphics/chromium/cc/
CCLayerImpl.h 77 void setAnchorPoint(const FloatPoint& anchorPoint) { m_anchorPoint = anchorPoint; }
78 const FloatPoint& anchorPoint() const { return m_anchorPoint; }
152 FloatPoint m_anchorPoint;
CCLayerImpl.cpp 65 , m_anchorPoint(0.5, 0.5)
  /external/webkit/Source/WebCore/platform/graphics/chromium/
GraphicsLayerChromium.cpp 188 if (point == m_anchorPoint)
502 FloatPoint layerPosition(m_position.x() + m_anchorPoint.x() * m_size.width(),
503 m_position.y() + m_anchorPoint.y() * m_size.height());
529 primaryLayer()->setAnchorPoint(FloatPoint(m_anchorPoint.x(), m_anchorPoint.y()));
530 primaryLayer()->setAnchorPointZ(m_anchorPoint.z());
LayerChromium.h 78 void setAnchorPoint(const FloatPoint& anchorPoint) { m_anchorPoint = anchorPoint; setNeedsCommit(); }
79 FloatPoint anchorPoint() const { return m_anchorPoint; }
252 FloatPoint m_anchorPoint;
LayerChromium.cpp 70 , m_anchorPoint(0.5, 0.5)
296 layer->setAnchorPoint(m_anchorPoint);
  /external/webkit/Source/WebCore/platform/graphics/win/
GraphicsLayerCACF.cpp 214 if (point == m_anchorPoint)
516 CGPoint posPoint = CGPointMake(m_position.x() + m_anchorPoint.x() * m_size.width(),
517 m_position.y() + m_anchorPoint.y() * m_size.height());
547 primaryLayer()->setAnchorPoint(FloatPoint(m_anchorPoint.x(), m_anchorPoint.y()));
548 primaryLayer()->setAnchorPointZ(m_anchorPoint.z());
  /external/webkit/Source/WebCore/platform/graphics/
GraphicsLayer.h 243 const FloatPoint3D& anchorPoint() const { return m_anchorPoint; }
244 virtual void setAnchorPoint(const FloatPoint3D& p) { m_anchorPoint = p; }
393 FloatPoint3D m_anchorPoint;
GraphicsLayer.cpp 66 , m_anchorPoint(0.5f, 0.5f, 0)
426 if (m_anchorPoint != FloatPoint3D(0.5f, 0.5f, 0)) {
428 ts << "(anchor " << m_anchorPoint.x() << " " << m_anchorPoint.y() << ")\n";
  /external/webkit/Source/WebCore/platform/graphics/android/
GraphicsLayerAndroid.cpp 307 m_anchorPoint.x(), m_anchorPoint.y(), m_size.width(), m_size.height());
325 if (point == m_anchorPoint)
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/ca/
GraphicsLayerCA.cpp 393 if (point == m_anchorPoint)
959 FloatPoint posPoint(m_position.x() + m_anchorPoint.x() * usedSize.width(),
960 m_position.y() + m_anchorPoint.y() * usedSize.height());
    [all...]

Completed in 8391 milliseconds