/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/chromium_org/third_party/WebKit/Source/platform/geometry/ |
TransformState.h | 39 class PLATFORM_EXPORT TransformState { 44 TransformState(TransformDirection mappingDirection, const FloatPoint& p, const FloatQuad& quad) 54 TransformState(TransformDirection mappingDirection, const FloatPoint& p) 63 TransformState(TransformDirection mappingDirection, const FloatQuad& quad) 72 TransformState(const TransformState& other) { *this = other; } 74 TransformState& operator=(const TransformState&);
|
TransformState.cpp | 27 #include "platform/geometry/TransformState.h" 33 TransformState& TransformState::operator=(const TransformState& other) 53 void TransformState::translateTransform(const LayoutSize& offset) 61 void TransformState::translateMappedCoordinates(const LayoutSize& offset) 70 void TransformState::move(const LayoutSize& offset, TransformAccumulation accumulate) 91 void TransformState::applyAccumulatedOffset() 106 void TransformState::applyTransform(const AffineTransform& transformFromContainer, TransformAccumulation accumulate, bool* wasClamped) 111 void TransformState::applyTransform(const TransformationMatrix& transformFromContainer, TransformAccumulation accumula (…) [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/ |
SVGRenderSupport.h | 41 class TransformState; 70 static void mapLocalToContainer(const RenderObject*, const RenderLayerModelObject* repaintContainer, TransformState&, bool* wasFixed = 0);
|
RenderSVGForeignObject.h | 53 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
RenderSVGInline.h | 49 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE FINAL;
|
RenderSVGModelObject.h | 59 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE FINAL;
|
RenderSVGText.h | 77 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
RenderSVGInline.cpp | 88 void RenderSVGInline::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const 90 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
RenderSVGRoot.h | 97 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
RenderSVGForeignObject.cpp | 193 void RenderSVGForeignObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const 195 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
RenderSVGModelObject.cpp | 57 void RenderSVGModelObject::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const 59 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
RenderSVGRoot.cpp | 374 void RenderSVGRoot::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags mode, bool* wasFixed) const 379 RenderReplaced::mapLocalToContainer(repaintContainer, transformState, mode | ApplyContainerFlip, wasFixed);
|
RenderSVGText.cpp | 52 #include "platform/geometry/TransformState.h" 113 void RenderSVGText::mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState& transformState, MapCoordinatesFlags, bool* wasFixed) const 115 SVGRenderSupport::mapLocalToContainer(this, repaintContainer, transformState, wasFixed);
|
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderGeometryMap.cpp | 32 #include "platform/geometry/TransformState.h" 50 void RenderGeometryMap::mapToContainer(TransformState& transformState, const RenderLayerModelObject* container) const 54 m_mapping.last().m_renderer->mapLocalToContainer(container, transformState, ApplyContainerFlip | m_mapCoordinatesFlags); 55 transformState.flatten(); 88 transformState.applyTransform(*currentStep.m_transform.get()); 90 TransformState::TransformAccumulation accumulate = currentStep.m_accumulatingTransform ? TransformState::AccumulateTransform : TransformState::FlattenTransform; 92 transformState.applyTransform(*currentStep.m_transform.get(), accumulate) [all...] |
RenderGeometryMap.h | 42 class TransformState; 114 void mapToContainer(TransformState&, const RenderLayerModelObject* container = 0) const;
|
RenderFlowThread.h | 122 RenderRegion* mapFromFlowToRegion(TransformState&) const; 185 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
RenderView.h | 212 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE; 214 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) const;
|
RenderInline.h | 149 virtual void mapLocalToContainer(const RenderLayerModelObject* repaintContainer, TransformState&, MapCoordinatesFlags = ApplyContainerFlip, bool* wasFixed = 0) const OVERRIDE;
|
RenderInline.cpp | 42 #include "platform/geometry/TransformState.h" [all...] |
RenderObject.cpp | 84 #include "platform/geometry/TransformState.h" [all...] |
RenderObject.h | 71 class TransformState; [all...] |
RenderBoxModelObject.h | 176 virtual void mapAbsoluteToLocalPoint(MapCoordinatesFlags, TransformState&) const OVERRIDE;
|