Home | History | Annotate | Download | only in music

Lines Matching refs:tracks

695         // Also delay stopping the service if we're transitioning between tracks.
870 * Appends a list of tracks to the current playlist.
874 * the new tracks immediately.
875 * @param list The list of tracks to append.
909 * @param list The new list of tracks.
991 * @return An array of integers containing the IDs of the tracks in the play list
1241 * we're currently transitioning between tracks), false if not.
1251 tracks when shuffling.
1252 If all tracks have already been played, pick from the full set, but
1259 user can back up to tracks that are not in the history).
1262 When playing an album with 10 tracks from the start, and enabling shuffle
1263 while playing track 5, the remaining tracks (6-10) will be shuffled, e.g.
1266 user will go to tracks 9-6-10-8-5-4-3-2. If the user then hits 'next',
1321 int[] tracks = new int[numTracks];
1323 tracks[i] = i;
1330 if (idx < numTracks && tracks[idx] >= 0) {
1332 tracks[idx] = -1;
1336 // 'numUnplayed' now indicates how many tracks have not yet
1337 // been played, and 'tracks' contains the indices of those
1338 // tracks.
1345 tracks[i] = i;
1355 while (tracks[++cnt] < 0)
1548 * Removes the range of tracks specified from the play list. If a file within the range is
1553 * @return the number of tracks deleted