HomeSort by relevance Sort by last modified time
    Searched refs:mCount (Results 1 - 25 of 506) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /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);
  /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;
  /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/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/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;
  /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/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;
  /hardware/qcom/display/msm8084/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8226/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8909/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8960/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8994/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8996/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /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/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/core/java/com/android/internal/os/
KernelWakelockStats.java 25 public int mCount;
30 mCount = count;
  /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/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...]
  /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");
  /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...]

Completed in 422 milliseconds

1 2 3 4 5 6 7 8 91011>>