HomeSort by relevance Sort by last modified time
    Searched refs:mHistory (Results 1 - 15 of 15) sorted by null

  /external/replicaisland/src/com/replica/replicaisland/
MotionBlurComponent.java 23 private BlurRecord[] mHistory;
39 mHistory = new BlurRecord[STEP_COUNT];
41 mHistory[x] = new BlurRecord();
50 mHistory[x].texture = null;
51 mHistory[x].position.zero();
72 mHistory[mCurrentStep].texture = currentTexture;
73 mHistory[mCurrentStep].position.set(((GameObject)parent).getPosition());
74 mHistory[mCurrentStep].width = drawable.getWidth();
75 mHistory[mCurrentStep].height = drawable.getHeight();
77 mHistory[mCurrentStep].crop[0] = drawableCrop[0]
    [all...]
  /packages/apps/Calculator/src/com/android/calculator2/
Logic.java 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)
    [all...]
Calculator.java 44 private History mHistory;
94 mHistory = mPersist.history;
98 mLogic = new Logic(this, mHistory, mDisplay);
104 HistoryAdapter historyAdapter = new HistoryAdapter(this, mHistory, mLogic);
105 mHistory.setObserver(historyAdapter);
201 mHistory.clear();
  /external/chromium_org/chrome/android/javatests/src/org/chromium/chrome/browser/
NavigationPopupTest.java 58 private TestNavigationHistory mHistory;
62 mHistory = new TestNavigationHistory();
63 mHistory.addEntry(new TestNavigationEntry(
65 mHistory.addEntry(new TestNavigationEntry(
71 return mHistory;
103 NavigationHistory history = client.mHistory;
  /external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/
NavigationPopup.java 50 private final NavigationHistory mHistory;
70 mHistory = mNavigationClient.getDirectedNavigationHistory(
91 return mHistory.getEntryCount() > 0;
114 for (int i = 0; i < mHistory.getEntryCount(); i++) {
115 NavigationEntry entry = mHistory.getEntryAtIndex(i);
128 for (int i = 0; i < mHistory.getEntryCount(); i++) {
129 NavigationEntry entry = mHistory.getEntryAtIndex(i);
207 return mHistory.getEntryCount();
212 return mHistory.getEntryAtIndex(position);
  /development/samples/Wiktionary/src/com/example/android/wiktionary/
LookupActivity.java 68 private Stack<String> mHistory = new Stack<String>();
121 if (keyCode == KeyEvent.KEYCODE_BACK && !mHistory.empty()) {
132 String lastEntry = mHistory.pop();
153 mHistory.add(mEntryTitle);
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 482 mHistory.erase(mHistory.begin());
486 mHistory.push_back(buffer);
713 List<sp<ABuffer> >::iterator it = mHistory.begin();
715 while (it != mHistory.end()) {
756 if (!mHistory.empty()) {
757 int32_t earliest = (*mHistory.begin())->int32Data() & 0xffff;
758 int32_t latest = (*--mHistory.end())->int32Data() & 0xffff;
RTPSender.h 92 List<sp<ABuffer> > mHistory;
  /packages/apps/Settings/src/com/android/settings/widget/
ChartDataUsageView.java 59 private NetworkStatsHistory mHistory;
164 mHistory = stats;
174 if (mHistory != null) {
175 mDetailSeries.setEndTime(mHistory.getEnd());
388 return mHistory != null ? mHistory.getStart() : Long.MAX_VALUE;
392 return mHistory != null ? mHistory.getEnd() : Long.MIN_VALUE;
  /packages/apps/Music/src/com/android/music/
MediaPlaybackService.java 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();
    [all...]
  /packages/apps/Browser/src/com/android/browser/
PieControl.java 61 private PieItem mHistory;
137 mHistory = makeItem(R.drawable.ic_history_holo_dark, 1);
163 mShare, mBookmarks, mNewTab, mIncognito, mClose, mHistory,
193 mBookmarks.addItem(mHistory);
214 } else if (mHistory.getView() == v) {
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 100 private HistoryManager mHistory = null;
264 mHistory.addHistoryItem(historyItem);
272 HistoryItem historyItem = mHistory.getItem(position);
277 mHistory.setCurrentPreset(position);
281 return mHistory;
289 mHistory = adapter;
  /frameworks/opt/vcard/tests/src/com/android/vcard/tests/
VCardParserTests.java 46 private final List<Order> mHistory = new ArrayList<Order>();
55 mHistory.add(order);
  /development/samples/ApiDemos/src/com/example/android/apis/app/
DeviceAdminSample.java 518 private EditTextPreference mHistory;
528 mHistory = (EditTextPreference) findPreference(KEY_HISTORY);
532 mHistory.setOnPreferenceChangeListener(this);
553 mHistory.setSummary(localGlobalSummary(local, global));
581 if (preference == mHistory) {
    [all...]
  /frameworks/base/core/java/com/android/internal/os/
BatteryStatsImpl.java 186 HistoryItem mHistory;
    [all...]

Completed in 1087 milliseconds