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

1 2 3 4 5 6 7 8 91011

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
historical_info.h 28 : mTimestamp(NOT_A_TIMESTAMP), mLevel(0), mCount(0) {}
31 : mTimestamp(timestamp), mLevel(level), mCount(count) {}
46 return mCount;
55 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 32 int mCount;
61 if (mCount == 0 && !mFirstIncRunnables.isEmpty()) {
67 mCount++;
79 boolean ensureLastDecrement = (mCount == 0);
87 mCount--;
88 if (mCount == 0 && !mLastDecRunnables.isEmpty()) {
93 } else if (mCount < 0) {
119 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...]
  /packages/apps/Email/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;
  /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/msm8960/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int mCount;
  /hardware/qcom/display/msm8974/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);
  /sdk/emulator/opengl/shared/emugl/common/
smart_ptr.cpp 27 RefCount() : mCount(1) {}
31 int count() const { return (int)mCount; }
35 InterlockedIncrement(&mCount);
37 __sync_fetch_and_add(&mCount, 1);
43 return InterlockedDecrement(&mCount) == 0;
45 return __sync_add_and_fetch(&mCount, -1) == 0;
51 LONG mCount;
53 int mCount;
  /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;
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/property/
bigram_property.h 32 mTimestamp(timestamp), mLevel(level), mCount(count) {}
51 return mCount;
63 int mCount;
  /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");
  /frameworks/base/core/java/android/net/http/
IdleCache.java 48 private int mCount = 0;
72 HttpLog.v("IdleCache size " + mCount + " host " + host);
75 if (mCount < IDLE_CACHE_MAX) {
83 mCount++;
100 if (mCount > 0) {
108 mCount--;
118 for (int i = 0; mCount > 0 && i < IDLE_CACHE_MAX; i++) {
124 mCount--;
130 if (mCount > 0) {
138 mCount--
    [all...]
  /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);
  /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...]
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.cpp 16 Input::Input() : mCount(0), mString(0)
21 mCount(count),
24 mLength.reserve(mCount);
25 for (size_t i = 0; i < mCount; ++i)
35 while ((nRead < maxSize) && (mReadLoc.sIndex < mCount))
  /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;
59 mCount = count;
69 return Arrays.hashCode(new Object[] { mProbability, mTimestamp, mLevel, mCount });
89 && mCount == p.mCount;
  /cts/tests/tests/animation/src/android/animation/cts/
LayoutAnimationActivity.java 27 private int mCount = 1;
39 newButton.setText("Button:" + LayoutAnimationActivity.this.mCount);
42 LayoutAnimationActivity.this.mCount++;
  /development/samples/ApiDemos/src/com/example/android/apis/nfc/
TechFilter.java 29 private int mCount = 0;
41 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
49 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 27 private int mCount;
54 int index = mCount++;
65 int index = mCount++;

Completed in 530 milliseconds

1 2 3 4 5 6 7 8 91011