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"
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, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height)
55 SVGLengthContext lengthContext(context);
59 SVGLengthContext lengthContext(context, viewport);
66 FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::SVGUnitType type, const SVGLength& x, const SVGLength& y)
70 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 26 #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 128 SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType)
184 float SVGLength::value(const SVGLengthContext& context) const
189 float SVGLength::value(const SVGLengthContext& context, ExceptionState& es) const
194 void SVGLength::setValue(const SVGLengthContext& context, float value, SVGLengthMode mode, SVGLengthType unitType, ExceptionState& es)
200 void SVGLength::setValue(float value, const SVGLengthContext& context, ExceptionState& es)
273 void SVGLength::convertToSpecifiedUnits(unsigned short type, const SVGLengthContext& context, ExceptionState& es)
SVGAnimatedLengthList.cpp 79 SVGLengthContext lengthContext(m_contextElement);
112 SVGLengthContext lengthContext(m_contextElement);
SVGSVGElement.cpp 431 SVGLengthContext lengthContext(this);
643 SVGLengthContext lengthContext(this);
657 SVGLengthContext lengthContext(this);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceRadialGradient.cpp 50 return SVGLengthContext::resolvePoint(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.cx(), attributes.cy());
55 return SVGLengthContext::resolvePoint(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.fx(), attributes.fy());
60 return SVGLengthContext::resolveLength(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.r());
65 return SVGLengthContext::resolveLength(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.fr());
RenderSVGResourceLinearGradient.cpp 49 return SVGLengthContext::resolvePoint(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.x1(), attributes.y1());
54 return SVGLengthContext::resolvePoint(static_cast<const SVGElement*>(node()), attributes.gradientUnits(), attributes.x2(), attributes.y2());
RenderSVGTransformableContainer.cpp 57 SVGLengthContext lengthContext(useElement);
SVGPathData.cpp 42 SVGLengthContext lengthContext(element);
53 SVGLengthContext lengthContext(element);
68 SVGLengthContext lengthContext(element);
116 SVGLengthContext lengthContext(element);
RenderSVGEllipse.cpp 83 SVGLengthContext lengthContext(circle);
93 SVGLengthContext lengthContext(ellipse);
RenderSVGResourceMarker.cpp 99 SVGLengthContext lengthContext(marker);
173 SVGLengthContext lengthContext(marker);
RenderSVGViewportContainer.cpp 65 SVGLengthContext lengthContext(element);
98 SVGLengthContext lengthContext(element);
RenderSVGRect.cpp 56 SVGLengthContext lengthContext(rect);
SVGTextLayoutEngineSpacing.cpp 26 #include "core/svg/SVGLengthContext.h"
92 SVGLengthContext lengthContext(contextElement);
ReferenceFilterBuilder.cpp 145 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnitsCurrentValue(), parentFilter->sourceImageRect()));
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 103 effect->setEffectBoundaries(SVGLengthContext::resolveRectangle<SVGFilterPrimitiveStandardAttributes>(effectElement, filterElement->primitiveUnitsCurrentValue(), targetBoundingBox));
143 filterData->boundaries = SVGLengthContext::resolveRectangle<SVGFilterElement>(filterElement, filterElement->filterUnitsCurrentValue(), targetBoundingBox);
315 return SVGLengthContext::resolveRectangle<SVGFilterElement>(element, element->filterUnitsCurrentValue(), object->objectBoundingBox());
RenderSVGForeignObject.cpp 139 SVGLengthContext lengthContext(foreign);
SVGTextLayoutEngineBaseline.cpp 29 #include "core/svg/SVGLengthContext.h"
45 SVGLengthContext lengthContext(contextElement);
SVGRenderSupport.cpp 345 SVGLengthContext lengthContext(toSVGElement(object->node()));
374 SVGLengthContext lengthContext(toSVGElement(object->node()));
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8SVGLengthCustom.cpp 37 #include "core/svg/SVGLengthContext.h"
47 SVGLengthContext lengthContext(wrapper->contextElement());
69 SVGLengthContext lengthContext(wrapper->contextElement());
92 SVGLengthContext lengthContext(wrapper->contextElement());
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSCursorImageValue.cpp 35 #include "core/svg/SVGLengthContext.h"
101 SVGLengthContext lengthContext(0);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
SVGFEImage.cpp 124 SVGLengthContext lengthContext(contextNode);

Completed in 710 milliseconds

1 2