HomeSort by relevance Sort by last modified time
    Searched defs:animations (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/ui/app_list/views/
pulsing_block_view.cc 36 // The animations loop infinitely.
63 std::vector<ui::LayerAnimationSequence*> animations; local
64 animations.push_back(opacity_sequence.release());
65 animations.push_back(transform_sequence.release());
66 layer->GetAnimator()->ScheduleTogether(animations);
  /external/replicaisland/src/com/replica/replicaisland/
SpriteComponent.java 20 * Provides an interface for controlling a sprite with animations. Manages a list of animations
76 final PhasedObjectManager animations = mAnimations; local
80 animations.commitUpdates();
84 if (animations.getCount() > 0 && currentAnimIndex != -1) {
93 mCurrentAnimation = (SpriteAnimation)animations.get(0);
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardFlip.java 239 * rotates it in or out depending on its current state. All of these animations
244 List<Animator> animations = new ArrayList<Animator>(); local
250 animations.add(cardView.getRotationAnimator(i, corner, isRotatingOut, false));
260 set.playTogether(animations);
275 List<Animator> animations = new ArrayList<Animator>(); local
280 animations.add(cardView.getFullRotationAnimator(i, corner, false));
288 set.playTogether(animations);
  /external/chromium_org/ash/wm/
session_state_animator_impl.cc 278 std::vector<ui::LayerAnimationSequence*> animations; local
279 animations.push_back(brightness_sequence.release());
280 animations.push_back(grayscale_sequence.release());
283 animations[0]->AddObserver(observer);
288 animator->StartTogether(animations);
403 // there were no aborted animations.
405 // multiple layers, to wait once a sequence of animations is finished in one
window_animations.cc 54 // Brightness/grayscale values for hide/show window animations.
361 // In tests |old_layer| is deleted here, as animations have zero duration.
433 std::vector<ui::LayerAnimationSequence*> animations; local
434 animations.push_back(brightness_sequence.release());
435 animations.push_back(grayscale_sequence.release());
437 return animations;
  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimations.cpp 212 Vector<OwnPtr<WebCompositorAnimation> > animations; local
213 CompositorAnimationsImpl::getAnimationOnCompositor(timing, startTime, timeOffset, keyframeEffect, animations, playerPlaybackRate);
214 ASSERT(!animations.isEmpty());
215 for (size_t i = 0; i < animations.size(); ++i) {
216 int id = animations[i]->id();
217 if (!layer->compositedLayerMapping()->mainGraphicsLayer()->addAnimation(animations[i].release())) {
218 // FIXME: We should know ahead of time whether these animations can be started.
234 // AnimationPlayers for CSS animations. But by the time we get
406 void CompositorAnimationsImpl::getAnimationOnCompositor(const Timing& timing, double startTime, double timeOffset, const KeyframeEffectModelBase& effect, Vector<OwnPtr<WebCompositorAnimation> >& animations, double playerPlaybackRate)
408 ASSERT(animations.isEmpty())
    [all...]
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 29 * Represents a group of Animations that should be played together.
42 * on an AnimationSet object, will be pushed down to all child animations.</li>
116 * @param shareInterpolator Pass true if all of the animations in this set
132 final ArrayList<Animation> animations = mAnimations; local
135 animation.mAnimations.add(animations.get(i).clone());
186 final ArrayList<Animation> animations = mAnimations; local
189 if (animations.get(i).hasAlpha()) {
214 * The transforms of the child animations are applied in the order
249 * Sets the start time of this animation and all child animations
258 final ArrayList<Animation> animations = mAnimations local
271 final ArrayList<Animation> animations = mAnimations; local
285 final ArrayList<Animation> animations = mAnimations; local
301 final ArrayList<Animation> animations = mAnimations; local
326 final ArrayList<Animation> animations = mAnimations; local
344 final ArrayList<Animation> animations = mAnimations; local
371 final ArrayList<Animation> animations = mAnimations; local
413 final ArrayList<Animation> animations = mAnimations; local
    [all...]
  /external/chromium_org/cc/animation/
layer_animation_controller.cc 106 // Ensures that the list of active animations on the main thread and the impl
116 // Remove finished impl side animations only after pushing,
117 // and only after the animations are deleted on the main thread
443 << "are no transform animations affecting bounds, non-animated transform "
446 // Compute bounds based on animations for which is_finished() is false.
447 // Do nothing if there are no such animations; in this case, it is assumed
532 // Any new animations owned by the main thread's controller are cloned and
550 // Scroll animations always start at the current scroll offset.
594 // Animations removed on the main thread should no longer affect pending
598 ScopedPtrVector<Animation>& animations = controller_impl->animations_ local
    [all...]
  /external/chromium_org/ui/compositor/
layer_animator_unittest.cc 52 std::vector<ui::LayerAnimationSequence*> animations; local
53 animations.push_back(first_sequence);
54 animations.push_back(second_sequence);
55 return animations;
97 // When notified that an animation has ended, stops all other animations.
210 // Checks that if the animator is a default animator, that implicit animations
243 // simultaneously and that all animations are advanced to their target values.
262 // simultaneously and that all animations are advanced to their target values.
371 // Schedule two non-threaded animations on separate properties. Both animations
445 std::vector<LayerAnimationSequence*> animations; local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 2849 Map<String, ResourceValue> animations = map.get(type); local
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 2472 ArrayList<Animator> animations = new ArrayList<Animator>(); local
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 2685 ArrayList<Animator> animations = new ArrayList<Animator>(); local
2822 ArrayList<Animator> animations = new ArrayList<Animator>(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
RenderStyle.h 118 friend class AnimatedStyleBuilder; // Used by Web Animations CSS. Sets the color styles
119 friend class CSSAnimatableValueFactory; // Used by Web Animations CSS. Gets visited and unvisited colors separately.
120 friend class CSSPropertyEquality; // Used by CSS animations. We can't allow them to animate based off visited colors.
904 const CSSAnimationData* animations() const { return rareNonInheritedData->m_animations.get(); } function in class:blink::RenderStyle
    [all...]
  /frameworks/base/policy/src/com/android/internal/policy/impl/
PhoneWindowManager.java 2339 final List<Animation> animations = set.getAnimations(); local
    [all...]

Completed in 795 milliseconds