OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:m_animation
(Results
1 - 11
of
11
) sorted by null
/external/webkit/Source/WebCore/platform/graphics/ca/mac/
PlatformCAAnimationMac.mm
162
m_animation
.adoptNS([[CABasicAnimation animationWithKeyPath:keyPath] retain]);
164
m_animation
.adoptNS([[CAKeyframeAnimation animationWithKeyPath:keyPath] retain]);
178
m_animation
= static_cast<CAPropertyAnimation*>(animation);
223
return
m_animation
.get();
228
return [
m_animation
.get() keyPath];
233
return [
m_animation
.get() beginTime];
238
[
m_animation
.get() setBeginTime:value];
250
return [
m_animation
.get() duration];
255
[
m_animation
.get() setDuration:value];
260
return [
m_animation
.get() speed]
[
all
...]
PlatformCALayerMac.mm
357
[m_layer.get() addAnimation:animation->
m_animation
.get() forKey:key];
/external/webkit/Source/WebCore/platform/graphics/ca/win/
PlatformCAAnimationWin.cpp
150
m_animation
.adoptCF(CACFAnimationCreate(kCACFBasicAnimation));
152
m_animation
.adoptCF(CACFAnimationCreate(kCACFKeyframeAnimation));
155
CACFAnimationSetKeyPath(
m_animation
.get(), s.get());
169
m_animation
= animation;
212
return
m_animation
.get();
217
return CACFAnimationGetKeyPath(
m_animation
.get());
222
return CACFAnimationGetBeginTime(
m_animation
.get());
227
CACFAnimationSetBeginTime(
m_animation
.get(), value);
232
return CACFAnimationGetDuration(
m_animation
.get());
237
CACFAnimationSetDuration(
m_animation
.get(), value)
[
all
...]
/external/webkit/Source/WebCore/page/animation/
KeyframeAnimation.cpp
72
if (
m_animation
->duration() &&
m_animation
->iterationCount() != Animation::IterationCountInfinite)
73
elapsedTime = min(elapsedTime,
m_animation
->duration() *
m_animation
->iterationCount());
75
double fractionalTime =
m_animation
->duration() ? (elapsedTime /
m_animation
->duration()) : 1;
87
if (
m_animation
->iterationCount() != Animation::IterationCountInfinite)
88
iteration = min(iteration,
m_animation
->iterationCount() - 1);
91
bool reversing = (
m_animation
->direction() == Animation::AnimationDirectionAlternate) && (iteration & 1);
153
if (isNew() &&
m_animation
->playState() == AnimPlayStatePlaying
[
all
...]
AnimationBase.cpp
[
all
...]
AnimationBase.h
140
void setAnimation(const Animation* anim) {
m_animation
= const_cast<Animation*>(anim); }
189
const Animation* animation() const { return
m_animation
.get(); }
232
RefPtr<Animation>
m_animation
;
member in class:WebCore::AnimationBase
CompositeAnimation.cpp
511
int count = keyframeAnim->
m_animation
->iterationCount();
/external/webkit/Source/WebCore/platform/graphics/ca/
PlatformCAAnimation.h
145
RetainPtr<CAPropertyAnimation>
m_animation
;
member in class:WebCore::PlatformCAAnimation
147
RetainPtr<CACFAnimationRef>
m_animation
;
member in class:WebCore::PlatformCAAnimation
GraphicsLayerCA.h
365
:
m_animation
(caAnimation)
372
RefPtr<PlatformCAAnimation>
m_animation
;
member in struct:WebCore::GraphicsLayerCA::LayerPropertyAnimation
GraphicsLayerCA.cpp
[
all
...]
/external/webkit/Source/WebCore/svg/animation/
SVGSMILElement.cpp
75
m_animation
= 0;
81
,
m_animation
(animation)
88
SVGSMILElement*
m_animation
;
member in class:WebCore::ConditionEventListener
95
return
m_animation
== conditionEventListener->
m_animation
&& m_condition == conditionEventListener->m_condition;
101
if (!
m_animation
)
103
m_animation
->handleConditionEvent(event, m_condition);
[
all
...]
Completed in 608 milliseconds