HomeSort by relevance Sort by last modified time
    Searched defs:animate (Results 1 - 25 of 276) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/skia/tools/viewer/
GMSlide.cpp 30 bool GMSlide::animate(const SkAnimTimer& timer) { function in class:GMSlide
31 return fGM->animate(timer);
SkottieSlide.cpp 53 bool SkottieSlide::animate(const SkAnimTimer& timer) { function in class:SkottieSlide
Slide.h 28 virtual bool animate(const SkAnimTimer&) { return false; } function in class:Slide
  /external/skqp/tools/viewer/
GMSlide.cpp 30 bool GMSlide::animate(const SkAnimTimer& timer) { function in class:GMSlide
31 return fGM->animate(timer);
SkottieSlide.cpp 51 bool SkottieSlide::animate(const SkAnimTimer& timer) { function in class:SkottieSlide
Slide.h 28 virtual bool animate(const SkAnimTimer&) { return false; } function in class:Slide
  /external/glide/library/src/main/java/com/bumptech/glide/request/animation/
DrawableCrossFadeViewAnimation.java 43 public boolean animate(T current, ViewAdapter adapter) { method in class:DrawableCrossFadeViewAnimation
52 defaultAnimation.animate(current, adapter);
GlideAnimation.java 54 boolean animate(R current, ViewAdapter adapter); method in interface:GlideAnimation
NoAnimation.java 44 public boolean animate(Object current, ViewAdapter adapter) { method in class:NoAnimation
ViewAnimation.java 35 public boolean animate(R current, ViewAdapter adapter) { method in class:ViewAnimation
ViewPropertyAnimation.java 37 public boolean animate(R current, ViewAdapter adapter) { method in class:ViewPropertyAnimation
40 animator.animate(adapter.getView());
52 * @param view The view to animate.
54 void animate(View view); method in interface:ViewPropertyAnimation.Animator
  /development/samples/ApiDemos/src/com/example/android/apis/graphics/kube/
KubeRenderer.java 31 void animate(); method in interface:KubeRenderer.AnimationCallback
41 mCallback.animate();
  /external/skia/experimental/sksg/
SkSGScene.cpp 64 void Scene::animate(float t) { function in class:sksg::Scene
  /external/skqp/experimental/sksg/
SkSGScene.cpp 64 void Scene::animate(float t) { function in class:sksg::Scene
  /external/skia/gm/
gm.cpp 58 bool GM::animate(const SkAnimTimer& timer) { function in class:GM
  /external/skia/samplecode/
SampleCode.h 86 bool animate(const SkAnimTimer& timer) { return this->onAnimate(timer); } function in class:SampleView
  /external/skqp/gm/
gm.cpp 58 bool GM::animate(const SkAnimTimer& timer) { function in class:GM
  /external/skqp/samplecode/
SampleCode.h 86 bool animate(const SkAnimTimer& timer) { return this->onAnimate(timer); } function in class:SampleView
  /frameworks/base/libs/hwui/
AnimatorManager.cpp 102 bool remove = animator->animate(mContext);
122 uint32_t AnimatorManager::animate(TreeInfo& info) { function in class:android::uirenderer::AnimatorManager
  /frameworks/base/tests/GridLayoutTest/src/com/android/test/layout/
AbstractLayoutTest.java 47 animate(v);
56 public void animate(View v) { method in class:AbstractLayoutTest
  /packages/apps/UnifiedEmail/src/com/android/mail/compose/
CcBccView.java 49 public void show(boolean animate, boolean showCc, boolean showBcc) {
53 if (animate) {
54 animate(ccWasAlreadyShown);
66 private void animate(boolean ccWasAlreadyShown) { method in class:CcBccView
  /external/glide/library/src/main/java/com/bumptech/glide/
DrawableRequestBuilder.java 65 * you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
246 super.animate(new DrawableCrossFadeFactory<GlideDrawable>());
254 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(duration));
263 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(animation, duration));
271 super.animate(new DrawableCrossFadeFactory<GlideDrawable>(context, animationId,
289 public DrawableRequestBuilder<ModelType> animate(ViewPropertyAnimation.Animator animator) { method in class:DrawableRequestBuilder
290 super.animate(animator);
298 public DrawableRequestBuilder<ModelType> animate(int animationId) { method in class:DrawableRequestBuilder
299 super.animate(animationId);
309 public DrawableRequestBuilder<ModelType> animate(Animation animation) method in class:DrawableRequestBuilder
    [all...]
GifRequestBuilder.java 65 * you need to call {@link #animate(int)} on both the thumb and the full request. For a simpler thumbnail
233 super.animate(new DrawableCrossFadeFactory<GifDrawable>());
242 super.animate(new DrawableCrossFadeFactory<GifDrawable>(duration));
252 super.animate(new DrawableCrossFadeFactory<GifDrawable>(animation, duration));
261 super.animate(new DrawableCrossFadeFactory<GifDrawable>(context, animationId,
279 public GifRequestBuilder<ModelType> animate(int animationId) { method in class:GifRequestBuilder
280 super.animate(animationId);
290 public GifRequestBuilder<ModelType> animate(Animation animation) { method in class:GifRequestBuilder
291 super.animate(animation);
299 public GifRequestBuilder<ModelType> animate(ViewPropertyAnimation.Animator animator) method in class:GifRequestBuilder
    [all...]
  /build/make/tools/droiddoc/templates-pdk/assets/
carousel.js 189 function animate() { function in function:slide
208 var timeoutId = window.setInterval(animate, animation.time/animation.fps * 1000);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/phone/
NavigationBarTransitions.java 86 applyModeBackground(-1, getMode(), false /*animate*/);
87 applyLightsOut(false /*animate*/, true /*force*/);
108 protected void onTransition(int oldMode, int newMode, boolean animate) {
109 super.onTransition(oldMode, newMode, animate);
110 applyLightsOut(animate, false /*force*/);
113 private void applyLightsOut(boolean animate, boolean force) {
115 applyLightsOut(isLightsOut(getMode()), animate, force); local
118 private void applyLightsOut(boolean lightsOut, boolean animate, boolean force) {
125 mNavButtons.animate().cancel();
131 if (!animate) {
    [all...]

Completed in 393 milliseconds

1 2 3 4 5 6 7 8 91011>>