OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGUnitType
(Results
1 - 25
of
25
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUnitTypes.h
30
enum
SVGUnitType
{
41
struct SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
> {
44
static String toString(SVGUnitTypes::
SVGUnitType
type)
59
static SVGUnitTypes::
SVGUnitType
fromString(const String& value)
SVGLengthContext.h
57
static FloatRect resolveRectangle(const T* context, SVGUnitTypes::
SVGUnitType
type, const FloatRect& viewport)
62
static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::
SVGUnitType
, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVGLength& width, const SVGLength& height);
63
static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::
SVGUnitType
, const SVGLength& x, const SVGLength& y);
64
static float resolveLength(const SVGElement*, SVGUnitTypes::
SVGUnitType
, const SVGLength&);
PatternAttributes.h
61
SVGUnitTypes::
SVGUnitType
patternUnits() const { return m_patternUnits; }
62
SVGUnitTypes::
SVGUnitType
patternContentUnits() const { return m_patternContentUnits; }
102
void setPatternUnits(SVGUnitTypes::
SVGUnitType
value)
108
void setPatternContentUnits(SVGUnitTypes::
SVGUnitType
value)
145
SVGUnitTypes::
SVGUnitType
m_patternUnits;
146
SVGUnitTypes::
SVGUnitType
m_patternContentUnits;
SVGMaskElement.h
56
DECLARE_ANIMATED_ENUMERATION(MaskUnits, maskUnits, SVGUnitTypes::
SVGUnitType
)
57
DECLARE_ANIMATED_ENUMERATION(MaskContentUnits, maskContentUnits, SVGUnitTypes::
SVGUnitType
)
GradientAttributes.h
39
SVGUnitTypes::
SVGUnitType
gradientUnits() const { return static_cast<SVGUnitTypes::
SVGUnitType
>(m_gradientUnits); }
49
void setGradientUnits(SVGUnitTypes::
SVGUnitType
unitType)
SVGMaskElement.cpp
34
DEFINE_ANIMATED_ENUMERATION(SVGMaskElement, SVGNames::maskUnitsAttr, MaskUnits, maskUnits, SVGUnitTypes::
SVGUnitType
)
35
DEFINE_ANIMATED_ENUMERATION(SVGMaskElement, SVGNames::maskContentUnitsAttr, MaskContentUnits, maskContentUnits, SVGUnitTypes::
SVGUnitType
)
97
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
102
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
SVGClipPathElement.cpp
32
DEFINE_ANIMATED_ENUMERATION(SVGClipPathElement, SVGNames::clipPathUnitsAttr, ClipPathUnits, clipPathUnits, SVGUnitTypes::
SVGUnitType
)
72
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
SVGClipPathElement.h
54
DECLARE_ANIMATED_ENUMERATION(ClipPathUnits, clipPathUnits, SVGUnitTypes::
SVGUnitType
)
SVGFilterElement.h
67
DECLARE_ANIMATED_ENUMERATION(FilterUnits, filterUnits, SVGUnitTypes::
SVGUnitType
)
68
DECLARE_ANIMATED_ENUMERATION(PrimitiveUnits, primitiveUnits, SVGUnitTypes::
SVGUnitType
)
SVGPatternElement.h
74
DECLARE_ANIMATED_ENUMERATION(PatternUnits, patternUnits, SVGUnitTypes::
SVGUnitType
)
75
DECLARE_ANIMATED_ENUMERATION(PatternContentUnits, patternContentUnits, SVGUnitTypes::
SVGUnitType
)
SVGGradientElement.cpp
40
DEFINE_ANIMATED_ENUMERATION(SVGGradientElement, SVGNames::gradientUnitsAttr, GradientUnits, gradientUnits, SVGUnitTypes::
SVGUnitType
)
84
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
SVGFilterElement.cpp
36
DEFINE_ANIMATED_ENUMERATION(SVGFilterElement, SVGNames::filterUnitsAttr, FilterUnits, filterUnits, SVGUnitTypes::
SVGUnitType
)
37
DEFINE_ANIMATED_ENUMERATION(SVGFilterElement, SVGNames::primitiveUnitsAttr, PrimitiveUnits, primitiveUnits, SVGUnitTypes::
SVGUnitType
)
126
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
130
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
SVGPatternElement.cpp
39
DEFINE_ANIMATED_ENUMERATION(SVGPatternElement, SVGNames::patternUnitsAttr, PatternUnits, patternUnits, SVGUnitTypes::
SVGUnitType
)
40
DEFINE_ANIMATED_ENUMERATION(SVGPatternElement, SVGNames::patternContentUnitsAttr, PatternContentUnits, patternContentUnits, SVGUnitTypes::
SVGUnitType
)
107
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
112
SVGUnitTypes::
SVGUnitType
propertyValue = SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
SVGGradientElement.h
103
DECLARE_ANIMATED_ENUMERATION(GradientUnits, gradientUnits, SVGUnitTypes::
SVGUnitType
)
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)
65
FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context, SVGUnitTypes::
SVGUnitType
type, const SVGLength& x, const SVGLength& y)
77
float SVGLengthContext::resolveLength(const SVGElement* context, SVGUnitTypes::
SVGUnitType
type, const SVGLength& x)
SVGAnimatedEnumeration.cpp
53
return SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::fromString(value);
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMasker.h
51
SVGUnitTypes::
SVGUnitType
maskUnits() const { return toSVGMaskElement(element())->maskUnitsCurrentValue(); }
52
SVGUnitTypes::
SVGUnitType
maskContentUnits() const { return toSVGMaskElement(element())->maskContentUnitsCurrentValue(); }
RenderSVGResourceLinearGradient.h
41
virtual SVGUnitTypes::
SVGUnitType
gradientUnits() const { return m_attributes.gradientUnits(); }
RenderSVGResourceRadialGradient.h
41
virtual SVGUnitTypes::
SVGUnitType
gradientUnits() const { return m_attributes.gradientUnits(); }
RenderSVGResourceFilter.h
76
SVGUnitTypes::
SVGUnitType
filterUnits() const { return toSVGFilterElement(element())->filterUnitsCurrentValue(); }
77
SVGUnitTypes::
SVGUnitType
primitiveUnits() const { return toSVGFilterElement(element())->primitiveUnitsCurrentValue(); }
RenderSVGResourceGradient.h
57
virtual SVGUnitTypes::
SVGUnitType
gradientUnits() const = 0;
RenderSVGResourceClipper.h
73
SVGUnitTypes::
SVGUnitType
clipPathUnits() const { return toSVGClipPathElement(element())->clipPathUnitsCurrentValue(); }
RenderSVGResourceMasker.cpp
118
SVGUnitTypes::
SVGUnitType
contentUnits = toSVGMaskElement(element())->maskContentUnitsCurrentValue();
RenderSVGResourceClipper.cpp
241
SVGUnitTypes::
SVGUnitType
contentUnits = toSVGClipPathElement(element())->clipPathUnitsCurrentValue();
SVGRenderTreeAsText.cpp
157
static TextStream& operator<<(TextStream& ts, const SVGUnitTypes::
SVGUnitType
& unitType)
159
ts << SVGPropertyTraits<SVGUnitTypes::
SVGUnitType
>::toString(unitType);
459
static inline void writeCommonGradientProperties(TextStream& ts, SVGSpreadMethodType spreadMethod, const AffineTransform& gradientTransform, SVGUnitTypes::
SVGUnitType
gradientUnits)
Completed in 2509 milliseconds