HomeSort by relevance Sort by last modified time
    Searched refs:mHistory (Results 1 - 16 of 16) 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);
200 mHistory.clear();
  /frameworks/base/services/java/com/android/server/am/
ActivityStack.java 156 final ArrayList<ActivityRecord> mHistory = new ArrayList<ActivityRecord>();
448 int i = mHistory.size()-1;
450 ActivityRecord r = mHistory.get(i);
460 int i = mHistory.size()-1;
462 ActivityRecord r = mHistory.get(i);
481 int i = mHistory.size()-1;
483 ActivityRecord r = mHistory.get(i);
495 return mHistory.indexOf(ActivityRecord.forToken(token));
499 return mHistory.indexOf(r);
504 if (mHistory.contains(r))
    [all...]
CompatModePackages.java 302 for (int i=mService.mMainStack.mHistory.size()-1; i>=0; i--) {
303 ActivityRecord a = (ActivityRecord)mService.mMainStack.mHistory.get(i);
ActivityManagerService.java     [all...]
  /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);
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/imageshow/
MasterImage.java 57 private HistoryAdapter mHistory = null;
147 mHistory.addHistoryItem(mPreset);
192 setPreset(new ImagePreset(mHistory.getItem(position)), false);
194 mHistory.setCurrentPreset(position);
198 return mHistory;
206 mHistory = adapter;
420 mHistory.notifyDataSetChanged();
  /frameworks/av/media/libstagefright/wifi-display/rtp/
RTPSender.cpp 483 mHistory.erase(mHistory.begin());
487 mHistory.push_back(buffer);
714 List<sp<ABuffer> >::iterator it = mHistory.begin();
716 while (it != mHistory.end()) {
757 if (!mHistory.empty()) {
758 int32_t earliest = (*mHistory.begin())->int32Data() & 0xffff;
759 int32_t latest = (*--mHistory.end())->int32Data() & 0xffff;
RTPSender.h 91 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);
442 len = mHistory.size();
445 int n = mHistory.get(i);
585 mHistory.clear();
591 mHistory.clear();
594 mHistory.add(n);
604 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) {
  /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 183 HistoryItem mHistory;
    [all...]

Completed in 473 milliseconds