OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:animatedInteger
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/
SVGAnimatedInteger.cpp
30
: SVGAnimatedTypeAnimator(
AnimatedInteger
, animationElement, contextElement)
68
ASSERT(from->type() ==
AnimatedInteger
);
74
void SVGAnimatedIntegerAnimator::calculateAnimatedInteger(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, int fromInteger, int toInteger, int toAtEndOfDurationInteger, int&
animatedInteger
)
76
float animatedNumber =
animatedInteger
;
78
animatedInteger
= static_cast<int>(roundf(animatedNumber));
89
int&
animatedInteger
= animated->integer();
91
calculateAnimatedInteger(m_animationElement, percentage, repeatCount, fromInteger, toInteger, toAtEndOfDurationInteger,
animatedInteger
);
SVGAnimatedIntegerOptionalInteger.cpp
38
pair<int, int>&
animatedInteger
= animtedType->integerOptionalInteger();
42
animatedInteger
.first = 0;
43
animatedInteger
.second = 0;
45
animatedInteger
.first = static_cast<int>(roundf(firstNumber));
46
animatedInteger
.second = static_cast<int>(roundf(secondNumber));
Completed in 79 milliseconds