Searched defs:animations (Results 1 - 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/animation/
H A DAnimationStack.cpp73 const Vector<Animation*>& animations = animationStack->m_activeAnimations; local
74 for (size_t i = 0; i < animations.size(); ++i) {
75 Animation* animation = animations[i];
H A DCompositorAnimations.cpp266 Vector<OwnPtr<blink::WebAnimation> > animations; local
267 CompositorAnimationsImpl::getAnimationOnCompositor(timing, keyframeEffect, animations);
268 ASSERT(!animations.isEmpty());
269 for (size_t i = 0; i < animations.size(); ++i) {
270 int id = animations[i]->id();
271 if (!layer->compositedLayerMapping()->mainGraphicsLayer()->addAnimation(animations[i].release())) {
272 // FIXME: We should know ahead of time whether these animations can be started.
476 const Timing& timing, const KeyframeAnimationEffect& effect, Vector<OwnPtr<blink::WebAnimation> >& animations)
478 ASSERT(animations.isEmpty());
531 animations
475 getAnimationOnCompositor( const Timing& timing, const KeyframeAnimationEffect& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) argument
[all...]
H A DCompositorAnimationsTest.cpp111 void getAnimationOnCompositor(Timing& timing, KeyframeAnimationEffect& effect, Vector<OwnPtr<blink::WebAnimation> >& animations) argument
113 return CompositorAnimationsImpl::getAnimationOnCompositor(timing, effect, animations);
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.cpp47 const CSSAnimationDataList* animations = keyframeStyle.animations(); local
48 ASSERT(animations && !animations->isEmpty());
49 return animations->animation(0)->timingFunction();
H A DRenderStyle.h113 friend class CSSPropertyAnimation; // Used by CSS animations. We can't allow them to animate based off visited colors.
117 friend class PropertyWrapperMaybeInvalidColor; // Used by CSS animations. We can't allow them to animate based off visited colors.
883 const CSSAnimationDataList* animations() const { return rareNonInheritedData->m_animations.get(); } function in class:WebCore::RenderStyle
905 // When set, this ensures that styles compare as different. Used during accelerated animations.
1833 if (transitions() || animations())
/external/chromium_org/ui/app_list/views/
H A Dpulsing_block_view.cc36 // The animations loop infinitely.
67 std::vector<ui::LayerAnimationSequence*> animations; local
68 animations.push_back(opacity_sequence.release());
69 animations.push_back(transform_sequence.release());
70 layer->GetAnimator()->ScheduleTogether(animations);
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
H A DCalculationBone.java1 package com.jme3.scene.plugins.blender.animations;
H A DArmatureHelper.java32 package com.jme3.scene.plugins.blender.animations;
H A DBoneContext.java1 package com.jme3.scene.plugins.blender.animations;
H A DIpo.java1 package com.jme3.scene.plugins.blender.animations;
H A DIpoHelper.java1 package com.jme3.scene.plugins.blender.animations;
/external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
H A DSkeletonLoader.java70 private ArrayList<Animation> animations; field in class:SkeletonLoader
125 assert elementStack.peek().equals("animations");
131 } else if (qName.equals("animations")) {
133 animations = new ArrayList<Animation>();
168 animations.add(animation);
236 if (animations != null) {
237 animations.clear();
269 if (animations == null) {
270 animations = new ArrayList<Animation>();
272 AnimData data = new AnimData(skeleton, animations);
[all...]
/external/chromium_org/ash/wm/
H A Dsession_state_animator.cc270 std::vector<ui::LayerAnimationSequence*> animations; local
271 animations.push_back(brightness_sequence.release());
272 animations.push_back(grayscale_sequence.release());
275 animations[0]->AddObserver(observer);
280 animator->StartTogether(animations);
H A Dwindow_animations.cc53 // Brightness/grayscale values for hide/show window animations.
354 // In tests |old_layer| is deleted here, as animations have zero duration.
483 std::vector<ui::LayerAnimationSequence*> animations; local
484 animations.push_back(brightness_sequence.release());
485 animations.push_back(grayscale_sequence.release());
487 return animations;
/external/chromium_org/third_party/WebKit/Source/core/animation/css/
H A DCSSAnimations.h53 // This includes updates to animations/transitions as well as the CompositableValueMaps to be applied.
56 void startAnimation(AtomicString& animationName, const HashSet<RefPtr<InertAnimation> >& animations) argument
60 newAnimation.animations = animations;
90 HashSet<RefPtr<InertAnimation> > animations; member in struct:WebCore::FINAL::NewAnimation
125 // Order is significant since it defines the order in which new animations
126 // will be started. Note that there may be multiple animations present
127 // with the same name, due to the way in which we split up animations with
143 // FIXME: This method is only used here and in the legacy animations
161 // the way in which we split up animations wit
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/animation/
H A DAnimControl.java77 * List of animations
131 * @param animations Set the animations that this <code>AnimControl</code>
132 * will be capable of playing. The animations should be compatible
135 public void setAnimations(HashMap<String, Animation> animations) { argument
136 animationMap = animations;
140 * Retrieve an animation from the list of animations.
297 * @return The names of all animations that this <code>AnimControl</code>
351 oc.writeStringSavableMap(animationMap, "animations", null);
359 animationMap = (HashMap<String, Animation>) in.readStringSavableMap("animations", nul
[all...]
/external/chromium_org/cc/animation/
H A Dlayer_animation_controller.cc62 ScopedPtrVector<Animation>& animations = active_animations_; local
63 animations.erase(cc::remove_if(&animations,
64 animations.begin(),
65 animations.end(),
67 animations.end());
87 ScopedPtrVector<Animation>& animations = active_animations_; local
88 animations.erase(
89 cc::remove_if(&animations,
90 animations
481 ScopedPtrVector<Animation>& animations = local
666 ScopedPtrVector<Animation>& animations = active_animations_; local
[all...]
/external/chromium_org/ui/compositor/
H A Dlayer_animator.cc172 const std::vector<LayerAnimationSequence*>& animations) {
176 for (iter = animations.begin(); iter != animations.end(); ++iter) {
193 for (iter = animations.begin(); iter != animations.end(); ++iter) {
200 // running animations that affect any of these properties, as well as
207 for (iter = animations.begin(); iter != animations.end(); ++iter)
212 // These animations (provided they don't animate any common properties) will
214 for (iter = animations
171 StartTogether( const std::vector<LayerAnimationSequence*>& animations) argument
225 ScheduleTogether( const std::vector<LayerAnimationSequence*>& animations) argument
[all...]
H A Dlayer_animator_unittest.cc51 std::vector<ui::LayerAnimationSequence*> animations; local
52 animations.push_back(first_sequence);
53 animations.push_back(second_sequence);
54 return animations;
96 // When notified that an animation has ended, stops all other animations.
179 // Checks that if the animator is a default animator, that implicit animations
212 // simultaneously and that all animations are advanced to their target values.
231 // simultaneously and that all animations are advanced to their target values.
341 // Schedule two non-threaded animations on separate properties. Both animations
416 std::vector<LayerAnimationSequence*> animations; local
[all...]
/external/jmonkeyengine/engine/src/blender/com/jme3/asset/
H A DBlenderKey.java501 private List<AnimData> animations; field in class:BlenderKey.LoadingResults
527 animations = new ArrayList<AnimData>();
647 * This method returns all loaded animations.
648 * @return all loaded animations
651 return animations;
/external/chromium_org/third_party/WebKit/Source/core/css/resolver/
H A DStyleResolver.cpp723 // FIXME: The CSSWG wants to specify that the effects of animations are applied before
764 CSSAnimationDataList* animations = state.style()->accessAnimations(); local
765 ASSERT(animations && !animations->isEmpty());
766 while (animations->animation(0)->name() != animationName)
767 animations->remove(0);
768 ASSERT(!animations->isEmpty() && animations->animation(0)->name() == animationName);
957 // FIXME: The CSSWG wants to specify that the effects of animations are applied before
1143 && !(state.style()->animations()
[all...]
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSComputedStyleDeclaration.cpp1095 // Note that initialAnimationDelay() is used for both transitions and animations
1108 // Note that initialAnimationDuration() is used for both transitions and animations
1176 // Note that initialAnimationTimingFunction() is used for both transitions and animations
1652 // If a compositor animation is running we may need to service animations
2434 return valueForAnimationDelay(style->animations());
2439 const CSSAnimationDataList* t = style->animations();
2450 return valueForAnimationDuration(style->animations());
2455 const CSSAnimationDataList* t = style->animations();
2467 const CSSAnimationDataList* t = style->animations();
2484 const CSSAnimationDataList* t = style->animations();
2515 const CSSAnimationDataList* animations = style->animations(); local
[all...]

Completed in 482 milliseconds