Home | History | Annotate | Download | only in calculator2

Lines Matching refs:mHistory

31     private History mHistory;
49 mHistory = history;
79 mDisplay.setText(mHistory.getText(),
122 mHistory.enter(text);
142 mHistory.update(text);
144 if (mHistory.moveToPrevious()) {
145 mDisplay.setText(mHistory.getText(), CalculatorDisplay.Scroll.DOWN);
152 mHistory.update(text);
154 if (mHistory.moveToNext()) {
155 mDisplay.setText(mHistory.getText(), CalculatorDisplay.Scroll.UP);
160 mHistory.update(getText());