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

  /external/qemu/distrib/sdl-1.2.12/src/joystick/
SDL_sysjoystick.h 43 } *balls; /* Current ball motion deltas */ member in struct:_SDL_Joystick
  /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
  /development/samples/RenderScript/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;
114 mScript = new ScriptC_balls(mRS, mRes, R.raw.balls);
BallsView.java 17 package com.example.android.rs.balls;
  /external/qemu/distrib/sdl-1.2.12/src/joystick/os2/
SDL_sysjoystick.c 46 #define MAX_BALLS 0 /* and 0 balls - OS/2 doesn't support it */
63 char balls; // Number of buttons member in struct:SYS_JoyData_s
92 unsigned int balls; member in struct:_joycfg
207 /* Define number of balls */
208 if (joycfg.balls > MAX_BALLS) joycfg.balls = MAX_BALLS;
209 SYS_JoyData[0].balls = joycfg.balls;
236 SYS_JoyData[0].balls = 0;
254 SYS_JoyData[1].balls = 0
    [all...]
  /external/qemu/distrib/sdl-1.2.12/src/joystick/linux/
SDL_sysjoystick.c 163 axes, hats, balls, buttons
278 /* The current linux joystick driver maps balls to two axes */
281 } *balls; member in struct:joystick_hwdata
484 hats or balls. Unfortunately, the event devices can't
555 joystick->hwdata->balls = (struct hwdata_ball *)SDL_malloc(
557 if ( joystick->hwdata->balls == NULL ) {
561 joystick->hwdata->balls[i].axis[0] = 0;
562 joystick->hwdata->balls[i].axis[1] = 0;
640 /* Remap hats and balls */
964 stick->hwdata->balls[ball].axis[axis] += value
    [all...]

Completed in 84 milliseconds