Searched refs:borderBoxSize (Results 1 – 4 of 4) sorted by relevance
/external/webkit/Source/WebCore/platform/graphics/transforms/ |
D | TranslateTransformOperation.h | 45 … double x(const IntSize& borderBoxSize) const { return m_x.calcFloatValue(borderBoxSize.width()); } in x() argument 46 …double y(const IntSize& borderBoxSize) const { return m_y.calcFloatValue(borderBoxSize.height()); } in y() argument 67 virtual bool apply(TransformationMatrix& transform, const IntSize& borderBoxSize) const in apply() argument 69 transform.translate3d(x(borderBoxSize), y(borderBoxSize), z(borderBoxSize)); in apply()
|
D | TransformOperation.h | 62 virtual bool apply(TransformationMatrix&, const IntSize& borderBoxSize) const = 0;
|
/external/webkit/Source/WebCore/rendering/style/ |
D | RenderStyle.cpp | 685 void RenderStyle::applyTransform(TransformationMatrix& transform, const IntSize& borderBoxSize, App… in applyTransform() argument 709 …late3d(transformOriginX().calcFloatValue(borderBoxSize.width()), transformOriginY().calcFloatValue… in applyTransform() 713 … rareNonInheritedData->m_transform->m_operations.operations()[i]->apply(transform, borderBoxSize); in applyTransform() 716 …te3d(-transformOriginX().calcFloatValue(borderBoxSize.width()), -transformOriginY().calcFloatValue… in applyTransform()
|
D | RenderStyle.h | 738 …void applyTransform(TransformationMatrix&, const IntSize& borderBoxSize, ApplyTransformOrigin = In…
|