/external/qemu/distrib/sdl-1.2.15/src/joystick/ |
SDL_sysjoystick.h | 43 } *balls; /* Current ball motion deltas */ member in struct:_SDL_Joystick
|
/external/chromium_org/tools/perf/page_sets/tough_canvas_cases/canvas2d_balls_common/ |
bouncing_balls.js | 19 var balls = []; variable 53 balls.push(new Ball()); 79 balls[i].step(jolt); 100 // handle balls that are no longer bouncing 103 // If a jolt is applied, bump the rollong balls enough for them to
|
/development/samples/ApiDemos/src/com/example/android/apis/animation/ |
AnimationSeeking.java | 97 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationSeeking.MyAnimationView 143 balls.add(shapeHolder); 163 balls.remove(((ObjectAnimator)animation).getTarget());
|
AnimationLoading.java | 72 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationLoading.MyAnimationView 90 anim.setTarget(balls.get(0)); 96 balls.get(1).setAlpha((Float) animation.getAnimatedValue()); 103 seq.setTarget(balls.get(2)); 107 colorizer.setTarget(balls.get(3)); 132 balls.add(shapeHolder); 146 balls.add(shapeHolder); 151 for (ShapeHolder ball : balls) { 161 ShapeHolder ball = balls.get(0);
|
CustomEvaluator.java | 114 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:CustomEvaluator.MyAnimationView
|
ReversingAnimation.java | 69 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:ReversingAnimation.MyAnimationView
|
AnimationCloning.java | 63 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationCloning.MyAnimationView 80 ObjectAnimator anim1 = ObjectAnimator.ofFloat(balls.get(0), "y", 81 0f, getHeight() - balls.get(0).getHeight()).setDuration(500); 83 anim2.setTarget(balls.get(1)); 86 ShapeHolder ball2 = balls.get(2); 98 s2.setTarget(balls.get(3)); 123 balls.add(shapeHolder); 129 for (int i = 0; i < balls.size(); ++i) { 130 ShapeHolder shapeHolder = balls.get(i);
|
BouncingBalls.java | 60 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:BouncingBalls.MyAnimationView 68 // view, so that the animated color, and the bouncing balls, get redisplayed on 137 balls.remove(((ObjectAnimator)animation).getTarget()); 169 balls.add(shapeHolder); 175 for (int i = 0; i < balls.size(); ++i) { 176 ShapeHolder shapeHolder = balls.get(i);
|
MultiPropertyAnimation.java | 72 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:MultiPropertyAnimation.MyAnimationView 88 ball = balls.get(0); 94 ball = balls.get(1); 105 ball = balls.get(2); 119 ball = balls.get(3); 160 balls.add(shapeHolder); 166 for (ShapeHolder ball : balls) {
|
AnimatorEvents.java | 108 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimatorEvents.MyAnimationView
|
/frameworks/rs/java/tests/Balls/src/com/example/android/rs/balls/ |
Balls.java | 17 package com.example.android.rs.balls; 46 public class Balls extends Activity implements SensorEventListener {
|
BallsRS.java | 17 package com.example.android.rs.balls;
|
BallsView.java | 17 package com.example.android.rs.balls;
|
/cts/tests/tests/animation/src/android/animation/cts/ |
AnimationActivity.java | 185 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationActivity.AnimationView 224 balls.remove(((ObjectAnimator)animation).getTarget()); 255 balls.add(shapeHolder); 261 for (int i = 0; i < balls.size(); ++i) { 262 ShapeHolder shapeHolder = balls.get(i);
|
/external/qemu/distrib/sdl-1.2.15/src/joystick/linux/ |
SDL_sysjoystick.c | 166 axes, hats, balls, buttons 281 /* The current linux joystick driver maps balls to two axes */ 284 } *balls; member in struct:joystick_hwdata 497 hats or balls. Unfortunately, the event devices can't 568 joystick->hwdata->balls = (struct hwdata_ball *)SDL_malloc( 570 if ( joystick->hwdata->balls == NULL ) { 574 joystick->hwdata->balls[i].axis[0] = 0; 575 joystick->hwdata->balls[i].axis[1] = 0; 652 /* Remap hats and balls */ 983 stick->hwdata->balls[ball].axis[axis] += value [all...] |