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

123

/macosx-10.9.5/RubyCocoa-80/RubyCocoa/sample/Fortune.wdgt/
H A DFortune.js104 var animation = {duration:0, starttime:0, to:1.0, now:1.0, from:0.0, firstElement:null, timer:null};
109 if (animation.timer != null) // reset the animation timer value, in case a value was left behind
111 clearInterval (animation.timer);
112 animation.timer = null;
117 animation.duration = 500; // animation time, in ms
118 animation.starttime = starttime; // specify the start time
119 animation.firstElement = document.getElementById ('quote'); // specify the element to fade
120 animation
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/blackberry/
H A DLayerAnimation.h41 static PassRefPtr<LayerAnimation> create(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& name, double timeOffset) argument
43 return adoptRef(new LayerAnimation(values, boxSize, animation, name, timeOffset));
48 LayerAnimation* animation = new LayerAnimation(*this); local
49 // The cloned animation should get a different timeOffset if it's paused.
50 animation->m_timeOffset = timeOffset;
52 return adoptRef(animation);
69 static int idFromAnimation(const Animation* animation) { return reinterpret_cast<int>(animation); } argument
70 bool isEqualToAnimation(const Animation* animation) const { return idFromAnimation(animation)
89 LayerAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& name, double timeOffset) argument
[all...]
H A DLayerCompositingThread.cpp487 LayerAnimation* animation = m_suspendedAnimations[i].get(); local
488 // From looking at the WebCore code, it appears that when the animation
491 double elapsedTime = animation->timeOffset();
492 animation->apply(this, elapsedTime);
497 LayerAnimation* animation = m_runningAnimations[i].get(); local
498 double elapsedTime = (m_suspendTime ? m_suspendTime : currentTime) - animation->startTime() + animation->timeOffset();
499 animation->apply(this, elapsedTime);
500 if (!animation->finished())
518 LayerAnimation* animation local
[all...]
H A DGraphicsLayerBlackBerry.cpp413 bool GraphicsLayerBlackBerry::addAnimation(const KeyframeValueList& values, const IntSize& boxSize, const Animation* animation, const String& animationName, double timeOffset) argument
416 if (!animation || animation->isEmptyOrZeroDuration() || values.size() < 2)
423 // Remove any running animation for the same property.
425 // WebCore might be adding an animation with the same name, but for a different property
426 removeAnimationByIdAndProperty(LayerAnimation::idFromAnimation(animation), values.property(), m_runningAnimations);
427 removeAnimationByIdAndProperty(LayerAnimation::idFromAnimation(animation), values.property(), m_suspendedAnimations);
429 RefPtr<LayerAnimation> layerAnimation = LayerAnimation::create(values, boxSize, animation, animationName, timeOffset);
432 fprintf(stderr, "LayerAnimation 0x%08x: Adding animation %s for property %d\n", (int)layerAnimation.get(), animationName.latin1().data(), values.property());
446 while (RefPtr<LayerAnimation> animation
[all...]
H A DLayerCompositingThread.h88 void addAnimation(PassRefPtr<LayerAnimation> animation) { m_animations.append(animation); } argument
149 // Returns true if we have an animation
224 void addAnimation(LayerAnimation* animation) { m_runningAnimations.append(animation); } argument
/macosx-10.9.5/WebCore-7537.78.1/platform/animation/
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(o.animation(i)));
59 if (*animation(i) != *o.animation(i))
H A DAnimationList.h54 Animation* animation(size_t i) { return m_animations[i].get(); } function in class:WebCore::AnimationList
55 const Animation* animation(size_t i) const { return m_animations[i].get(); } function in class:WebCore::AnimationList
/macosx-10.9.5/WebCore-7537.78.1/svg/animation/
H A DSMILTimeContainer.cpp64 void SMILTimeContainer::schedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
66 ASSERT(animation->timeContainer() == this);
68 ASSERT(animation->hasValidAttributeName());
78 ASSERT(!scheduled->contains(animation));
79 scheduled->append(animation);
81 SMILTime nextFireTime = animation->nextProgressTime();
86 void SMILTimeContainer::unschedule(SVGSMILElement* animation, SVGElement* target, const QualifiedName& attributeName) argument
88 ASSERT(animation->timeContainer() == this);
97 size_t idx = scheduled->find(animation);
280 SVGSMILElement* animation local
[all...]
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebAnimation_p.h45 RefPtr<WebCore::Animation> animation; member in class:BlackBerry::WebKit::WebAnimationPrivate
H A DWebAnimation.cpp42 tmp.d->animation = Animation::create();
43 tmp.d->animation->setDuration(duration);
55 tmp.d->animation = Animation::create();
56 tmp.d->animation->setDuration(duration);
H A DWebOverlayOverride.cpp76 void WebOverlayOverride::addAnimation(const WebAnimation& animation) argument
82 RefPtr<LayerAnimation> layerAnimation = LayerAnimation::create(animation.d->keyframes, boxSize, animation.d->animation.get(), animation.d->name, 0.0);
H A DWebOverlay.cpp135 void WebOverlay::addAnimation(const WebAnimation& animation) argument
137 d->addAnimation(animation.d->name, animation.d->animation.get(), animation.d->keyframes);
316 void WebOverlayPrivateWebKitThread::addAnimation(const String& name, Animation* animation, const KeyframeValueList& keyframes) argument
319 m_layer->addAnimation(keyframes, size, animation, name, 0);
613 void WebOverlayPrivateCompositingThread::addAnimation(const String& name, Animation* animation, const KeyframeValueList& keyframes) argument
616 RefPtr<LayerAnimation> layerAnimation = LayerAnimation::create(keyframes, boxSize, animation, name, 0.0);
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/mac/
H A DPlatformCAAnimationMac.mm43 static bool hasNonZeroBeginTimeFlag(const PlatformCAAnimation* animation)
45 return [[animation->platformAnimation() valueForKey:WKNonZeroBeginTimeFlag] boolValue];
48 static void setNonZeroBeginTimeFlag(PlatformCAAnimation* animation, bool value)
50 [animation->platformAnimation() setValue:[NSNumber numberWithBool:value] forKey:WKNonZeroBeginTimeFlag];
159 PassRefPtr<PlatformCAAnimation> PlatformCAAnimation::create(PlatformAnimationRef animation)
161 return adoptRef(new PlatformCAAnimation(animation));
173 PlatformCAAnimation::PlatformCAAnimation(PlatformAnimationRef animation)
175 if ([static_cast<CAAnimation*>(animation) isKindOfClass:[CABasicAnimation class]])
177 else if ([static_cast<CAAnimation*>(animation) isKindOfClass:[CAKeyframeAnimation class]])
184 m_animation = static_cast<CAPropertyAnimation*>(animation);
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/ca/win/
H A DPlatformCAAnimationWin.cpp151 PassRefPtr<PlatformCAAnimation> PlatformCAAnimation::create(PlatformAnimationRef animation) argument
153 return adoptRef(new PlatformCAAnimation(animation));
167 PlatformCAAnimation::PlatformCAAnimation(PlatformAnimationRef animation) argument
169 if (CACFAnimationGetClass(animation) == kCACFBasicAnimation)
171 else if (CACFAnimationGetClass(animation) == kCACFKeyframeAnimation)
178 m_animation = animation;
183 RefPtr<PlatformCAAnimation> animation = create(animationType(), keyPath()); local
185 animation->setBeginTime(beginTime());
186 animation->setDuration(duration());
187 animation
[all...]
/macosx-10.9.5/WebCore-7537.78.1/page/animation/
H A DKeyframeAnimation.h40 // A KeyframeAnimation tracks the state of an explicit animation
44 static PassRefPtr<KeyframeAnimation> create(const Animation* animation, RenderObject* renderer, int index, CompositeAnimation* compositeAnimation, RenderStyle* unanimatedStyle) argument
46 return adoptRef(new KeyframeAnimation(animation, renderer, index, compositeAnimation, unanimatedStyle));
87 KeyframeAnimation(const Animation* animation, RenderObject*, int index, CompositeAnimation*, RenderStyle* unanimatedStyle);
90 // Get the styles for the given property surrounding the current animation time and the progress between them.
96 // The order in which this animation appears in the animation-name style.
100 // The style just before we started animation
H A DImplicitAnimation.h42 static PassRefPtr<ImplicitAnimation> create(const Animation* animation, CSSPropertyID animatingProperty, RenderObject* renderer, CompositeAnimation* compositeAnimation, RenderStyle* fromStyle) argument
44 return adoptRef(new ImplicitAnimation(animation, animatingProperty, renderer, compositeAnimation, fromStyle));
90 bool m_overridden; // true when there is a keyframe animation that overrides the transitioning property
H A DAnimationController.cpp81 RefPtr<CompositeAnimation> animation = m_compositeAnimations.take(renderer); local
82 if (!animation)
84 animation->clearRenderer();
85 return animation->isSuspended();
240 // Fire events right away, to avoid a flash of unanimated style after an animation completes, and before
247 const CompositeAnimation* animation = m_compositeAnimations.get(renderer); local
248 if (!animation)
251 return animation->isAnimatingProperty(property, false, isRunningNow);
256 const CompositeAnimation* animation = m_compositeAnimations.get(renderer); local
257 if (!animation)
410 addToAnimationsWaitingForStyle(AnimationBase* animation) argument
434 addToAnimationsWaitingForStartTimeResponse(AnimationBase* animation, bool willGetResponse) argument
481 animationWillBeRemoved(AnimationBase* animation) argument
[all...]
/macosx-10.9.5/WebCore-7537.78.1/css/
H A DCSSToStyleMap.cpp302 void CSSToStyleMap::mapAnimationDelay(Animation* animation, CSSValue* value) argument
305 animation->setDelay(Animation::initialAnimationDelay());
313 animation->setDelay(primitiveValue->computeTime<double, CSSPrimitiveValue::Seconds>());
343 void CSSToStyleMap::mapAnimationDuration(Animation* animation, CSSValue* value) argument
346 animation->setDuration(Animation::initialAnimationDuration());
354 animation->setDuration(primitiveValue->computeTime<double, CSSPrimitiveValue::Seconds>());
384 void CSSToStyleMap::mapAnimationIterationCount(Animation* animation, CSSValue* value) argument
387 animation->setIterationCount(Animation::initialAnimationIterationCount());
396 animation->setIterationCount(Animation::IterationCountInfinite);
398 animation
433 mapAnimationProperty(Animation* animation, CSSValue* value) argument
457 mapAnimationTimingFunction(Animation* animation, CSSValue* value) argument
[all...]
H A DMediaFeatureNames.h75 macro(animation, "-webkit-animation") \
/macosx-10.9.5/WebCore-7537.78.1/platform/mac/
H A DWebWindowAnimation.h37 - (void)setSubAnimation:(NSAnimation *)animation;
H A DWebVideoFullscreenController.mm63 - (void)requestExitFullscreenWithAnimation:(BOOL)animation;
267 // Make sure we support queuing animation if the previous one isn't over yet
291 // This will disable scale animation
310 // This will disable scale animation
314 // We have to retain ourselves because we want to be alive for the end of the animation.
381 - (void)requestExitFullscreenWithAnimation:(BOOL)animation
386 _forceDisableAnimation = !animation;
472 // We support queuing animation, that means that we'll correctly
473 // interrupt the running animation, and queue the next one.
483 // Interrupt any running animation
[all...]
/macosx-10.9.5/pyobjc-42/2.5/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsanimation.py6 def animationShouldStart_(self, animation):
/macosx-10.9.5/pyobjc-42/pyobjc/pyobjc-framework-Cocoa/PyObjCTest/
H A Dtest_nsanimation.py6 def animationShouldStart_(self, animation):
/macosx-10.9.5/python_modules-35/matplotlib/
H A DMakefile14 ed - $(DIR)/lib/matplotlib/animation.py < lib_matplotlib_animation.py.ed
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/clutter/
H A DGraphicsLayerClutter.cpp994 fillMode = PlatformClutterAnimation::Forwards; // Use "forwards" rather than "removed" because the style system will remove the animation when it is finished. This avoids a flash.
997 fillMode = PlatformClutterAnimation::Both; // Use "both" rather than "backwards" because the style system will remove the animation when it is finished. This avoids a flash.
1039 bool GraphicsLayerClutter::setTransformAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* keyframeAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize) argument
1047 bool forwards = animation->directionIsForwards();
1083 timingFunctions.append(timingFunctionForAnimationValue(forwards ? curValue : valueList.at(index - 1), *animation));
1104 bool GraphicsLayerClutter::setTransformAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* basicAnim, int functionIndex, TransformOperation::OperationType transformOpType, bool isMatrixAnimation, const IntSize& boxSize) argument
1108 bool forwards = animation->directionIsForwards();
1122 // So fall back to software animation, But it's not sure in clutter case.
1158 // for a timing function. Even in the reversing animation case, the first keyframe provides the timing function.
1159 const TimingFunction* timingFunction = timingFunctionForAnimationValue(valueList.at(0), *animation);
1169 appendToUncommittedAnimations(const KeyframeValueList& valueList, const TransformOperations* operations, const Animation* animation, const String& animationName, const IntSize& boxSize, int animationIndex, double timeOffset, bool isMatrixAnimation) argument
1192 createTransformAnimationsFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset, const IntSize& boxSize) argument
1224 createAnimationFromKeyframes(const KeyframeValueList& valueList, const Animation* animation, const String& animationName, double timeOffset) argument
1320 setAnimationEndpoints(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* basicAnim) argument
1347 setAnimationKeyframes(const KeyframeValueList& valueList, const Animation* animation, PlatformClutterAnimation* keyframeAnim) argument
[all...]

Completed in 319 milliseconds

123