Lines Matching full:tracks
701 // Also delay stopping the service if we're transitioning between tracks.
876 * Appends a list of tracks to the current playlist.
880 * the new tracks immediately.
881 * @param list The list of tracks to append.
915 * @param list The new list of tracks.
997 * @return An array of integers containing the IDs of the tracks in the play list
1267 * we're currently transitioning between tracks), false if not.
1277 a track randomly picked from the not-yet-played tracks when shuffling.
1278 If all tracks have already been played, pick from the full set, but
1285 user can back up to tracks that are not in the history).
1288 When playing an album with 10 tracks from the start, and enabling shuffle
1289 while playing track 5, the remaining tracks (6-10) will be shuffled, e.g.
1292 user will go to tracks 9-6-10-8-5-4-3-2. If the user then hits 'next',
1347 int[] tracks = new int[numTracks];
1349 tracks[i] = i;
1356 if (idx < numTracks && tracks[idx] >= 0) {
1358 tracks[idx] = -1;
1362 // 'numUnplayed' now indicates how many tracks have not yet
1363 // been played, and 'tracks' contains the indices of those
1364 // tracks.
1371 tracks[i] = i;
1381 while (tracks[++cnt] < 0)
1574 * Removes the range of tracks specified from the play list. If a file within the range is
1579 * @return the number of tracks deleted