Home
last modified time | relevance | path

Searched refs:HistoryEntry (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Calculator/src/com/android/calculator2/
DHistory.java29 Vector<HistoryEntry> mEntries = new Vector<HistoryEntry>();
41 mEntries.add(new HistoryEntry(version, in)); in History()
61 mEntries.add(new HistoryEntry("")); in clear()
68 for (HistoryEntry entry : mEntries) { in write()
101 mEntries.insertElementAt(new HistoryEntry(text), mEntries.size() - 1); in enter()
107 HistoryEntry current() { in current()
DHistoryEntry.java23 class HistoryEntry { class
28 HistoryEntry(String str) { in HistoryEntry() method in HistoryEntry
33 HistoryEntry(int version, DataInput in) throws IOException { in HistoryEntry() method in HistoryEntry
DHistoryAdapter.java31 private Vector<HistoryEntry> mEntries;
73 HistoryEntry entry = mEntries.elementAt(position); in getView()