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

  /external/webkit/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); }
50 virtual bool isIdentity() const { return m_x.calcFloatValue(1) == 0 && m_y.calcFloatValue(1) == 0 && m_z.calcFloatValue(1) == 0; }
  /external/webkit/WebCore/platform/graphics/android/
LayerAndroid.cpp 280 x += m_fixedMarginLeft.calcFloatValue(w) + m_fixedLeft.calcFloatValue(w) - layerRect.fLeft;
282 x += w - m_fixedMarginRight.calcFloatValue(w) - m_fixedRight.calcFloatValue(w) - layerRect.width();
285 y += m_fixedMarginTop.calcFloatValue(h) + m_fixedTop.calcFloatValue(h) - layerRect.fTop;
287 y += h - m_fixedMarginBottom.calcFloatValue(h) - m_fixedBottom.calcFloatValue(h) - layerRect.fTop - layerRect.height();
LayerAndroid.h 51 float calcFloatValue(float max) const {
  /external/webkit/WebCore/platform/
Length.h 139 float calcFloatValue(int maxValue) const
  /external/webkit/WebCore/rendering/
RenderLayerBacking.cpp 760 origin.setX(style->transformOriginX().calcFloatValue(borderBox.width()));
761 origin.setY(style->transformOriginY().calcFloatValue(borderBox.height()));
775 origin.setX(style->perspectiveOriginX().calcFloatValue(boxWidth));
776 origin.setY(style->perspectiveOriginY().calcFloatValue(boxHeight));
    [all...]
RenderLayer.cpp 620 float perspectiveOriginX = style->perspectiveOriginX().calcFloatValue(boxWidth);
621 float perspectiveOriginY = style->perspectiveOriginY().calcFloatValue(boxHeight);
644 return FloatPoint(style->perspectiveOriginX().calcFloatValue(borderBox.width()),
645 style->perspectiveOriginY().calcFloatValue(borderBox.height()));
    [all...]
  /external/webkit/WebCore/rendering/style/
RenderStyle.cpp 678 transform.translate3d(transformOriginX().calcFloatValue(borderBoxSize.width()), transformOriginY().calcFloatValue(borderBoxSize.height()), transformOriginZ());
685 transform.translate3d(-transformOriginX().calcFloatValue(borderBoxSize.width()), -transformOriginY().calcFloatValue(borderBoxSize.height()), -transformOriginZ());
    [all...]

Completed in 101 milliseconds