HomeSort by relevance Sort by last modified time
    Searched full:mcount (Results 1 - 25 of 476) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/tests/coretests/src/android/os/
IdleHandlerTest.java 61 int mCount;
65 mCount = 0;
74 if (mCount == 1) {
78 "Idle handler called " + mCount + " times"));
84 mCount++;
95 int mCount;
99 mCount = 0;
110 if (mCount == 1) {
114 "Idle handler called " + mCount + " times"));
120 mCount++
    [all...]
  /frameworks/base/libs/hwui/utils/
RingBuffer.h 35 size_t size() const { return mCount; }
39 if (mCount < SIZE) {
40 mCount++;
54 return mBuffer[(mHead + index + 1) % mCount];
58 return mBuffer[(mHead + index + 1) % mCount];
62 mCount = 0;
69 size_t mCount = 0;
  /frameworks/base/core/java/android/view/
HandlerActionQueue.java 32 private int mCount;
45 mActions = GrowingArrayUtils.append(mActions, mCount, handlerAction);
46 mCount++;
52 final int count = mCount;
73 mCount = j;
85 for (int i = 0, count = mCount; i < count; i++) {
91 mCount = 0;
96 return mCount;
100 if (index >= mCount) {
107 if (index >= mCount) {
    [all...]
  /packages/apps/Email/provider_src/com/android/email/
FixedLengthInputStream.java 30 private int mCount;
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/services/Telephony/src/com/android/phone/common/mail/
FixedLengthInputStream.java 29 private int mCount;
38 return mLength - mCount;
43 if (mCount < mLength) {
44 mCount++;
53 if (mCount < mLength) {
54 int d = mIn.read(b, offset, Math.min(mLength - mCount, length));
58 mCount += d;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
PointerCountClassifier.java 25 private int mCount;
28 mCount = 0;
41 mCount = 1;
45 ++mCount;
51 return PointerCountEvaluator.evaluate(mCount);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
NamedCounter.java 24 int mCount;
35 String name = mPrefix + mCount + mSuffix;
36 mCount++;
ReferenceCountedTrigger.java 30 int mCount;
62 if (mCount == 0 && !mFirstIncRunnables.isEmpty()) {
68 mCount++;
83 mCount--;
84 if (mCount == 0) {
86 } else if (mCount < 0) {
128 return mCount;
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCounter.java 22 private int mCount;
25 return mCount;
42 mCount++;
  /external/apache-http/android/src/android/net/http/
IdleCache.java 45 private int mCount = 0;
69 HttpLog.v("IdleCache size " + mCount + " host " + host);
72 if (mCount < IDLE_CACHE_MAX) {
80 mCount++;
97 if (mCount > 0) {
105 mCount--;
115 for (int i = 0; mCount > 0 && i < IDLE_CACHE_MAX; i++) {
121 mCount--;
127 if (mCount > 0) {
135 mCount--
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
FixedSizeArray.java 35 private int mCount;
45 mCount = 0;
55 mCount = 0;
67 assert mCount < mContents.length : "Array exhausted!";
68 if (mCount < mContents.length) {
69 mContents[mCount] = object;
71 mCount++;
93 assert index < mCount;
95 if (index < mCount) {
96 for (int x = index; x < mCount; x++)
    [all...]
  /frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
TestActivity.java 27 int mCount;
32 Log.w(TAG, "****** step " + mCount + " resume");
33 mCount++;
36 Log.w(TAG, "step " + mCount + " pause");
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CountingOutputStream.java 27 private long mCount;
35 return mCount;
41 mCount += count;
47 mCount++;
  /packages/apps/Email/src/com/android/email/mail/transport/
StatusOutputStream.java 27 private long mCount = 0;
36 mCount++;
38 if (mCount % 1024 == 0) {
39 LogUtils.v(Logging.LOG_TAG, "# " + mCount);
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
historical_info.h 28 : mTimestamp(NOT_A_TIMESTAMP), mLevel(0), mCount(0) {}
31 : mTimestamp(timestamp), mLevel(level), mCount(count) {}
47 return mCount;
56 const int mCount;
  /packages/services/Telephony/src/com/android/phone/common/mail/utility/
CountingOutputStream.java 26 private long mCount;
34 return mCount;
40 mCount += count;
46 mCount++;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
AutoSizingList.java 39 private int mCount;
64 if (mCount != count) {
66 mCount = count;
84 for (int i = 0; i < mCount; i++) {
95 while (getChildCount() > mCount) {
110 if (mCount > getDesiredCount()) {
111 mCount = getDesiredCount();
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/sensorverification/
AbstractMeanVerification.java 28 private int mCount = 0;
42 mCount++;
49 return mCount;
56 if (mCount < 0) {
62 means[i] = mSums[i] / mCount;
  /frameworks/base/core/java/android/os/health/
TimerStat.java 31 private int mCount;
61 mCount = count;
70 mCount = in.readInt();
85 out.writeInt(mCount);
93 mCount = count;
100 return mCount;
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
UiHandler.java 42 private AtomicInteger mCount = new AtomicInteger(0);
46 mCount.incrementAndGet();
50 mCount.decrementAndGet();
61 mCount.incrementAndGet();
65 mCount.decrementAndGet();
81 int count = mCount.getAndSet(0);
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
ProbabilityInfo.java 27 // mTimestamp, mLevel and mCount are historical info. These values are depend on the
32 public final int mCount;
56 mCount = count;
66 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
85 && mCount == p.mCount;
  /external/icu/icu4c/source/layout/
MarkArrays.cpp 22 le_uint16 mCount = SWAPW(markCount);
24 if (coverageIndex < mCount) {
  /frameworks/base/core/java/com/android/internal/os/
KernelWakelockStats.java 25 public int mCount;
30 mCount = count;
  /frameworks/base/core/java/android/view/inputmethod/
SparseRectFArray.java 149 if (mCount == 0) {
152 if (mKeys[mCount - 1] >= key) {
170 final int requiredIndexArraySize = mCount + 1;
173 System.arraycopy(mKeys, 0, newArray, 0, mCount);
176 final int requiredCoordinatesArraySize = (mCount + 1) * 4;
179 System.arraycopy(mCoordinates, 0, newArray, 0, mCount * 4);
185 System.arraycopy(mFlagsArray, 0, newArray, 0, mCount);
207 final int baseCoordinatesIndex = mCount * 4;
212 final int flagsIndex = mCount;
214 mKeys[mCount] = key
    [all...]
  /frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
GridTest.java 28 int mCount;
33 mCount = items.length;
34 mEdges = new int[mCount];
39 return mCount;

Completed in 513 milliseconds

1 2 3 4 5 6 7 8 91011>>