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

  /external/webkit/Source/WebCore/platform/graphics/transforms/
TranslateTransformOperation.h 45 double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); }
46 double y(const IntSize& borderBoxSize) const { return m_y.calcFloatValue(borderBoxSize.height()); }
47 double z(const IntSize&) const { return m_z.calcFloatValue(1); }
54 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
PerspectiveTransformOperation.h 44 virtual bool isIdentity() const { return m_p.calcFloatValue(1) == 0; }
58 transform.applyPerspective(m_p.calcFloatValue(1));
PerspectiveTransformOperation.cpp 41 double p = m_p.calcFloatValue(1);
52 fromT.applyPerspective(fromP.calcFloatValue(1));
53 toT.applyPerspective(toP.calcFloatValue(1));
  /external/webkit/Source/WebCore/platform/
Length.h 148 float calcFloatValue(int maxValue) const
  /external/webkit/Source/WebCore/platform/graphics/android/
LayerAndroid.cpp 642 x += m_fixedMarginLeft.calcFloatValue(w) + m_fixedLeft.calcFloatValue(w) - m_fixedRect.fLeft;
644 x += w - m_fixedMarginRight.calcFloatValue(w) - m_fixedRight.calcFloatValue(w) - m_fixedRect.fRight;
649 y += m_fixedMarginTop.calcFloatValue(h) + m_fixedTop.calcFloatValue(h) - m_fixedRect.fTop;
651 y += h - m_fixedMarginBottom.calcFloatValue(h) - m_fixedBottom.calcFloatValue(h) - m_fixedRect.fBottom;
    [all...]
LayerAndroid.h 78 float calcFloatValue(float max) const
  /external/webkit/Source/WebCore/rendering/
RenderLayerBacking.cpp     [all...]
RenderLayer.cpp 763 float perspectiveOriginX = style->perspectiveOriginX().calcFloatValue(boxWidth);
764 float perspectiveOriginY = style->perspectiveOriginY().calcFloatValue(boxHeight);
787 return FloatPoint(style->perspectiveOriginX().calcFloatValue(borderBox.width()),
788 style->perspectiveOriginY().calcFloatValue(borderBox.height()));
    [all...]
  /external/webkit/Source/WebCore/rendering/style/
RenderStyle.cpp 709 transform.translate3d(transformOriginX().calcFloatValue(borderBoxSize.width()), transformOriginY().calcFloatValue(borderBoxSize.height()), transformOriginZ());
716 transform.translate3d(-transformOriginX().calcFloatValue(borderBoxSize.width()), -transformOriginY().calcFloatValue(borderBoxSize.height()), -transformOriginZ());
    [all...]

Completed in 294 milliseconds