Lines Matching refs:bullet
228 final Bullet bullet = mBullets.get(i); in onDraw() local
229 bullet.draw(canvas); in onDraw()
340 final Bullet bullet = mBullets.get(i); in step() local
341 if (!bullet.step(tau)) { in step()
361 final Bullet bullet = mBullets.get(i); in step() local
364 if (bullet.collidesWith(obstacle)) { in step()
365 bullet.destroy(); in step()
736 Bullet bullet = new Bullet(); in fire() local
737 bullet.setPosition(getBulletInitialX(), getBulletInitialY()); in fire()
738 bullet.setVelocity(getBulletVelocityX(), in fire()
740 mBullets.add(bullet); in fire()