OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:resolveRectangle
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.h
57
static FloatRect
resolveRectangle
(const T* context, SVGUnitTypes::SVGUnitType type, const FloatRect& viewport)
59
return SVGLengthContext::
resolveRectangle
(context, type, viewport, context->xCurrentValue(), context->yCurrentValue(), context->widthCurrentValue(), context->heightCurrentValue());
62
static FloatRect
resolveRectangle
(const SVGElement*, SVGUnitTypes::SVGUnitType, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height);
SVGLengthContext.cpp
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)
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
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()));
RenderSVGResourceMasker.cpp
170
FloatRect maskBoundaries = SVGLengthContext::
resolveRectangle
<SVGMaskElement>(maskElement, maskElement->maskUnitsCurrentValue(), objectBoundingBox);
RenderSVGResourcePattern.cpp
207
return SVGLengthContext::
resolveRectangle
(patternElement, attributes.patternUnits(), objectBoundingBox, attributes.x(), attributes.y(), attributes.width(), attributes.height());
Completed in 51 milliseconds