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

  /external/chromium_org/third_party/WebKit/Source/core/animation/
Player.cpp 33 #include "core/animation/Player.h"
40 PassRefPtr<Player> Player::create(DocumentTimeline* timeline, TimedItem* content)
43 return adoptRef(new Player(timeline, content));
46 Player::Player(DocumentTimeline* timeline, TimedItem* content)
60 Player::~Player()
66 double Player::currentTimeBeforeDrift() const
71 double Player::pausedTimeDrift() cons
    [all...]
  /frameworks/base/media/tests/players/
invoke_mock_media_player.cpp 42 // This file contains a test player that is loaded via the
43 // TestPlayerStub class. The player contains various implementation
49 class Player: public MediaPlayerBase
53 Player() {}
54 virtual ~Player() {}
98 status_t Player::invoke(const Parcel& request, Parcel *reply)
109 void Player::ping(const Parcel& request, Parcel *reply)
121 ALOGD("New invoke test player");
122 return new Player();
125 extern "C" android::status_t deletePlayer(android::MediaPlayerBase *player)
    [all...]
  /development/samples/Support7Demos/src/com/example/android/supportv7/media/
Player.java 30 public abstract class Player {
64 public static Player create(Context context, RouteInfo route) {
65 Player player; local
68 player = new RemotePlayer(context);
70 player = new LocalPlayer.SurfaceViewPlayer(context);
72 player = new LocalPlayer.OverlayPlayer(context);
74 player.connect(route);
75 return player;
  /packages/apps/Camera/src/com/android/camera/
SoundClips.java 37 public interface Player {
42 public static Player getPlayer(Context context) {
51 * This class implements SoundClips.Player using MediaActionSound,
55 private static class MediaActionSoundPlayer implements Player {
93 * This class implements SoundClips.Player using SoundPool, which
97 Player, SoundPool.OnLoadCompleteListener {
  /packages/apps/Camera2/src/com/android/camera/
SoundClips.java 40 public interface Player {
45 public static Player getPlayer(Context context) {
60 * This class implements SoundClips.Player using MediaActionSound,
64 private static class MediaActionSoundPlayer implements Player {
106 * This class implements SoundClips.Player using SoundPool, which
110 Player, SoundPool.OnLoadCompleteListener {
  /frameworks/wilhelm/tests/sandbox/
multiplay.c 26 // Describes the state of one player
37 } Player;
95 Player *p = (Player *) context;
141 Player *players = (Player *) calloc(numPlayers, sizeof(Player));
178 Player *p;
224 printf("player %d (%s): ", i, pathnames[i]);

Completed in 586 milliseconds