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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.cpp 24 #include "core/svg/SVGLengthContext.h"
39 SVGLengthContext::SVGLengthContext(const SVGElement* context)
44 SVGLengthContext::SVGLengthContext(const SVGElement* context, const FloatRect& viewport)
50 FloatRect SVGLengthContext::resolveRectangle(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height)
54 SVGLengthContext lengthContext(context);
58 SVGLengthContext lengthContext(context, viewport);
65 FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x, const SVGLength& y)
69 SVGLengthContext lengthContext(context)
    [all...]
SVGLengthContext.h 52 class SVGLengthContext {
54 explicit SVGLengthContext(const SVGElement*);
59 return SVGLengthContext::resolveRectangle(context, type, viewport, context->xCurrentValue(), context->yCurrentValue(), context->widthCurrentValue(), context->heightCurrentValue());
72 SVGLengthContext(const SVGElement*, const FloatRect& viewport);
SVGLength.h 25 #include "core/svg/SVGLengthContext.h"
60 SVGLength(const SVGLengthContext&, float, SVGLengthMode = LengthModeOther, SVGLengthType = LengthTypeNumber);
71 float value(const SVGLengthContext&) const;
72 float value(const SVGLengthContext&, ExceptionState&) const;
73 void setValue(float, const SVGLengthContext&, ExceptionState&);
74 void setValue(const SVGLengthContext&, float, SVGLengthMode, SVGLengthType, ExceptionState&);
86 void convertToSpecifiedUnits(unsigned short, const SVGLengthContext&, ExceptionState&);
143 SVGLengthContext nonRelativeLengthContext(0);
SVGAnimatedLength.cpp 77 SVGLengthContext lengthContext(m_contextElement);
103 SVGLengthContext lengthContext(m_contextElement);
118 SVGLengthContext lengthContext(m_contextElement);
SVGLength.cpp 139 SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType)
195 float SVGLength::value(const SVGLengthContext& context) const
200 float SVGLength::value(const SVGLengthContext& context, ExceptionState& exceptionState) const
205 void SVGLength::setValue(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType, ExceptionState& exceptionState)
211 void SVGLength::setValue(float value, const SVGLengthContext& context, ExceptionState& exceptionState)
284 void SVGLength::convertToSpecifiedUnits(unsigned short type, const SVGLengthContext& context, ExceptionState& exceptionState)
SVGAnimatedLengthList.cpp 79 SVGLengthContext lengthContext(m_contextElement);
112 SVGLengthContext lengthContext(m_contextElement);
SVGSVGElement.cpp 430 SVGLengthContext lengthContext(this);
646 SVGLengthContext lengthContext(this);
660 SVGLengthContext lengthContext(this);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceRadialGradient.cpp 49 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.cx(), attributes.cy());
54 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.fx(), attributes.fy());
59 return SVGLengthContext::resolveLength(element(), attributes.gradientUnits(), attributes.r());
64 return SVGLengthContext::resolveLength(element(), attributes.gradientUnits(), attributes.fr());
RenderSVGResourceLinearGradient.cpp 48 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x1(), attributes.y1());
53 return SVGLengthContext::resolvePoint(element(), attributes.gradientUnits(), attributes.x2(), attributes.y2());
RenderSVGTransformableContainer.cpp 57 SVGLengthContext lengthContext(useElement);
SVGPathData.cpp 41 SVGLengthContext lengthContext(element);
51 SVGLengthContext lengthContext(element);
65 SVGLengthContext lengthContext(element);
107 SVGLengthContext lengthContext(element);
RenderSVGEllipse.cpp 82 SVGLengthContext lengthContext(circle);
91 SVGLengthContext lengthContext(ellipse);
RenderSVGResourceMarker.cpp 107 SVGLengthContext lengthContext(marker);
183 SVGLengthContext lengthContext(marker);
RenderSVGViewportContainer.cpp 65 SVGLengthContext lengthContext(element);
98 SVGLengthContext lengthContext(element);
RenderSVGRect.cpp 56 SVGLengthContext lengthContext(rect);
SVGTextLayoutEngineSpacing.cpp 25 #include "core/svg/SVGLengthContext.h"
89 SVGLengthContext lengthContext(contextElement);
SVGTextLayoutAttributesBuilder.cpp 163 static inline void updateCharacterData(unsigned i, float& lastRotation, SVGCharacterData& data, const SVGLengthContext& lengthContext, const SVGLengthList* xList, const SVGLengthList* yList, const SVGLengthList* dxList, const SVGLengthList* dyList, const SVGNumberList* rotateList)
196 SVGLengthContext lengthContext(position.element);
RenderSVGResourceFilter.cpp 96 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnitsCurrentValue(), targetBoundingBox));
165 filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnitsCurrentValue(), targetBoundingBox);
337 return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnitsCurrentValue(), object->objectBoundingBox());
ReferenceFilterBuilder.cpp 168 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnitsCurrentValue(), parentFilter->sourceImageRect()));
RenderSVGForeignObject.cpp 140 SVGLengthContext lengthContext(foreign);
RenderSVGResourceMasker.cpp 170 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnitsCurrentValue(), objectBoundingBox);
SVGTextLayoutEngineBaseline.cpp 27 #include "core/svg/SVGLengthContext.h"
45 SVGLengthContext lengthContext(contextElement);
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 38 #include "core/svg/SVGLengthContext.h"
48 SVGLengthContext lengthContext(wrapper->contextElement());
70 SVGLengthContext lengthContext(wrapper->contextElement());
95 SVGLengthContext lengthContext(wrapper->contextElement());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 34 #include "core/svg/SVGLengthContext.h"
100 SVGLengthContext lengthContext(0);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 122 SVGLengthContext lengthContext(contextNode);

Completed in 970 milliseconds

1 2