Home
last modified time | relevance | path

Searched refs:mTotal (Results 1 – 4 of 4) sorted by relevance

/packages/apps/VoiceDialer/src/com/android/voicedialer/
DVoiceDialerTester.java44 public int mTotal; field in VoiceDialerTester.WavFile
101 wf.mTotal = -1; in onRecognitionError()
112 wf.mTotal = 0; in onRecognitionFailure()
122 wf.mTotal = intents.length; in onRecognitionSuccess()
163 Log.d(TAG, wf.mRank + "/" + wf.mTotal + " " + wf.mFile + in report()
236 if (wf.mRank == 1 && wf.mTotal == 1) count11++; in reportSummary()
237 if (wf.mRank == 1 && wf.mTotal >= 1) count1N++; in reportSummary()
238 if (wf.mRank >= 1 && wf.mTotal >= 1) countMN++; in reportSummary()
239 if (wf.mRank == 0 && wf.mTotal >= 1) count0N++; in reportSummary()
240 if (wf.mRank == 0 && wf.mTotal == 0) countFail++; in reportSummary()
[all …]
/packages/apps/Gallery2/src/com/android/gallery3d/ui/
DSelectionManager.java45 private int mTotal; field in SelectionManager
56 mTotal = -1; in SelectionManager()
72 mTotal = -1; in selectAll()
114 if (mTotal < 0) { in getTotalCount()
115 mTotal = mIsAlbumSet in getTotalCount()
119 return mTotal; in getTotalCount()
250 mTotal = -1; in setSourceMediaSet()
/packages/apps/Mms/src/com/android/mms/ui/
DEditSlideDurationActivity.java49 private int mTotal; field in EditSlideDurationActivity
69 mTotal = intent.getIntExtra(SLIDE_TOTAL, 1); in onCreate()
75 mTotal = mState.getInt(SLIDE_TOTAL, 1); in onCreate()
81 …mLabel.setText(getString(R.string.duration_selector_title) + " " + (mCurSlide + 1) + "/" + mTotal); in onCreate()
103 mState.putInt(SLIDE_TOTAL, mTotal); in onSaveInstanceState()
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
DSourceLatency.java72 private long mTotal = 0; field in SourceLatency.ElapsedTime
75 mTotal += time; in addTime()
79 return mTotal; in getTotal()
82 return mTotal / mCount; in getAverage()