Searched defs:Animation (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/cmds/bootanimation/iot/
H A Diotbootanimation_main.cpp36 typedef android::BootAnimation::Animation Animation; typedef
41 void init(const Vector<Animation::Part>&) override {
55 void playPart(int partNumber, const Animation::Part&, int playNumber) override {
/frameworks/rs/
H A DrsAnimation.h28 class Animation : public ObjectBase { class in namespace:android::renderscript
30 ~Animation();
32 static Animation * create(Context *rsc,
41 static Animation *createFromStream(Context *rsc, IStream *stream);
44 explicit Animation(Context *rsc);
/frameworks/base/cmds/bootanimation/
H A Dbootanimation_main.cpp43 typedef android::BootAnimation::Animation Animation; typedef in namespace:__anon985
101 void init(const Vector<Animation::Part>& parts) override {
102 const Animation::Part* partWithAudio = nullptr;
103 for (const Animation::Part& part : parts) {
119 void playPart(int partNumber, const Animation::Part& part, int playNumber) override {
H A DBootAnimation.h55 struct Animation { struct in class:android::BootAnimation
84 Animation* animation;
101 virtual void init(const Vector<Animation::Part>& /*parts*/) {}
109 virtual void playPart(int /*partNumber*/, const Animation::Part& /*part*/,
151 bool validClock(const Animation::Part& part);
152 Animation* loadAnimation(const String8&);
153 bool playAnimation(const Animation&);
154 void releaseAnimation(Animation*) const;
155 bool parseAnimationDesc(Animation&);
156 bool preloadZip(Animation
[all...]
/frameworks/base/core/java/android/view/animation/
H A DAnimation.java33 * Abstraction for an Animation that can be applied to Views, Surfaces, or
37 public abstract class Animation implements Cloneable { class in inherits:Cloneable
98 // Animation and its subclasses to be compile-time initialized.
101 = SystemProperties.getBoolean("log.closeguard.Animation", false);
228 public Animation() { method in class:Animation
239 public Animation(Context context, AttributeSet attrs) { method in class:Animation
240 TypedArray a = context.obtainStyledAttributes(attrs, com.android.internal.R.styleable.Animation);
270 protected Animation clone() throws CloneNotSupportedException {
271 final Animation animation = (Animation) supe
[all...]

Completed in 141 milliseconds