Searched defs:mCount (Results 1 - 17 of 17) sorted by relevance

/packages/apps/Email/src/com/android/email/mail/transport/
H A DCountingOutputStream.java27 private long mCount; field in class:CountingOutputStream
33 return mCount;
38 mCount++;
H A DStatusOutputStream.java29 private long mCount = 0; field in class:StatusOutputStream
38 mCount++;
40 if (mCount % 1024 == 0) {
41 Log.v(Email.LOG_TAG, "# " + mCount);
/packages/apps/Contacts/src/com/android/contacts/
H A DContactsSectionIndexer.java31 private final int mCount; field in class:ContactsSectionIndexer
64 mCount = position;
80 if (position < 0 || position >= mCount) {
H A DGroupingListAdapter.java67 private int mCount; field in class:GroupingListAdapter
143 mCount = -1;
224 if (mCount != -1) {
225 return mCount;
247 mCount = count + mCursor.getCount() - cursorPosition;
248 return mCount;
/packages/apps/Email/src/com/android/email/
H A DFixedLengthInputStream.java30 private int mCount; field in class:FixedLengthInputStream
39 return mLength - mCount;
44 if (mCount < mLength) {
45 mCount++;
54 if (mCount < mLength) {
55 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
59 mCount += d;
/packages/apps/Gallery3D/src/com/cooliris/media/
H A DMediaBucketList.java29 private int mCount; field in class:MediaBucketList
94 mCount = count;
97 return mCount;
H A DBackgroundLayer.java33 private int mCount; field in class:BackgroundLayer
86 if (mCount == MAX_ADAPTIVES_TO_KEEP_IN_MEMORY) {
87 mCount = 0;
91 ++mCount;
/packages/apps/QuickSearchBox/benchmarks/src/com/android/quicksearchbox/benchmarks/
H A DSourceLatency.java73 private int mCount = 0; field in class:SourceLatency.ElapsedTime
76 mCount++;
82 return mTotal / mCount;
85 return mCount;
/packages/apps/Browser/src/com/android/browser/
H A DBrowserBookmarksAdapter.java52 private int mCount; field in class:BrowserBookmarksAdapter
97 mCount = mCursor.getCount() + mExtraOffset;
109 if (position < mExtraOffset || position >= mCount) {
243 mCount = mCursor.getCount() + mExtraOffset;
340 return mCount;
403 if (position < 0 || position > mCount) {
505 if (position < mExtraOffset || position > mCount) {
520 if (position < mExtraOffset || position > mCount) {
531 if (position < mExtraOffset || position > mCount) {
/packages/apps/Mms/src/com/android/mms/transaction/
H A DMessagingNotification.java216 return info.mCount;
244 public int mCount; field in class:MessagingNotification.MmsSmsNotificationInfo
255 mCount = count;
/packages/apps/Email/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java653 int cnt = ops.mCount - eventOffset;
658 ops.mCount = eventOffset;
667 ops.mCount = deleteOffset;
859 int exceptionStart = ops.mCount;
1256 public int mCount = 0; field in class:CalendarSyncAdapter.CalendarOperations
1263 mCount++;
1268 mEventStart = mCount;
1274 int offset = mCount;
H A DContactsSyncAdapter.java942 private int mCount = 0; field in class:ContactsSyncAdapter.ContactOperations
943 private int mContactBackValue = mCount;
953 mCount++;
963 mContactBackValue = mCount;
964 mContactIndexArray[mContactIndexCount++] = mCount;
/packages/apps/Gallery/src/com/android/camera/
H A DGalleryPicker.java794 public final int mCount; field in class:Item
807 mCount = list.getCount();
808 if (mCount > 0) {
929 String title = item.mName + " (" + item.mCount + ")";
H A DGridViewSpecial.java136 private int mCount; // Cache mImageList.getCount(); field in class:GridViewSpecial
137 private int mRows; // Cache (mCount + mColumns - 1) / mColumns
182 mCount = mAllImages.getCount();
222 mRows = (mCount + mColumns - 1) / mColumns;
316 if (index >= 0 && index < mCount) {
363 if (index >= 0 && index < mCount) {
405 mCurrentSelection = Math.min(index, mCount - 1);
585 if (sel != mCount - 1 && (sel % mColumns < mColumns - 1)) {
600 sel = Math.min(mCount - 1, sel + mColumns);
625 topPos = Math.min(mCount
736 private final int mCount; // Cache mImageList.getCount(). field in class:ImageBlockManager
[all...]
/packages/apps/Settings/src/com/android/settings/battery_history/
H A DBatteryHistory.java323 int mCount; field in class:BatteryHistory.SensorUsage
332 mCount = count;
365 int mCount; field in class:BatteryHistory.WakelockUsage
374 mCount = count;
/packages/providers/ContactsProvider/src/com/android/providers/contacts/
H A DContactAggregator.java153 private int mCount; field in class:ContactAggregator.MatchCandidateList
159 if (mCount >= mList.size()) {
162 NameMatchCandidate candidate = mList.get(mCount);
166 mCount++;
170 mCount = 0;
949 for (int i = 0; i < candidates.mCount; i++) {
1001 for (int i = 0; i < candidates.mCount; i++) {
/packages/apps/Settings/src/com/android/settings/
H A DManageApplications.java464 private CountDownLatch mCount; field in class:ManageApplications.SizeObserver
469 mCount = count;
476 mCount.countDown();

Completed in 183 milliseconds