OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SVGLengthType
(Results
1 - 6
of
6
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGLengthContext.h
32
enum
SVGLengthType
{
66
float convertValueToUserUnits(float, SVGLengthMode,
SVGLengthType
fromUnit, ExceptionState&) const;
67
float convertValueFromUserUnits(float, SVGLengthMode,
SVGLengthType
toUnit, ExceptionState&) const;
SVGLength.h
60
SVGLength(const SVGLengthContext&, float, SVGLengthMode = LengthModeOther,
SVGLengthType
= LengthTypeNumber);
63
SVGLengthType
unitType() const;
74
void setValue(const SVGLengthContext&, float, SVGLengthMode,
SVGLengthType
, ExceptionState&);
91
SVGLengthType
type = unitType();
106
SVGLengthType
toType = unitType();
107
SVGLengthType
fromType = from.unitType();
SVGLength.cpp
42
static inline
SVGLengthType
toSVGLengthType(unsigned short type)
45
return static_cast<
SVGLengthType
>(type);
48
static inline unsigned int storeUnit(SVGLengthMode mode,
SVGLengthType
type)
59
static inline
SVGLengthType
extractType(unsigned int unit)
66
static inline String lengthTypeToString(
SVGLengthType
type)
97
static
SVGLengthType
stringToLengthType(const CharType*& ptr, const CharType* end)
139
SVGLength::SVGLength(const SVGLengthContext& context, float value, SVGLengthMode mode,
SVGLengthType
unitType)
185
SVGLengthType
SVGLength::unitType() const
205
void SVGLength::setValue(const SVGLengthContext& context, float value, SVGLengthMode mode,
SVGLengthType
unitType, ExceptionState& exceptionState)
231
static bool parseValueInternal(const String& string, float& convertedNumber,
SVGLengthType
& type
[
all
...]
SVGLengthContext.cpp
89
float SVGLengthContext::convertValueToUserUnits(float value, SVGLengthMode mode,
SVGLengthType
fromUnit, ExceptionState& exceptionState) const
129
float SVGLengthContext::convertValueFromUserUnits(float value, SVGLengthMode mode,
SVGLengthType
toUnit, ExceptionState& exceptionState) const
SVGAnimatedLength.cpp
105
SVGLengthType
unitType = percentage < 0.5 ? fromSVGLength.unitType() : toSVGLength.unitType();
SVGAnimatedLengthList.cpp
115
SVGLengthType
unitType = toLengthList[i].unitType();
Completed in 105 milliseconds