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

1 2 3 4 5 6 7

  /system/core/libutils/
CallStack.cpp 30 mCount(0) {
39 mCount(rhs.mCount) {
40 if (mCount) {
41 memcpy(mStack, rhs.mStack, mCount * sizeof(backtrace_frame_t));
49 mCount = rhs.mCount;
50 if (mCount) {
51 memcpy(mStack, rhs.mStack, mCount * sizeof(backtrace_frame_t));
57 if (mCount != rhs.mCount
    [all...]
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCounter.java 22 private int mCount;
25 return mCount;
42 mCount++;
  /packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CountingOutputStream.java 27 private long mCount;
33 return mCount;
38 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/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;
  /hardware/qcom/display/msm8x26/libcopybit/
copybit_priv.h 34 mCount = 1;
44 if (me->mCount) {
49 me->mCount--;
55 mutable int 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);
  /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);
  /external/chromium_org/third_party/angle_dx11/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))
Input.h 23 size_t count() const { return mCount; }
40 size_t 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++;
  /external/icu4c/layout/
MarkArrays.cpp 22 le_uint16 mCount = SWAPW(markCount);
24 if (coverageIndex < mCount) {
  /system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.cpp 47 : mStorage(0), mCount(0), mFlags(flags), mItemSize(itemSize)
52 : mStorage(rhs.mStorage), mCount(rhs.mCount),
62 ALOG_ASSERT(!mCount,
66 this, (int)(mCount*mItemSize));
76 if (rhs.mCount) {
78 mCount = rhs.mCount;
82 mCount = 0;
95 _do_copy(sb->data(), mStorage, mCount);
    [all...]
  /frameworks/base/core/java/android/os/
UpdateLock.java 42 int mCount = 0;
113 if (!mRefCounted || mCount++ == 0) {
137 if (!mRefCounted || --mCount == 0) {
147 if (mCount < 0) {
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/exif/
CountedDataInputStream.java 29 private int mCount = 0;
40 return mCount;
46 mCount += (r >= 0) ? r : 0;
53 mCount += (r >= 0) ? r : 0;
60 mCount += (r >= 0) ? 1 : 0;
67 mCount += skip;
76 long cur = mCount;
  /packages/apps/Camera2/src/com/android/camera/exif/
CountedDataInputStream.java 29 private int mCount = 0;
40 return mCount;
46 mCount += (r >= 0) ? r : 0;
53 mCount += (r >= 0) ? r : 0;
60 mCount += (r >= 0) ? 1 : 0;
67 mCount += skip;
76 long cur = mCount;
  /packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/
CountedDataInputStream.java 29 private int mCount = 0;
40 return mCount;
46 mCount += (r >= 0) ? r : 0;
53 mCount += (r >= 0) ? r : 0;
60 mCount += (r >= 0) ? 1 : 0;
67 mCount += skip;
76 long cur = mCount;
  /packages/apps/Launcher3/src/com/android/gallery3d/exif/
CountedDataInputStream.java 29 private int mCount = 0;
40 return mCount;
46 mCount += (r >= 0) ? r : 0;
53 mCount += (r >= 0) ? r : 0;
60 mCount += (r >= 0) ? 1 : 0;
67 mCount += skip;
76 long cur = mCount;

Completed in 277 milliseconds

1 2 3 4 5 6 7