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

1 2

  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.cpp 24 #include "core/svg/SVGLengthContext.h"
40 SVGLengthContext::SVGLengthContext(const SVGElement* context)
45 SVGLengthContext::SVGLengthContext(const SVGElement* context, const FloatRect& viewport)
51 FloatRect SVGLengthContext::resolveRectangle(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport, PassRefPtr<SVGLength> passX, PassRefPtr<SVGLength> passY, PassRefPtr<SVGLength> passWidth, PassRefPtr<SVGLength> passHeight)
60 SVGLengthContext lengthContext(context);
64 SVGLengthContext lengthContext(context, viewport);
72 FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::SVGUnitType type, PassRefPtr<SVGLength> passX, PassRefPtr<SVGLength> passY)
79 SVGLengthContext lengthContext(context)
    [all...]
SVGLength.h 26 #include "core/svg/SVGLengthContext.h"
62 float value(const SVGLengthContext& context) const
66 float value(const SVGLengthContext&, ExceptionState&) const;
67 void setValue(float, const SVGLengthContext&, ExceptionState&);
78 void convertToSpecifiedUnits(SVGLengthType, const SVGLengthContext&, ExceptionState&);
SVGLengthContext.h 52 class SVGLengthContext {
55 explicit SVGLengthContext(const SVGElement*);
60 return SVGLengthContext::resolveRectangle(context, type, viewport, context->x()->currentValue(), context->y()->currentValue(), context->width()->currentValue(), context->height()->currentValue());
73 SVGLengthContext(const SVGElement*, const FloatRect& viewport);
SVGLengthTearOff.cpp 62 SVGLengthContext lengthContext(contextElement());
73 SVGLengthContext lengthContext(contextElement());
137 SVGLengthContext lengthContext(contextElement());
SVGLength.cpp 162 float SVGLength::value(const SVGLengthContext& context, ExceptionState& es) const
167 void SVGLength::setValue(float value, const SVGLengthContext& context, ExceptionState& es)
247 void SVGLength::convertToSpecifiedUnits(SVGLengthType type, const SVGLengthContext& context, ExceptionState& exceptionState)
426 SVGLengthContext nonRelativeLengthContext(0);
442 SVGLengthContext lengthContext(contextElement);
453 SVGLengthContext lengthContext(contextElement);
464 SVGLengthContext lengthContext(contextElement);
SVGLengthList.cpp 127 SVGLengthContext lengthContext(contextElement);
143 SVGLengthContext lengthContext(contextElement);
SVGSVGElement.cpp 487 SVGLengthContext lengthContext(this);
658 SVGLengthContext lengthContext(this);
667 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());
SVGPathData.cpp 43 SVGLengthContext lengthContext(element);
53 SVGLengthContext lengthContext(element);
70 SVGLengthContext lengthContext(element);
106 SVGLengthContext lengthContext(element);
RenderSVGEllipse.cpp 84 SVGLengthContext lengthContext(&circle);
93 SVGLengthContext lengthContext(&ellipse);
RenderSVGResourceMarker.cpp 102 SVGLengthContext lengthContext(marker);
178 SVGLengthContext lengthContext(marker);
RenderSVGRect.cpp 56 SVGLengthContext lengthContext(rect);
RenderSVGTransformableContainer.cpp 90 SVGLengthContext lengthContext(useElement);
RenderSVGViewportContainer.cpp 66 SVGLengthContext lengthContext(element);
RenderSVGResourceFilter.cpp 96 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnits()->currentValue()->enumValue(), targetBoundingBox));
206 filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnits()->currentValue()->enumValue(), targetBoundingBox);
268 return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnits()->currentValue()->enumValue(), object->objectBoundingBox());
RenderSVGForeignObject.cpp 95 SVGLengthContext lengthContext(foreign);
SVGTextLayoutAttributesBuilder.cpp 164 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)
197 SVGLengthContext lengthContext(position.element);
ReferenceFilterBuilder.cpp 166 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement.primitiveUnits()->currentValue()->enumValue(), parentFilter->sourceImageRect()));
RenderSVGImage.cpp 95 SVGLengthContext lengthContext(image);
RenderSVGResourceMasker.cpp 170 FloatRect maskBoundaries = SVGLengthContext::resolveRectangle<SVGMaskElement>(maskElement, maskElement->maskUnits()->currentValue()->enumValue(), objectBoundingBox);
SVGTextLayoutEngineBaseline.cpp 27 #include "core/svg/SVGLengthContext.h"
45 SVGLengthContext lengthContext(contextElement);
SVGRenderSupport.cpp 321 SVGLengthContext lengthContext(toSVGElement(object->node()));
350 SVGLengthContext lengthContext(toSVGElement(object->node()));
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 101 SVGLengthContext lengthContext(contextNode);
160 SVGLengthContext lengthContext(contextNode);
199 SVGLengthContext lengthContext(contextNode);
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 34 #include "core/svg/SVGLengthContext.h"
101 SVGLengthContext lengthContext(0);

Completed in 303 milliseconds

1 2