Home | History | Annotate | Download | only in music

Lines Matching refs:mHistory

120     private Vector<Integer> mHistory = new Vector<Integer>(MAX_HISTORY_SIZE);
448 len = mHistory.size();
451 int n = mHistory.get(i);
591 mHistory.clear();
597 mHistory.clear();
600 mHistory.add(n);
610 mHistory.clear();
945 mHistory.clear();
1299 int histsize = mHistory.size();
1304 Integer pos = mHistory.remove(histsize - 1);
1338 mHistory.add(mPlayPos);
1340 if (mHistory.size() > MAX_HISTORY_SIZE) {
1341 mHistory.removeElementAt(0);
1350 int numHistory = mHistory.size();
1353 int idx = mHistory.get(i).intValue();
1482 int lookback = mHistory.size();
1491 mHistory.add(idx);
1492 if (mHistory.size() > MAX_HISTORY_SIZE) {
1493 mHistory.remove(0);
1513 int histsize = mHistory.size();
1520 long entry = mHistory.get(maxidx - i);