OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGUnitTypes
(Results
1 - 25
of
42
) sorted by null
1
2
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGUnitTypes.h
28
class
SVGUnitTypes
: public RefCounted<
SVGUnitTypes
> {
37
SVGUnitTypes
() { }
41
struct SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType> {
42
static unsigned highestEnumValue() { return
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX; }
44
static String toString(
SVGUnitTypes
::SVGUnitType type)
47
case
SVGUnitTypes
::SVG_UNIT_TYPE_UNKNOWN:
49
case
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE:
51
case
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX:
59
static
SVGUnitTypes
::SVGUnitType fromString(const String& value
[
all
...]
SVGUnitTypes.idl
26
interface
SVGUnitTypes
{
PatternAttributes.h
39
, m_patternUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
40
, m_patternContentUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE)
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;
GradientAttributes.h
23
#include "core/svg/
SVGUnitTypes
.h"
30
, m_gradientUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
39
SVGUnitTypes
::SVGUnitType gradientUnits() const { return static_cast<
SVGUnitTypes
::SVGUnitType>(m_gradientUnits); }
49
void setGradientUnits(
SVGUnitTypes
::SVGUnitType unitType)
SVGLengthContext.h
23
#include "core/svg/
SVGUnitTypes
.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&);
SVGMaskElement.cpp
34
DEFINE_ANIMATED_ENUMERATION(SVGMaskElement, SVGNames::maskUnitsAttr, MaskUnits, maskUnits,
SVGUnitTypes
::SVGUnitType)
35
DEFINE_ANIMATED_ENUMERATION(SVGMaskElement, SVGNames::maskContentUnitsAttr, MaskContentUnits, maskContentUnits,
SVGUnitTypes
::SVGUnitType)
56
, m_maskUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
57
, m_maskContentUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE)
97
SVGUnitTypes
::SVGUnitType propertyValue = SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType>::fromString(value);
102
SVGUnitTypes
::SVGUnitType propertyValue = SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType>::fromString(value);
SVGMaskElement.h
30
#include "core/svg/
SVGUnitTypes
.h"
56
DECLARE_ANIMATED_ENUMERATION(MaskUnits, maskUnits,
SVGUnitTypes
::SVGUnitType)
57
DECLARE_ANIMATED_ENUMERATION(MaskContentUnits, maskContentUnits,
SVGUnitTypes
::SVGUnitType)
SVGClipPathElement.cpp
32
DEFINE_ANIMATED_ENUMERATION(SVGClipPathElement, SVGNames::clipPathUnitsAttr, ClipPathUnits, clipPathUnits,
SVGUnitTypes
::SVGUnitType)
43
, m_clipPathUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE)
72
SVGUnitTypes
::SVGUnitType propertyValue = SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType>::fromString(value);
SVGClipPathElement.h
29
#include "core/svg/
SVGUnitTypes
.h"
54
DECLARE_ANIMATED_ENUMERATION(ClipPathUnits, clipPathUnits,
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)
52
ASSERT(type !=
SVGUnitTypes
::SVG_UNIT_TYPE_UNKNOWN);
53
if (type ==
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE) {
65
FloatPoint SVGLengthContext::resolvePoint(const SVGElement* context,
SVGUnitTypes
::SVGUnitType type, const SVGLength& x, const SVGLength& y)
67
ASSERT(type !=
SVGUnitTypes
::SVG_UNIT_TYPE_UNKNOWN);
68
if (type ==
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE) {
77
float SVGLengthContext::resolveLength(const SVGElement* context,
SVGUnitTypes
::SVGUnitType type, const SVGLength& x)
79
ASSERT(type !=
SVGUnitTypes
::SVG_UNIT_TYPE_UNKNOWN);
80
if (type ==
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE) {
SVGFilterElement.h
34
#include "core/svg/
SVGUnitTypes
.h"
67
DECLARE_ANIMATED_ENUMERATION(FilterUnits, filterUnits,
SVGUnitTypes
::SVGUnitType)
68
DECLARE_ANIMATED_ENUMERATION(PrimitiveUnits, primitiveUnits,
SVGUnitTypes
::SVGUnitType)
SVGPatternElement.h
36
#include "core/svg/
SVGUnitTypes
.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)
57
, m_gradientUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
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)
62
, m_filterUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
63
, m_primitiveUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE)
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)
69
, m_patternUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX)
70
, m_patternContentUnits(
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE)
107
SVGUnitTypes
::SVGUnitType propertyValue = SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType>::fromString(value);
112
SVGUnitTypes
::SVGUnitType propertyValue = SVGPropertyTraits<
SVGUnitTypes
::SVGUnitType>::fromString(value);
SVGGradientElement.h
31
#include "core/svg/
SVGUnitTypes
.h"
103
DECLARE_ANIMATED_ENUMERATION(GradientUnits, gradientUnits,
SVGUnitTypes
::SVGUnitType)
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
RenderSVGResourceMasker.h
25
#include "core/svg/
SVGUnitTypes
.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;
RenderSVGResourceMasker.cpp
118
SVGUnitTypes
::SVGUnitType contentUnits = toSVGMaskElement(element())->maskContentUnitsCurrentValue();
119
if (contentUnits ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
180
if (maskElement->maskContentUnitsCurrentValue() ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
RenderSVGResourceClipper.cpp
130
if (toSVGClipPathElement(element())->clipPathUnitsCurrentValue() ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
165
&& toSVGClipPathElement(element())->clipPathUnitsCurrentValue() ==
SVGUnitTypes
::SVG_UNIT_TYPE_USERSPACEONUSE) {
241
SVGUnitTypes
::SVGUnitType contentUnits = toSVGClipPathElement(element())->clipPathUnitsCurrentValue();
242
if (contentUnits ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
332
if (clipPathElement->clipPathUnitsCurrentValue() ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
365
if (toSVGClipPathElement(element())->clipPathUnitsCurrentValue() ==
SVGUnitTypes
::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX) {
RenderSVGResourceClipper.h
73
SVGUnitTypes
::SVGUnitType clipPathUnits() const { return toSVGClipPathElement(element())->clipPathUnitsCurrentValue(); }
SVGRenderTreeAsText.h
46
class
SVGUnitTypes
;
Completed in 221 milliseconds
1
2