HomeSort by relevance Sort by last modified time
    Searched full:balls (Results 1 - 25 of 47) sorted by null

1 2

  /frameworks/rs/tests/java_api/Balls/
_index.html 1 <p>A brute force physics simulation that renders many balls onto the screen and moves them according to user touch and gravity.</p
AndroidManifest.xml 3 package="com.example.android.rs.balls">
8 <activity android:name="Balls"
  /frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
balls.rs 2 #pragma rs java_package_name(com.example.android.rs.balls)
5 #include "balls.rsh"
30 uint32_t dimX = rsAllocationGetDimX(rsGetAllocation(balls));
33 balls[ct].position.x = rsRand(0.f, (float)w);
34 balls[ct].position.y = rsRand(0.f, (float)h);
35 balls[ct].delta.x = 0.f;
36 balls[ct].delta.y = 0.f;
47 rs_allocation aout = rsGetAllocation(balls);
53 balls[ct].next = -1;
67 int2 p = convert_int2(balls[ct].position / 100.f)
    [all...]
balls.rsh 12 Ball_t *balls;
Balls.java 17 package com.example.android.rs.balls;
46 public class Balls extends Activity implements SensorEventListener {
ball_physics.rs 2 #pragma rs java_package_name(com.example.android.rs.balls)
4 #include "balls.rsh"
BallsView.java 17 package com.example.android.rs.balls;
BallsRS.java 17 package com.example.android.rs.balls;
  /development/samples/ApiDemos/src/com/example/android/apis/animation/
AnimationLoading.java 72 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationLoading.MyAnimationView
94 anim.setTarget(balls.get(0));
100 balls.get(1).setAlpha((Float) animation.getAnimatedValue());
107 seq.setTarget(balls.get(2));
111 colorizer.setTarget(balls.get(3));
115 animPvh.setTarget(balls.get(4));
120 animPvhKf.setTarget(balls.get(5));
126 balls.get(6).setAlpha((Float) animation.getAnimatedValue());
138 animPvhKfInterpolated.setTarget(balls.get(7));
165 balls.add(shapeHolder)
    [all...]
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);
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) {
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);
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());
ReversingAnimation.java 69 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:ReversingAnimation.MyAnimationView
CustomEvaluator.java 114 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:CustomEvaluator.MyAnimationView
  /cts/tests/tests/animation/src/android/animation/cts/
AnimationActivity.java 189 public final ArrayList<ShapeHolder> balls = new ArrayList<ShapeHolder>(); field in class:AnimationActivity.AnimationView
228 balls.remove(((ObjectAnimator)animation).getTarget());
259 balls.add(shapeHolder);
265 for (int i = 0; i < balls.size(); ++i) {
266 ShapeHolder shapeHolder = balls.get(i);
  /external/javassist/sample/duplicate/
Main.java 32 You would see two balls in a window. This is because
  /external/python/cpython2/Demo/curses/
xmas.py 133 def balls(): function
721 balls()
736 # balls
768 # balls
802 # balls
832 # balls
865 # balls
  /frameworks/rs/tests/java_api/Refocus/src/com/android/rs/test/
MainActivity.java 117 RGBZ.createFromBitmapDepthmap(getResourceRef(R.drawable.balls),
121 rgbz = RGBZ.createFromPFMDepthmap(getResourceRef(R.drawable.balls),
DepthImage.java 153 // MediaStoreSaver.savePNG(bitmap, "depthmap", "balls", context);
  /prebuilts/misc/windows/sdl2/test/
testjoystick.c 75 SDL_Log("Joystick has %d axes, %d hats, %d balls, and %d buttons\n",
237 SDL_Log(" balls: %d\n", SDL_JoystickNumBalls(joystick));
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_tuple.py 61 # buckets when tossing 252,600 balls into 2**32 buckets
  /external/autotest/client/site_tests/firmware_TouchMTB/geometry/
minicircle.py 8 [1] Emo Welzl. Smallest enclosing disks (balls and ellipsoids).
  /external/ltp/testcases/realtime/func/sched_football/
sched_football.c 25 * (defensive team). The offense is trying to increment the balls position,
  /external/python/cpython2/Lib/test/
test_tuple.py 61 # buckets when tossing 252,600 balls into 2**32 buckets

Completed in 318 milliseconds

1 2