OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:anim1
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/animation/
DocumentTimelineTest.cpp
206
RefPtr<Animation>
anim1
= Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::KeyframeVector()), timing);
local
208
Player* player1 = timeline->play(
anim1
.get());
239
RefPtr<Animation>
anim1
= Animation::create(element.get(), KeyframeAnimationEffect::create(KeyframeAnimationEffect::KeyframeVector()), timingForwardFill);
local
244
timeline->play(
anim1
.get());
/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);
/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
);
/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);
Completed in 115 milliseconds