Lines Matching refs:first
1581 public int removeTracks(int first, int last) { in removeTracks() argument
1582 int numremoved = removeTracksInternal(first, last); in removeTracks()
1589 private int removeTracksInternal(int first, int last) { in removeTracksInternal() argument
1591 if (last < first) return 0; in removeTracksInternal()
1592 if (first < 0) first = 0; in removeTracksInternal()
1596 if (first <= mPlayPos && mPlayPos <= last) { in removeTracksInternal()
1597 mPlayPos = first; in removeTracksInternal()
1600 mPlayPos -= (last - first + 1); in removeTracksInternal()
1604 mPlayList[first + i] = mPlayList[last + 1 + i]; in removeTracksInternal()
1606 mPlayListLen -= last - first + 1; in removeTracksInternal()
1629 return last - first + 1; in removeTracksInternal()
2165 public int removeTracks(int first, int last) { in removeTracks() argument
2166 return mService.get().removeTracks(first, last); in removeTracks()