/external/chromium_org/cc/animation/ |
animation_unittest.cc | 14 scoped_ptr<Animation> CreateAnimation(int iterations, double duration) { 25 scoped_ptr<Animation> CreateAnimation(int iterations) { 26 return CreateAnimation(iterations, 1); 30 scoped_ptr<Animation> anim(CreateAnimation(0)); 37 scoped_ptr<Animation> anim(CreateAnimation(1)); 45 scoped_ptr<Animation> anim(CreateAnimation(-1)); 53 scoped_ptr<Animation> anim(CreateAnimation(-1)); 62 scoped_ptr<Animation> anim(CreateAnimation(1)); 72 scoped_ptr<Animation> anim(CreateAnimation(1)); 82 scoped_ptr<Animation> anim(CreateAnimation(1)) [all...] |
layer_animation_controller_unittest.cc | 23 scoped_ptr<Animation> CreateAnimation(scoped_ptr<AnimationCurve> curve, 271 scoped_ptr<Animation> to_add(CreateAnimation( 300 scoped_ptr<Animation> to_add(CreateAnimation( 421 scoped_ptr<Animation> to_add(CreateAnimation( 473 scoped_ptr<Animation> to_add(CreateAnimation( 514 controller->AddAnimation(CreateAnimation( 518 controller->AddAnimation(CreateAnimation( 546 controller->AddAnimation(CreateAnimation( 555 scoped_ptr<Animation> to_add(CreateAnimation( 585 controller->AddAnimation(CreateAnimation( [all...] |
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
ReversingAnimation.java | 78 private void createAnimation() { 88 createAnimation(); 93 createAnimation(); 98 createAnimation();
|
AnimatorEvents.java | 118 private void createAnimation() { 156 createAnimation(); 161 createAnimation(); 166 createAnimation();
|
AnimationSeeking.java | 107 private void createAnimation() { 117 createAnimation(); 122 createAnimation();
|
AnimationCloning.java | 78 private void createAnimation() { 139 createAnimation();
|
AnimationLoading.java | 83 private void createAnimation() { 115 createAnimation();
|
CustomEvaluator.java | 125 private void createAnimation() { 137 createAnimation();
|
MultiPropertyAnimation.java | 85 private void createAnimation() { 139 createAnimation();
|
/packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/ |
CandidatesContainer.java | 395 mInAnimPushLeft = createAnimation(1.0f, 0, 0, 0, 0, 1.0f, 397 mOutAnimPushLeft = createAnimation(0, -1.0f, 0, 0, 1.0f, 0, 404 mInAnimPushRight = createAnimation(-1.0f, 0, 0, 0, 0, 1.0f, 406 mOutAnimPushRight = createAnimation(0, 1.0f, 0, 0, 1.0f, 0, 415 mInAnimPushUp = createAnimation(0, 0, 1.0f, 0, 0, 1.0f, 417 mOutAnimPushUp = createAnimation(0, 0, 0, -1.0f, 1.0f, 0, 424 mInAnimPushDown = createAnimation(0, 0, -1.0f, 0, 0, 1.0f, 426 mOutAnimPushDown = createAnimation(0, 0, 0, 1.0f, 1.0f, 0, 440 private Animation createAnimation(float xFrom, float xTo, float yFrom,
|
/external/chromium/chrome/browser/ui/views/location_bar/ |
suggested_text_view.cc | 25 animation_.reset(CreateAnimation()); 70 ui::Animation* SuggestedTextView::CreateAnimation() {
|
suggested_text_view.h | 42 ui::Animation* CreateAnimation();
|
/external/chromium_org/webkit/renderer/compositor_bindings/ |
web_compositor_support_impl.h | 36 virtual WebKit::WebAnimation* createAnimation(
|
web_compositor_support_impl.cc | 78 WebAnimation* WebCompositorSupportImpl::createAnimation(
|
/external/chromium_org/ui/views/animation/ |
bounds_animator_unittest.cc | 25 virtual SlideAnimation* CreateAnimation() OVERRIDE { 26 SlideAnimation* animation = BoundsAnimator::CreateAnimation();
|
bounds_animator.cc | 64 data.animation = CreateAnimation(); 160 SlideAnimation* BoundsAnimator::CreateAnimation() {
|
bounds_animator.h | 106 virtual ui::SlideAnimation* CreateAnimation();
|
/frameworks/base/core/java/android/transition/ |
Fade.java | 101 private Animator createAnimation(View view, float startAlpha, float endAlpha, 178 return createAnimation(endView, 0, 1, null); 281 return createAnimation(view, startAlpha, endAlpha, endListener); 337 return createAnimation(view, startAlpha, endAlpha, endListener);
|
/external/chromium_org/third_party/WebKit/public/platform/ |
WebCompositorSupport.h | 80 virtual WebAnimation* createAnimation(const WebAnimationCurve&, WebAnimation::TargetProperty, int animationId = 0) { return 0; }
|
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
GraphicsLayerTest.cpp | 94 OwnPtr<WebAnimation> floatAnimation(adoptPtr(Platform::current()->compositorSupport()->createAnimation(*curve, WebAnimation::TargetPropertyOpacity)));
|
/external/chromium_org/third_party/WebKit/Source/core/platform/graphics/chromium/ |
AnimationTranslationUtil.cpp | 269 OwnPtr<WebKit::WebAnimation> webAnimation = adoptPtr(Platform::current()->compositorSupport()->createAnimation(*curve, targetProperty, animationId));
|
/external/chromium_org/third_party/WebKit/Source/web/ |
LinkHighlight.cpp | 275 m_animation = adoptPtr(compositorSupport->createAnimation(*curve, WebAnimation::TargetPropertyOpacity));
|