OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:m_unitType
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAngle.cpp
34
:
m_unitType
(SVG_ANGLETYPE_UNSPECIFIED)
41
switch (
m_unitType
) {
58
switch (
m_unitType
) {
115
switch (
m_unitType
) {
156
m_unitType
= SVG_ANGLETYPE_UNSPECIFIED;
170
m_unitType
= unitType;
181
if (unitType !=
m_unitType
)
182
m_unitType
= static_cast<SVGAngleType>(unitType);
189
if (unitType == SVG_ANGLETYPE_UNKNOWN ||
m_unitType
== SVG_ANGLETYPE_UNKNOWN || unitType > SVG_ANGLETYPE_GRAD) {
194
if (unitType ==
m_unitType
)
[
all
...]
SVGAngle.h
44
SVGAngleType unitType() const { return
m_unitType
; }
59
SVGAngleType
m_unitType
;
/external/chromium_org/third_party/WebKit/Source/core/animation/
AnimatableNumber.h
82
,
m_unitType
(unitType)
86
ASSERT(
m_unitType
!= UnitTypeInvalid);
111
NumberUnitType
m_unitType
;
AnimatableNumber.cpp
67
if (!leftAddend->m_isCalc && !rightAddend->m_isCalc && leftAddend->
m_unitType
== rightAddend->
m_unitType
)
68
return create(leftAddend->m_number + rightAddend->m_number, leftAddend->
m_unitType
);
91
ASSERT(
m_unitType
== UnitTypeNumber);
98
if (
m_unitType
== UnitTypeLength)
100
if (
m_unitType
== UnitTypePercentage)
132
ASSERT(
m_unitType
!= UnitTypeInvalid);
137
m_cachedCSSPrimitiveValue = CSSPrimitiveValue::create(m_number, static_cast<CSSPrimitiveValue::UnitTypes>(numberTypeToPrimitiveUnit(
m_unitType
)));
150
return AnimatableNumber::create(m_number * factor,
m_unitType
);
Completed in 705 milliseconds