Home | History | Annotate | Download | only in calculator2

Lines Matching refs:mHistory

38     private History mHistory;
72 mHistory = history;
120 String text = mHistory.getText();
122 if (!mHistory.moveToPrevious()) {
125 text = mHistory.getText();
136 mHistory.enter("");
182 mHistory.enter(text);
198 mHistory.update(text);
200 if (mHistory.moveToPrevious()) {
201 mDisplay.setText(mHistory.getText(), CalculatorDisplay.Scroll.DOWN);
208 mHistory.update(text);
210 if (mHistory.moveToNext()) {
211 mDisplay.setText(mHistory.getText(), CalculatorDisplay.Scroll.UP);
221 mHistory.update(MARKER_EVALUATE_ON_RESUME);
223 mHistory.update(getText());