Home
last modified time | relevance | path

Searched full:player (Results 1 – 25 of 2989) sorted by relevance

12345678910>>...120

/aosp_15_r20/external/skia/tests/
H A DSkSLDebugTracePlayerTest.cpp75 const SkSL::SkSLDebugTracePlayer& player) { in make_stack_string() argument
76 std::vector<int> callStack = player.getCallStack(); in make_stack_string()
118 const SkSL::SkSLDebugTracePlayer& player) { in make_local_vars_string() argument
119 int frame = player.getStackDepth() - 1; in make_local_vars_string()
120 return make_vars_string(trace, player.getLocalVariables(frame)); in make_local_vars_string()
124 const SkSL::SkSLDebugTracePlayer& player) { in make_global_vars_string() argument
125 return make_vars_string(trace, player.getGlobalVariables()); in make_global_vars_string()
129 SkSL::SkSLDebugTracePlayer player; in DEF_TEST() local
130 player.reset(nullptr); in DEF_TEST()
133 REPORTER_ASSERT(r, player.cursor() == 0); in DEF_TEST()
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/core/src/test/java/com/google/android/exoplayer2/
H A DExoPlayerTest.java18 import static com.google.android.exoplayer2.Player.COMMAND_ADJUST_DEVICE_VOLUME;
19 import static com.google.android.exoplayer2.Player.COMMAND_CHANGE_MEDIA_ITEMS;
20 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES;
21 import static com.google.android.exoplayer2.Player.COMMAND_GET_CURRENT_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.COMMAND_GET_DEVICE_VOLUME;
23 import static com.google.android.exoplayer2.Player.COMMAND_GET_MEDIA_ITEMS_METADATA;
24 import static com.google.android.exoplayer2.Player.COMMAND_GET_TEXT;
25 import static com.google.android.exoplayer2.Player.COMMAND_GET_TIMELINE;
26 import static com.google.android.exoplayer2.Player.COMMAND_GET_TRACK_INFOS;
27 import static com.google.android.exoplayer2.Player.COMMAND_GET_VOLUME;
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/test/java/com/google/android/exoplayer2/
H A DExoPlayerTest.java18 import static com.google.android.exoplayer2.Player.COMMAND_ADJUST_DEVICE_VOLUME;
19 import static com.google.android.exoplayer2.Player.COMMAND_CHANGE_MEDIA_ITEMS;
20 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES;
21 import static com.google.android.exoplayer2.Player.COMMAND_GET_CURRENT_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.COMMAND_GET_DEVICE_VOLUME;
23 import static com.google.android.exoplayer2.Player.COMMAND_GET_MEDIA_ITEMS_METADATA;
24 import static com.google.android.exoplayer2.Player.COMMAND_GET_TEXT;
25 import static com.google.android.exoplayer2.Player.COMMAND_GET_TIMELINE;
26 import static com.google.android.exoplayer2.Player.COMMAND_GET_TRACK_INFOS;
27 import static com.google.android.exoplayer2.Player.COMMAND_GET_VOLUME;
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/common/src/main/java/com/google/android/exoplayer2/
H A DForwardingPlayer.java32 * A {@link Player} that forwards operations to another {@link Player}. Applications can use this
35 public class ForwardingPlayer implements Player {
37 private final Player player; field in ForwardingPlayer
39 /** Creates a new instance that forwards all operations to {@code player}. */
40 public ForwardingPlayer(Player player) { in ForwardingPlayer() argument
41 this.player = player; in ForwardingPlayer()
44 /** Calls {@link Player#getApplicationLooper()} on the delegate and returns the result. */
47 return player.getApplicationLooper(); in getApplicationLooper()
50 /** Calls {@link Player#addListener(Listener)} on the delegate. */
53 player.addListener(new ForwardingListener(this, listener)); in addListener()
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/robolectricutils/src/main/java/com/google/android/exoplayer2/robolectric/
H A DTestPlayerRunHelper.java25 import com.google.android.exoplayer2.Player;
43 * Runs tasks of the main {@link Looper} until {@link Player#getPlaybackState()} matches the
48 * @param player The {@link Player}.
49 * @param expectedState The expected {@link Player.State}.
53 public static void runUntilPlaybackState(Player player, @Player.State int expectedState) in runUntilPlaybackState() argument
55 verifyMainTestThread(player); in runUntilPlaybackState()
57 () -> player.getPlaybackState() == expectedState || player.getPlayerError() != null); in runUntilPlaybackState()
58 if (player.getPlayerError() != null) { in runUntilPlaybackState()
59 throw new IllegalStateException(player.getPlayerError()); in runUntilPlaybackState()
64 * Runs tasks of the main {@link Looper} until {@link Player#getPlayWhenReady()} matches the
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/robolectricutils/src/main/java/com/google/android/exoplayer2/robolectric/
H A DTestPlayerRunHelper.java25 import com.google.android.exoplayer2.Player;
43 * Runs tasks of the main {@link Looper} until {@link Player#getPlaybackState()} matches the
48 * @param player The {@link Player}.
49 * @param expectedState The expected {@link Player.State}.
53 public static void runUntilPlaybackState(Player player, @Player.State int expectedState) in runUntilPlaybackState() argument
55 verifyMainTestThread(player); in runUntilPlaybackState()
57 () -> player.getPlaybackState() == expectedState || player.getPlayerError() != null); in runUntilPlaybackState()
58 if (player.getPlayerError() != null) { in runUntilPlaybackState()
59 throw new IllegalStateException(player.getPlayerError()); in runUntilPlaybackState()
64 * Runs tasks of the main {@link Looper} until {@link Player#getPlayWhenReady()} matches the
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/common/src/main/java/com/google/android/exoplayer2/
H A DForwardingPlayer.java34 * A {@link Player} that forwards operations to another {@link Player}. Applications can use this
37 public class ForwardingPlayer implements Player {
39 private final Player player; field in ForwardingPlayer
41 /** Creates a new instance that forwards all operations to {@code player}. */
42 public ForwardingPlayer(Player player) { in ForwardingPlayer() argument
43 this.player = player; in ForwardingPlayer()
48 return player.getApplicationLooper(); in getApplicationLooper()
53 player.addListener(new ForwardingListener(this, listener)); in addListener()
58 player.removeListener(new ForwardingListener(this, listener)); in removeListener()
63 player.setMediaItems(mediaItems); in setMediaItems()
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/
H A DForwardingPlayer.html133 <dd><code><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></code…
138 implements <a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></pre>
139Player.html" title="interface in com.google.android.exoplayer2"><code>Player</code></a> that forwa…
155 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
158 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
159Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
172 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
175 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
176Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="Player.html#C…
195 …layer2.Player)">ForwardingPlayer</a></span>&#8203;(<a href="Player.html" title="interface in com.g…
[all …]
H A DBasePlayer.html133 <dd><code><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></code…
142 implements <a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></pre>
143 … class="block">Abstract base <a href="Player.html" title="interface in com.google.android.exoplaye…
158 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
161 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
162Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
188 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
191 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
192Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="Player.html#C…
260 <div class="block">Returns whether the player can be used to advertise a media session.</div>
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/
H A DForwardingPlayer.html133 <dd><code><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></code…
138 implements <a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></pre>
139Player.html" title="interface in com.google.android.exoplayer2"><code>Player</code></a> that forwa…
155 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
158 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
159Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
172 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
175 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
176Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="Player.html#C…
195 …layer2.Player)">ForwardingPlayer</a></span>&#8203;(<a href="Player.html" title="interface in com.g…
[all …]
H A DBasePlayer.html133 <dd><code><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></code…
142 implements <a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></pre>
143 … class="block">Abstract base <a href="Player.html" title="interface in com.google.android.exoplaye…
158 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
161 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
162Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
188 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
191 …p;com.google.android.exoplayer2.<a href="Player.html" title="interface in com.google.android.exopl…
192Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="Player.html#C…
260 <div class="block">Returns whether the player can be used to advertise a media session.</div>
[all …]
H A DPlayer.Listener.html5 <title>Player.Listener (ExoPlayer library)</title>
22 parent.document.title="Player.Listener (ExoPlayer library)";
117 <h2 title="Interface Player.Listener" class="title">Interface Player.Listener</h2>
125 <dd><code><a href="Player.EventListener.html" title="interface in com.google.android.exoplayer2">Pl…
133 <dd><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></dd>
136 <pre>public static interface <span class="typeNameLabel">Player.Listener</span>
137 extends <a href="Player.EventListener.html" title="interface in com.google.android.exoplayer2">Play…
138 <div class="block">Listener of all changes in the Player.
177 …r2.Player.Commands)">onAvailableCommandsChanged</a></span>&#8203;(<a href="Player.Commands.html" t…
179 …value returned from <a href="Player.html#isCommandAvailable(@com.google.android.exoplayer2.Player.…
[all …]
H A DPlayer.EventListener.html5 <title>Player.EventListener (ExoPlayer library)</title>
22 parent.document.title="Player.EventListener (ExoPlayer library)";
117 <h2 title="Interface Player.EventListener" class="title">Interface Player.EventListener</h2>
125 <dd><code><a href="Player.Listener.html" title="interface in com.google.android.exoplayer2">Player.…
133 <dd><a href="Player.html" title="interface in com.google.android.exoplayer2">Player</a></dd>
137 public static interface <span class="typeNameLabel">Player.EventListener</span></pre>
139 …"deprecationComment">Use <a href="Player.Listener.html" title="interface in com.google.android.exo…
141 <div class="block">Listener of changes in player state.
145 …onEvents(com.google.android.exoplayer2.Player,com.google.android.exoplayer2.Player.Events)"><code>…
169 …r2.Player.Commands)">onAvailableCommandsChanged</a></span>&#8203;(<a href="Player.Commands.html" t…
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/
H A DMediaSessionConnector.java19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED;
23 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_PARAMETERS_CHANGED;
24 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED;
25 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED;
26 import static com.google.android.exoplayer2.Player.EVENT_REPEAT_MODE_CHANGED;
27 import static com.google.android.exoplayer2.Player.EVENT_SHUFFLE_MODE_ENABLED_CHANGED;
51 import com.google.android.exoplayer2.Player;
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/mediasession/src/main/java/com/google/android/exoplayer2/ext/mediasession/
H A DMediaSessionConnector.java19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED;
23 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_PARAMETERS_CHANGED;
24 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED;
25 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED;
26 import static com.google.android.exoplayer2.Player.EVENT_REPEAT_MODE_CHANGED;
27 import static com.google.android.exoplayer2.Player.EVENT_SHUFFLE_MODE_ENABLED_CHANGED;
51 import com.google.android.exoplayer2.Player;
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/testutils/src/main/java/com/google/android/exoplayer2/testutil/
H A DAction.java27 import com.google.android.exoplayer2.Player;
68 * @param player The player to which the action should be applied.
77 ExoPlayer player, in doActionAndScheduleNext() argument
85 doActionAndScheduleNextImpl(player, trackSelector, surface, handler, nextAction); in doActionAndScheduleNext()
92 * @param player The player to which the action should be applied.
101 ExoPlayer player, in doActionAndScheduleNextImpl() argument
106 doActionImpl(player, trackSelector, surface); in doActionAndScheduleNextImpl()
108 nextAction.schedule(player, trackSelector, surface, handler); in doActionAndScheduleNextImpl()
116 * @param player The player to which the action should be applied.
122 ExoPlayer player, DefaultTrackSelector trackSelector, @Nullable Surface surface); in doActionImpl() argument
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/testutils/src/main/java/com/google/android/exoplayer2/testutil/
H A DAction.java27 import com.google.android.exoplayer2.Player;
68 * @param player The player to which the action should be applied.
77 ExoPlayer player, in doActionAndScheduleNext() argument
85 doActionAndScheduleNextImpl(player, trackSelector, surface, handler, nextAction); in doActionAndScheduleNext()
92 * @param player The player to which the action should be applied.
101 ExoPlayer player, in doActionAndScheduleNextImpl() argument
106 doActionImpl(player, trackSelector, surface); in doActionAndScheduleNextImpl()
108 nextAction.schedule(player, trackSelector, surface, handler); in doActionAndScheduleNextImpl()
116 * @param player The player to which the action should be applied.
122 ExoPlayer player, DefaultTrackSelector trackSelector, @Nullable Surface surface); in doActionImpl() argument
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/extensions/media2/src/main/java/com/google/android/exoplayer2/ext/media2/
H A DPlayerWrapper.java18 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES;
19 import static com.google.android.exoplayer2.Player.COMMAND_PLAY_PAUSE;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT;
23 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS;
24 import static com.google.android.exoplayer2.Player.COMMAND_SET_REPEAT_MODE;
25 import static com.google.android.exoplayer2.Player.COMMAND_SET_SHUFFLE_MODE;
39 import com.google.android.exoplayer2.Player;
51 * Wraps an ExoPlayer {@link Player} instance and provides methods and notifies events like those in
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/extensions/media2/src/main/java/com/google/android/exoplayer2/ext/media2/
H A DPlayerWrapper.java18 import static com.google.android.exoplayer2.Player.COMMAND_GET_AUDIO_ATTRIBUTES;
19 import static com.google.android.exoplayer2.Player.COMMAND_PLAY_PAUSE;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_MEDIA_ITEM;
22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT;
23 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS;
24 import static com.google.android.exoplayer2.Player.COMMAND_SET_REPEAT_MODE;
25 import static com.google.android.exoplayer2.Player.COMMAND_SET_SHUFFLE_MODE;
39 import com.google.android.exoplayer2.Player;
51 * Wraps an ExoPlayer {@link Player} instance and provides methods and notifies events like those in
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/core/src/main/java/com/google/android/exoplayer2/
H A DSimpleExoPlayer.java356 private final ExoPlayerImpl player; field in SimpleExoPlayer
401 player = new ExoPlayerImpl(builder, /* wrappingPlayer= */ this); in SimpleExoPlayer()
410 player.experimentalSetOffloadSchedulingEnabled(offloadSchedulingEnabled); in experimentalSetOffloadSchedulingEnabled()
416 return player.experimentalIsSleepingForOffload(); in experimentalIsSleepingForOffload()
446 player.setVideoScalingMode(videoScalingMode); in setVideoScalingMode()
452 return player.getVideoScalingMode(); in getVideoScalingMode()
459 player.setVideoChangeFrameRateStrategy(videoChangeFrameRateStrategy); in setVideoChangeFrameRateStrategy()
465 return player.getVideoChangeFrameRateStrategy(); in getVideoChangeFrameRateStrategy()
471 return player.getVideoSize(); in getVideoSize()
477 player.clearVideoSurface(); in clearVideoSurface()
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/docs/doc/reference/com/google/android/exoplayer2/testutil/
H A DStubPlayer.html138 <dd><code><a href="../Player.html" title="interface in com.google.android.exoplayer2">Player</a></c…
147 …class="block">An abstract <a href="../Player.html" title="interface in com.google.android.exoplaye…
163 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
166 …om.google.android.exoplayer2.<a href="../Player.html" title="interface in com.google.android.exopl…
167Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
187 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
190 …om.google.android.exoplayer2.<a href="../Player.html" title="interface in com.google.android.exopl…
191Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="../Player.htm…
233 …layer2.Player.Listener)">addListener</a></span>&#8203;(<a href="../Player.Listener.html" title="in…
235 <div class="block">Registers a listener to receive all events from the player.</div>
[all …]
/aosp_15_r20/external/exoplayer/tree_8e57d3715f9092d5ec54ebe2e538f34bfcc34479/library/ui/src/main/java/com/google/android/exoplayer2/ui/
H A DPlayerControlView.java18 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK;
19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT;
22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS;
23 import static com.google.android.exoplayer2.Player.EVENT_AVAILABLE_COMMANDS_CHANGED;
24 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED;
25 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED;
26 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED;
27 import static com.google.android.exoplayer2.Player.EVENT_POSITION_DISCONTINUITY;
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/library/ui/src/main/java/com/google/android/exoplayer2/ui/
H A DPlayerControlView.java18 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_BACK;
19 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_FORWARD;
20 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_IN_CURRENT_MEDIA_ITEM;
21 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_NEXT;
22 import static com.google.android.exoplayer2.Player.COMMAND_SEEK_TO_PREVIOUS;
23 import static com.google.android.exoplayer2.Player.EVENT_AVAILABLE_COMMANDS_CHANGED;
24 import static com.google.android.exoplayer2.Player.EVENT_IS_PLAYING_CHANGED;
25 import static com.google.android.exoplayer2.Player.EVENT_PLAYBACK_STATE_CHANGED;
26 import static com.google.android.exoplayer2.Player.EVENT_PLAY_WHEN_READY_CHANGED;
27 import static com.google.android.exoplayer2.Player.EVENT_POSITION_DISCONTINUITY;
[all …]
/aosp_15_r20/frameworks/base/packages/SystemUI/tests/src/com/android/systemui/media/controls/ui/controller/
H A DMediaControlPanelTest.kt149 private lateinit var player: MediaControlPanel in <lambda>() variable in com.android.systemui.media.controls.ui.controller.MediaControlPanelTest
271 player = in <lambda>()
427 whenever(viewHolder.player).thenReturn(view) in <lambda>()
520 player.onDestroy() in <lambda>()
526 player.bindPlayer(state, PACKAGE) in <lambda>()
527 assertThat(player.isPlaying()).isFalse() in <lambda>()
542 player.attachPlayer(viewHolder) in <lambda>()
543 player.bindPlayer(state, PACKAGE) in <lambda>()
597 player.attachPlayer(viewHolder) in <lambda>()
598 player.bindPlayer(state, PACKAGE) in <lambda>()
[all …]
/aosp_15_r20/external/exoplayer/tree_15dc86382f17a24a3e881e52e31a810c1ea44b49/docs/doc/reference/com/google/android/exoplayer2/testutil/
H A DStubPlayer.html138 <dd><code><a href="../Player.html" title="interface in com.google.android.exoplayer2">Player</a></c…
147 …class="block">An abstract <a href="../Player.html" title="interface in com.google.android.exoplaye…
163 …class="blockList"><a id="nested.classes.inherited.from.class.com.google.android.exoplayer2.Player">
166 …om.google.android.exoplayer2.<a href="../Player.html" title="interface in com.google.android.exopl…
167Player.Command.html" title="annotation in com.google.android.exoplayer2">Player.Command</a>, <a hr…
187 <li class="blockList"><a id="fields.inherited.from.class.com.google.android.exoplayer2.Player">
190 …om.google.android.exoplayer2.<a href="../Player.html" title="interface in com.google.android.exopl…
191Player.html#COMMAND_ADJUST_DEVICE_VOLUME">COMMAND_ADJUST_DEVICE_VOLUME</a>, <a href="../Player.htm…
233 …layer2.Player.Listener)">addListener</a></span>&#8203;(<a href="../Player.Listener.html" title="in…
235 <div class="block">Registers a listener to receive all events from the player.</div>
[all …]

12345678910>>...120