HomeSort by relevance Sort by last modified time
    Searched refs:anim1 (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimelineTest.cpp 83 RefPtr<Animation> anim1 = Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::KeyframeVector()), timing); local
85 RefPtr<Player> player1 = timeline->play(anim1.get());
  /frameworks/base/core/java/android/transition/
Crossfade.java 211 ObjectAnimator anim1 = null; local
214 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 0, 1);
216 anim1 = ObjectAnimator.ofFloat(view, View.ALPHA, 0, 1);
235 if (anim1 != null) {
236 set.playTogether(anim1);
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationCloning.java 80 ObjectAnimator anim1 = ObjectAnimator.ofFloat(balls.get(0), "y", local
82 ObjectAnimator anim2 = anim1.clone();
84 anim1.addUpdateListener(this);
101 animation.playTogether(anim1, anim2, s1);
  /packages/apps/Browser/src/com/android/browser/
NavigationBarTablet.java 273 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons, View.TRANSLATION_X, 0, - awidth); local
278 mAnimation.playTogether(anim1, anim2, anim3);
298 Animator anim1 = ObjectAnimator.ofFloat(mNavButtons, local
305 combo.playTogether(anim1, anim2, anim3);
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 424 * @param anim1
427 public void startAnimation(Animation anim1, Animation anim2) {
428 tab.startAnimation(anim1);
    [all...]

Completed in 155 milliseconds