Searched refs:animation (Results 1 - 25 of 72) sorted by relevance

123

/macosx-10.10/WebCore-7600.1.25/platform/animation/
H A DAnimationList.h52 void append(PassRefPtr<Animation> animation) argument
54 ASSERT(animation);
55 m_animations.append(animation);
58 Animation& animation(size_t i) { return *m_animations[i]; } function in class:WebCore::AnimationList
59 const Animation& animation(size_t i) const { return *m_animations[i]; } function in class:WebCore::AnimationList
H A DAnimationList.cpp28 for (i = 0; i < size() && animation(i).test(); ++i) { } \
31 animation(i).propSet(animation(j).propGet()); \
37 m_animations.append(Animation::create(other.animation(i)));
59 if (animation(i) != other.animation(i))
/macosx-10.10/WebCore-7600.1.25/svg/animation/
H A DSMILTimeContainer.cpp62 void SMILTimeContainer::schedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
64 ASSERT(animation->timeContainer() == this);
66 ASSERT(animation->hasValidAttributeName());
76 ASSERT(!scheduled->contains(animation));
77 scheduled->append(animation);
79 SMILTime nextFireTime = animation->nextProgressTime();
84 void SMILTimeContainer::unschedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
86 ASSERT(animation->timeContainer() == this);
95 size_t idx = scheduled->find(animation);
282 SVGSMILElement* animation local
[all...]
/macosx-10.10/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DIndeterminateProgressSpinner.css89 -webkit-animation-name: discrete-spinner;
90 -webkit-animation-duration: 1s;
91 -webkit-animation-iteration-count: infinite;
92 -webkit-animation-timing-function: step-start;
H A DProbeSetDataGrid.css38 -webkit-animation-duration: 2s;
39 animation-timing-function: ease;
40 -webkit-animation-iteration-count: infinite;
41 -webkit-animation-name: blink-frame-highlight;
63 -webkit-animation-duration: 0.3s;
64 -webkit-animation-name: blink-probe-frame;
H A DDashboardContainerView.css101 -webkit-animation-duration: 0.4s;
126 -webkit-animation-name: slide-top-edge;
127 -webkit-animation-direction: reverse;
131 -webkit-animation-name: slide-bottom-edge;
135 -webkit-animation-name: slide-bottom-edge;
136 -webkit-animation-direction: reverse;
140 -webkit-animation-name: slide-top-edge;
H A DDebuggerDashboardView.css60 -webkit-animation-name: pulse-pause-button;
61 -webkit-animation-duration: 1s;
62 -webkit-animation-timing-function: ease-out;
63 -webkit-animation-iteration-count: infinite;
64 -webkit-animation-direction: alternate;
H A DTextEditor.css122 -webkit-animation-name: text-editor-bouncy;
123 -webkit-animation-duration: 750ms;
124 -webkit-animation-timing-function: ease-in-out;
153 -webkit-animation: "text-editor-highlight-fadeout" 2s;
161 -webkit-animation: "text-editor-hovered-expression-highlight-fadeout" 2s;
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm40 bool WebCore::hasExplicitBeginTime(CAAnimation *animation)
42 return [[animation valueForKey:WKExplicitBeginTimeFlag] boolValue];
45 void WebCore::setHasExplicitBeginTime(CAAnimation *animation, bool value)
47 [animation setValue:[NSNumber numberWithBool:value] forKey:WKExplicitBeginTimeFlag];
157 PassRefPtr<PlatformCAAnimation> PlatformCAAnimationMac::create(PlatformAnimationRef animation)
159 return adoptRef(new PlatformCAAnimationMac(animation));
171 PlatformCAAnimationMac::PlatformCAAnimationMac(PlatformAnimationRef animation)
173 if ([static_cast<CAAnimation*>(animation) isKindOfClass:[CABasicAnimation class]])
175 else if ([static_cast<CAAnimation*>(animation) isKindOfClass:[CAKeyframeAnimation class]])
182 m_animation = static_cast<CAPropertyAnimation*>(animation);
[all...]
/macosx-10.10/WebCore-7600.1.25/page/animation/
H A DAnimationController.cpp82 RefPtr<CompositeAnimation> animation = m_compositeAnimations.take(renderer); local
83 if (!animation)
85 animation->clearRenderer();
86 return animation->isSuspended();
96 CompositeAnimation& animation = *it->value; local
97 if (!animation.isSuspended() && animation.hasAnimations()) {
98 double t = animation.timeToNextService();
234 // Fire events right away, to avoid a flash of unanimated style after an animation completes, and before
241 const CompositeAnimation* animation local
247 const CompositeAnimation* animation = m_compositeAnimations.get(renderer); local
392 addToAnimationsWaitingForStyle(AnimationBase* animation) argument
414 addToAnimationsWaitingForStartTimeResponse(AnimationBase* animation, bool willGetResponse) argument
459 animationWillBeRemoved(AnimationBase* animation) argument
[all...]
H A DCompositeAnimation.cpp64 // an animation callback (see https://bugs.webkit.org/show_bug.cgi?id=22052)
100 const Animation& animation = targetStyle->transitions()->animation(i); local
101 bool isActiveTransition = !m_suspended && (animation.duration() || animation.delay() > 0);
103 Animation::AnimationMode mode = animation.animationMode();
107 CSSPropertyID prop = animation.property();
125 // If there is a running animation for this property, the transition is overridden
126 // and we have to use the unanimatedStyle from the animation. We do the test
137 // this animation t
235 const Animation& animation = targetStyle->animations()->animation(i); local
369 KeyframeAnimation* animation = it->value.get(); local
[all...]
H A DImplicitAnimation.h44 static PassRefPtr<ImplicitAnimation> create(const Animation& animation, CSSPropertyID animatingProperty, RenderElement* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle) argument
46 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
92 bool m_overridden; // true when there is a keyframe animation that overrides the transitioning property
H A DKeyframeAnimation.h40 // A KeyframeAnimation tracks the state of an explicit animation for a single RenderElement.
43 static RefPtr<KeyframeAnimation> create(const Animation& animation, RenderElement* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle) argument
45 return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle));
89 // Get the styles for the given property surrounding the current animation time and the progress between them.
95 // The order in which this animation appears in the animation-name style.
99 // The style just before we started animation
H A DAnimationBase.h67 // the animation is started. This may or may not require deferred response from the animator.
72 New, // animation just created, animation not running yet
75 StartWaitResponse, // animation started, waiting for response
76 Looping, // response received, animation running, loop timer running, waiting for fire
77 Ending, // received, animation running, end timer running, waiting for fire
78 PausedNew, // in pause mode when animation was created
79 PausedWaitTimer, // in pause mode when animation started
81 PausedWaitResponse, // animation paused when in STARTING state
82 PausedRun, // animation pause
145 setAnimation(const Animation& animation) argument
211 const Animation& animation() const { return *m_animation; } function in class:WebCore::AnimationBase
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp150 PassRefPtr<PlatformCAAnimation> PlatformCAAnimationWin::create(PlatformAnimationRef animation) argument
152 return adoptRef(new PlatformCAAnimationWin(animation));
166 PlatformCAAnimationWin::PlatformCAAnimationWin(PlatformAnimationRef animation) argument
168 if (CACFAnimationGetClass(animation) == kCACFBasicAnimation)
170 else if (CACFAnimationGetClass(animation) == kCACFKeyframeAnimation)
177 m_animation = animation;
182 RefPtr<PlatformCAAnimation> animation = create(animationType(), keyPath()); local
184 animation->setBeginTime(beginTime());
185 animation->setDuration(duration());
186 animation
[all...]
/macosx-10.10/WebCore-7600.1.25/rendering/style/
H A DKeyframeList.cpp37 const Animation& animation = keyframeStyle->animations()->animation(i); local
38 if (name == animation.name())
39 return animation.timingFunction().get();
/macosx-10.10/WebCore-7600.1.25/css/
H A DCSSToStyleMap.cpp325 void CSSToStyleMap::mapAnimationDelay(Animation* animation, CSSValue* value) argument
328 animation->setDelay(Animation::initialAnimationDelay());
336 animation->setDelay(primitiveValue->computeTime<double, CSSPrimitiveValue::Seconds>());
368 void CSSToStyleMap::mapAnimationDuration(Animation* animation, CSSValue* value) argument
371 animation->setDuration(Animation::initialAnimationDuration());
379 animation->setDuration(primitiveValue->computeTime<double, CSSPrimitiveValue::Seconds>());
411 void CSSToStyleMap::mapAnimationIterationCount(Animation* animation, CSSValue* value) argument
414 animation->setIterationCount(Animation::initialAnimationIterationCount());
423 animation->setIterationCount(Animation::IterationCountInfinite);
425 animation
460 mapAnimationProperty(Animation* animation, CSSValue* value) argument
484 mapAnimationTimingFunction(Animation* animation, CSSValue* value) argument
[all...]
H A DMediaFeatureNames.h75 macro(animation, "-webkit-animation") \
/macosx-10.10/WebKit2-7600.1.25/Shared/mac/
H A DRemoteLayerTreeTransaction.mm875 RemoteLayerTreeTextStream& RemoteLayerTreeTextStream::operator<<(const PlatformCAAnimationRemote::Properties& animation)
880 ts << animation.animationType;
882 ts << animation.keyPath;
884 if (animation.beginTime)
885 dumpProperty(ts, "beginTime", animation.beginTime);
887 if (animation.duration)
888 dumpProperty(ts, "duration", animation.duration);
890 if (animation.timeOffset)
891 dumpProperty(ts, "timeOffset", animation.timeOffset);
893 dumpProperty(ts, "repeatCount", animation
[all...]
/macosx-10.10/WebKit2-7600.1.25/WebProcess/WebPage/mac/
H A DPlatformCAAnimationRemote.mm70 - (void)animationDidStart:(CAAnimation *)animation
72 bool hasExplicitBeginTime = [[animation valueForKey:WKExplicitBeginTimeFlag] boolValue];
76 // We don't know what time CA used to commit the animation, so just use the current time
80 startTime = mediaTimeToCurrentTime([animation beginTime]);
82 _layerTreeHost->animationDidStart(_layerID, animation, startTime);
281 RefPtr<PlatformCAAnimation> animation = create(animationType(), keyPath());
283 animation->setBeginTime(beginTime());
284 animation->setDuration(duration());
285 animation->setSpeed(speed());
286 animation
[all...]
/macosx-10.10/WebCore-7600.1.25/platform/mac/
H A DWebWindowAnimation.h37 - (void)setSubAnimation:(NSAnimation *)animation;
/macosx-10.10/pyobjc-45/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsanimation.py6 def animationShouldStart_(self, animation):
/macosx-10.10/pyobjc-45/2.6/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsanimation.py6 def animationShouldStart_(self, animation):
/macosx-10.10/python_modules-40/Modules/matplotlib-1.1.1/
H A DMakefile14 ed - $(DIR)/lib/matplotlib/animation.py < lib_matplotlib_animation.py.ed
/macosx-10.10/python_modules-40/Modules/matplotlib-1.3.1/
H A DMakefile15 ed - $(DIR)/lib/matplotlib/animation.py < lib_matplotlib_animation.py.ed

Completed in 236 milliseconds

123