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();
1301 int histsize = mHistory.size();
1306 Integer pos = mHistory.remove(histsize - 1);
1340 mHistory.add(mPlayPos);
1342 if (mHistory.size() > MAX_HISTORY_SIZE) {
1343 mHistory.removeElementAt(0);
1352 int numHistory = mHistory.size();
1355 int idx = mHistory.get(i).intValue();
1484 int lookback = mHistory.size();
1493 mHistory.add(idx);
1494 if (mHistory.size() > MAX_HISTORY_SIZE) {
1495 mHistory.remove(0);
1515 int histsize = mHistory.size();
1522 long entry = mHistory.get(maxidx - i);