HomeSort by relevance Sort by last modified time
    Searched refs:TransformState (Results 1 - 25 of 27) sorted by null

1 2

  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TransformerClient.java 25 * to a TransformState by implementing
28 * is implemented, pass in a TransformState reference to the
35 * Pass in a reference to a TransformState object, which
40 * @param ts A reference to a TransformState object
42 void setTransformState(TransformState ts);
TransformState.java 19 * $Id: TransformState.java 468645 2006-10-28 06:57:24Z minchau $
37 * handler can get a reference to a TransformState by implementing
40 * is implemented, pass in a TransformState reference to the
52 public interface TransformState extends TransformStateSetter
XalanTransformState.java 34 * Before the serializer merge, the TransformState interface was
38 implements TransformState {
76 * @see org.apache.xalan.transformer.TransformState#getCurrentElement()
86 * @see org.apache.xalan.transformer.TransformState#getCurrentNode()
98 * @see org.apache.xalan.transformer.TransformState#getCurrentTemplate()
108 * @see org.apache.xalan.transformer.TransformState#getMatchedTemplate()
118 * @see org.apache.xalan.transformer.TransformState#getMatchedNode()
132 * @see org.apache.xalan.transformer.TransformState#getContextNodeList()
142 * @see org.apache.xalan.transformer.TransformState#getTransformer()
  /external/webkit/Source/WebCore/rendering/
TransformState.cpp 27 #include "TransformState.h"
31 void TransformState::move(int x, int y, TransformAccumulation accumulate)
53 void TransformState::applyTransform(const AffineTransform& transformFromContainer, TransformAccumulation accumulate)
58 void TransformState::applyTransform(const TransformationMatrix& transformFromContainer, TransformAccumulation accumulate)
78 void TransformState::flatten()
88 FloatPoint TransformState::mappedPoint() const
99 FloatQuad TransformState::mappedQuad() const
110 void TransformState::flattenWithTransform(const TransformationMatrix& t)
TransformState.h 40 class TransformState {
41 WTF_MAKE_NONCOPYABLE(TransformState);
47 TransformState(TransformDirection mappingDirection, const FloatPoint& p, const FloatQuad* quad = 0)
RenderInline.h 133 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState&) const;
134 virtual void mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState&) const;
RenderView.h 183 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
184 virtual void mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState&) const;
RenderInline.cpp 37 #include "TransformState.h"
    [all...]
RenderBox.h 426 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState&) const;
427 virtual void mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState&) const;
RenderObject.cpp 59 #include "TransformState.h"
    [all...]
RenderBox.cpp 54 #include "TransformState.h"
    [all...]
RenderObject.h 60 class TransformState;
    [all...]
RenderView.cpp 36 #include "TransformState.h"
146 void RenderView::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const
155 transformState.applyTransform(t);
159 transformState.move(m_frameView->scrollOffsetForFixedPosition());
162 void RenderView::mapAbsoluteToLocalPoint(bool fixed, bool useTransforms, TransformState& transformState) const
165 transformState.move(-m_frameView->scrollOffsetForFixedPosition());
170 transformState.applyTransform(t);
  /external/webkit/Source/WebCore/rendering/svg/
SVGRenderSupport.h 39 class TransformState;
66 static void mapLocalToContainer(const RenderObject*, RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&);
RenderSVGInline.h 50 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
RenderSVGForeignObject.h 56 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState&) const;
RenderSVGModelObject.h 63 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
RenderSVGModelObject.cpp 56 void RenderSVGModelObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const
58 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
RenderSVGText.h 68 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
RenderSVGInline.cpp 80 void RenderSVGInline::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState& transformState) const
82 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, useTransforms, fixed, transformState);
RenderSVGRoot.h 81 virtual void mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool useTransforms, bool fixed, TransformState&) const;
RenderSVGForeignObject.cpp 33 #include "TransformState.h"
163 void RenderSVGForeignObject::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const
168 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
RenderSVGText.cpp 47 #include "TransformState.h"
95 void RenderSVGText::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed, bool useTransforms, TransformState& transformState) const
97 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, fixed, useTransforms, transformState);
RenderSVGRoot.cpp 38 #include "TransformState.h"
297 void RenderSVGRoot::mapLocalToContainer(RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState) const
303 transformState.applyTransform(localToBorderBoxTransform());
304 RenderBox::mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState);
SVGRenderSupport.cpp 43 #include "TransformState.h"
72 void SVGRenderSupport::mapLocalToContainer(const RenderObject* object, RenderBoxModelObject* repaintContainer, bool fixed , bool useTransforms, TransformState& transformState)
76 transformState.applyTransform(object->localToParentTransform());
77 object->parent()->mapLocalToContainer(repaintContainer, fixed, useTransforms, transformState);

Completed in 296 milliseconds

1 2