HomeSort by relevance Sort by last modified time
    Searched defs:animations (Results 1 - 16 of 16) sorted by null

  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/modifiers/
ObjectAnimationModifier.java 13 import com.jme3.scene.plugins.blender.animations.Ipo;
56 ArrayList<Animation> animations = new ArrayList<Animation>(1); local
57 animations.add(animation);
59 animData = new AnimData(null, animations);
ArmatureModifier.java 28 import com.jme3.scene.plugins.blender.animations.ArmatureHelper;
130 // read animations
131 ArrayList<Animation> animations = new ArrayList<Animation>(); local
152 animations.add(boneAnimation);
156 animData = new AnimData(skeleton, animations);
202 // applying animations
  /packages/apps/Camera2/src/com/android/camera/ui/motion/
DynamicAnimator.java 28 * Fixed length animations should NOT use this class.
32 public final List<DynamicAnimation> animations = new ArrayList<>(); field in class:DynamicAnimator
61 for (DynamicAnimation renderer : animations) {
  /external/replicaisland/src/com/replica/replicaisland/
SpriteComponent.java 20 * Provides an interface for controlling a sprite with animations. Manages a list of animations
76 final PhasedObjectManager animations = mAnimations; local
80 animations.commitUpdates();
84 if (animations.getCount() > 0 && currentAnimIndex != -1) {
93 mCurrentAnimation = (SpriteAnimation)animations.get(0);
  /external/jmonkeyengine/engine/src/test/jme3test/model/anim/
TestSpatialAnim.java 77 HashMap<String, Animation> animations = new HashMap<String, Animation>(); local
78 animations.put("anim", spatialAnimation);
79 control.setAnimations(animations);
  /external/jmonkeyengine/engine/src/ogre/com/jme3/scene/plugins/ogre/
SkeletonLoader.java 70 private ArrayList<Animation> animations; field in class:SkeletonLoader
125 assert elementStack.peek().equals("animations");
131 } else if (qName.equals("animations")) {
133 animations = new ArrayList<Animation>();
168 animations.add(animation);
236 if (animations != null) {
237 animations.clear();
269 if (animations == null) {
270 animations = new ArrayList<Animation>();
272 AnimData data = new AnimData(skeleton, animations);
    [all...]
  /development/samples/devbytes/animation/CardFlip/src/com/example/android/cardflip/
CardFlip.java 239 * rotates it in or out depending on its current state. All of these animations
244 List<Animator> animations = new ArrayList<Animator>(); local
250 animations.add(cardView.getRotationAnimator(i, corner, isRotatingOut, false));
260 set.playTogether(animations);
275 List<Animator> animations = new ArrayList<Animator>(); local
280 animations.add(cardView.getFullRotationAnimator(i, corner, false));
288 set.playTogether(animations);
  /external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/animations/
ArmatureHelper.java 32 package com.jme3.scene.plugins.blender.animations;
BoneContext.java 1 package com.jme3.scene.plugins.blender.animations;
CalculationBone.java 1 package com.jme3.scene.plugins.blender.animations;
Ipo.java 1 package com.jme3.scene.plugins.blender.animations;
IpoHelper.java 1 package com.jme3.scene.plugins.blender.animations;
  /frameworks/base/core/java/android/view/animation/
AnimationSet.java 29 * Represents a group of Animations that should be played together.
42 * on an AnimationSet object, will be pushed down to all child animations.</li>
116 * @param shareInterpolator Pass true if all of the animations in this set
132 final ArrayList<Animation> animations = mAnimations; local
135 animation.mAnimations.add(animations.get(i).clone());
186 final ArrayList<Animation> animations = mAnimations; local
189 if (animations.get(i).hasAlpha()) {
214 * The transforms of the child animations are applied in the order
249 * Sets the start time of this animation and all child animations
258 final ArrayList<Animation> animations = mAnimations local
271 final ArrayList<Animation> animations = mAnimations; local
285 final ArrayList<Animation> animations = mAnimations; local
301 final ArrayList<Animation> animations = mAnimations; local
326 final ArrayList<Animation> animations = mAnimations; local
344 final ArrayList<Animation> animations = mAnimations; local
371 final ArrayList<Animation> animations = mAnimations; local
413 final ArrayList<Animation> animations = mAnimations; local
    [all...]
  /external/jmonkeyengine/engine/src/blender/com/jme3/asset/
BlenderKey.java 476 int ANIMATIONS = 0x00000004;
500 /** Animations of all objects. */
501 private List<AnimData> animations; field in class:BlenderKey.LoadingResults
526 if ((featuresToLoad & FeaturesToLoad.ANIMATIONS) != 0) {
527 animations = new ArrayList<AnimData>();
647 * This method returns all loaded animations.
648 * @return all loaded animations
651 return animations;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
GraphicalEditorPart.java 2849 Map<String, ResourceValue> animations = map.get(type); local
    [all...]
  /frameworks/base/services/core/java/com/android/server/policy/
PhoneWindowManager.java 2568 final List<Animation> animations = set.getAnimations(); local
    [all...]

Completed in 1019 milliseconds