Home | History | Annotate | Download | only in music

Lines Matching defs:tracks

681         // Also delay stopping the service if we're transitioning between tracks.
856 * Appends a list of tracks to the current playlist.
860 * the new tracks immediately.
861 * @param list The list of tracks to append.
895 * @param list The new list of tracks.
977 * @return An array of integers containing the IDs of the tracks in the play list
1199 * we're currently transitioning between tracks), false if not.
1209 a track randomly picked from the not-yet-played tracks when shuffling.
1210 If all tracks have already been played, pick from the full set, but
1217 user can back up to tracks that are not in the history).
1220 When playing an album with 10 tracks from the start, and enabling shuffle
1221 while playing track 5, the remaining tracks (6-10) will be shuffled, e.g.
1224 user will go to tracks 9-6-10-8-5-4-3-2. If the user then hits 'next',
1276 int[] tracks = new int[numTracks];
1278 tracks[i] = i;
1285 if (idx < numTracks && tracks[idx] >= 0) {
1287 tracks[idx] = -1;
1291 // 'numUnplayed' now indicates how many tracks have not yet
1292 // been played, and 'tracks' contains the indices of those
1293 // tracks.
1300 tracks[i] = i;
1315 while (tracks[++cnt] < 0)
1490 * Removes the range of tracks specified from the play list. If a file within the range is
1495 * @return the number of tracks deleted