HomeSort by relevance Sort by last modified time
    Searched refs:animations (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/animation/
CompositorAnimationsImpl.h 51 static void getAnimationOnCompositor(const Timing&, double startTime, const KeyframeEffectModelBase&, Vector<OwnPtr<blink::WebAnimation> >& animations);
CompositorAnimations.cpp 201 Vector<OwnPtr<blink::WebAnimation> > animations; local
202 CompositorAnimationsImpl::getAnimationOnCompositor(timing, startTime, keyframeEffect, animations);
203 ASSERT(!animations.isEmpty());
204 for (size_t i = 0; i < animations.size(); ++i) {
205 int id = animations[i]->id();
206 if (!layer->compositedLayerMapping()->mainGraphicsLayer()->addAnimation(animations[i].release())) {
207 // FIXME: We should know ahead of time whether these animations can be started.
223 // AnimationPlayers for CSS animations. But by the time we get
407 void CompositorAnimationsImpl::getAnimationOnCompositor(const Timing& timing, double startTime, const KeyframeEffectModelBase& effect, Vector<OwnPtr<blink::WebAnimation> >& animations)
409 ASSERT(animations.isEmpty())
    [all...]
CompositorAnimationsTest.cpp 109 void getAnimationOnCompositor(Timing& timing, AnimatableValueKeyframeEffectModel& effect, Vector<OwnPtr<blink::WebAnimation> >& animations)
111 return CompositorAnimationsImpl::getAnimationOnCompositor(timing, std::numeric_limits<double>::quiet_NaN(), effect, animations);
    [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/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/ListViewExpandingCells/src/com/example/android/expandingcells/
ExpandingListView.java 265 ArrayList <Animator> animations = new ArrayList<Animator>();
282 animations.add(getAnimation(v, delta, delta));
287 animations.add(getAnimation(v, delta, delta));
294 animations.add(getAnimation(view, -yTranslateTop, yTranslateBottom));
297 animations.add(ObjectAnimator.ofFloat(view.findViewById(R.id.expanding_layout),
304 /* Play all the animations created above together at the same time. */
306 s.playTogether(animations);
476 ArrayList <Animator> animations = new ArrayList<Animator>();
481 animations.add(getAnimation(v, diff, diff));
487 animations.add(getAnimation(view, yTranslateTop, -yTranslateBottom))
    [all...]
  /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);
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
InsertionListView.java 132 ArrayList<Animator> animations = new ArrayList<Animator>();
147 animations.add(textAlphaAnimator);
179 animations.add(imgViewTranslation);
180 animations.add(imgViewScaleAnimator);
205 animations.add(animation);
215 animations.add(animation);
260 animations.add(animation);
269 set.playTogether(animations);
  /external/chromium_org/ui/compositor/
layer_animator.cc 169 const std::vector<LayerAnimationSequence*>& animations) {
173 for (iter = animations.begin(); iter != animations.end(); ++iter) {
193 for (iter = animations.begin(); iter != animations.end(); ++iter)
198 // running animations that affect any of these properties, as well as
205 for (iter = animations.begin(); iter != animations.end(); ++iter)
210 // These animations (provided they don't animate any common properties) will
212 for (iter = animations.begin(); iter != animations.end(); ++iter)
    [all...]
layer_animator.h 38 // all animations to complete immediately. The layer animation is ref counted
56 // No implicit animations when properties are set.
90 // Returns the default length of animations, including adjustment for slow
120 // Starts the animations to be run together, ensuring that the first elements
126 void StartTogether(const std::vector<LayerAnimationSequence*>& animations);
128 // Schedules the animations to be run together, ensuring that the first
134 void ScheduleTogether(const std::vector<LayerAnimationSequence*>& animations);
142 // Returns true if there is an animation in the queue (animations remain in
143 // the queue until they complete, so this includes running animations).
147 // property (animations remain in the queue until they complete, so thi
    [all...]
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...]
  /external/chromium_org/cc/animation/
layer_animation_controller.cc 105 // Ensures that the list of active animations on the main thread and the impl
115 // Remove finished impl side animations only after pushing,
116 // and only after the animations are deleted on the main thread
435 << "are no transform animations affecting bounds, non-animated transform "
438 // Compute bounds based on animations for which is_finished() is false.
439 // Do nothing if there are no such animations; in this case, it is assumed
511 // Any new animations owned by the main thread's controller are cloned and
529 // Scroll animations always start at the current scroll offset.
573 // Animations removed on the main thread should no longer affect pending
577 ScopedPtrVector<Animation>& animations = controller_impl->animations_ local
    [all...]
  /external/chromium_org/ash/wm/
session_state_animator.cc 268 std::vector<ui::LayerAnimationSequence*> animations; local
269 animations.push_back(brightness_sequence.release());
270 animations.push_back(grayscale_sequence.release());
273 animations[0]->AddObserver(observer);
278 animator->StartTogether(animations);
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;
  /build/target/board/generic/
BoardConfig.mk 65 # the latency will end up being an additional vsync period, and animations
  /external/chromium_org/chrome/browser/resources/print_preview/
print_preview_animations.js 5 // Counter used to give webkit animations unique names.
  /external/chromium_org/chrome/browser/resources/chromeos/login/
login_common.js 184 * Displays animations on successful authentication, that have to happen
194 * Displays animations that have to happen once login UI is fully displayed.
  /external/chromium_org/third_party/WebKit/Source/core/animation/css/
CSSAnimations.cpp 117 if (value->isInheritedValue() && parentStyle->animations())
118 timingFunction = parentStyle->animations()->timingFunctionList()[0];
240 // If we're in an animation style change, no animations can have started, been cancelled or changed play state.
246 const CSSAnimationData* animationData = style.animations();
308 // FIXME: cancelling, pausing, unpausing animations all query compositingState, which is not necessarily up to date here
587 // Properties being animated by animations don't get values from transitions applied.
    [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 2664 ArrayList<Animator> animations = new ArrayList<Animator>(); local
2801 ArrayList<Animator> animations = new ArrayList<Animator>(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSComputedStyleDeclaration.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
StyleAdjuster.cpp 261 // If we have first-letter pseudo style, transitions, or animations, do not share this style.
262 if (style->hasPseudoStyle(FIRST_LETTER) || style->transitions() || style->animations())
  /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...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/ui/
navigation_list.js 220 * need to omit animations for such temporary items.

Completed in 1897 milliseconds

1 2