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

1 2 3 4 5

  /external/icu4c/layout/
MarkArrays.cpp 22 le_uint16 mCount = SWAPW(markCount);
24 if (coverageIndex < mCount) {
  /frameworks/native/include/utils/
CallStack.h 62 size_t size() const { return mCount; }
65 size_t mCount;
VectorImpl.h 35 * For performance reasons, we expose mStorage and mCount
63 inline size_t size() const { return mCount; }
64 inline bool isEmpty() const { return mCount == 0; }
132 size_t mCount; // number of items
RefBase.h 167 inline LightRefBase() : mCount(0) { }
169 android_atomic_inc(&mCount);
172 if (android_atomic_dec(&mCount) == 1) {
178 return mCount;
192 mutable volatile int32_t mCount;
  /packages/apps/Email/src/com/android/email/mail/transport/
CountingOutputStream.java 27 private long mCount;
33 return mCount;
38 mCount++;
StatusOutputStream.java 28 private long mCount = 0;
37 mCount++;
39 if (mCount % 1024 == 0) {
40 Log.v(Logging.LOG_TAG, "# " + 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);
ForegroundDispatch.java 42 private int mCount = 0;
85 mText.setText("Discovered tag " + ++mCount + " with intent: " + intent);
  /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/av/media/libstagefright/wifi-display/sink/
LinearRegression.h 42 size_t mCount;
  /frameworks/base/core/tests/coretests/src/android/os/
MessageQueueTest.java 30 int mCount;
48 if (mCount <= mLastMessage) {
49 if (msg.what != mCount) {
51 "Expected message #" + mCount
53 } else if (mCount == mLastMessage) {
56 mCount++;
71 mCount = 0;
90 mCount = 0;
110 int mCount;
128 if (mCount <= mLastMessage)
    [all...]
  /frameworks/base/media/java/android/mtp/
MtpPropertyList.java 27 private int mCount;
54 int index = mCount++;
65 int index = mCount++;
  /frameworks/native/opengl/libagl/
BufferObjectManager.h 67 mutable volatile int32_t mCount;
73 android_atomic_inc(&mCount);
76 if (android_atomic_dec(&mCount) == 1) {
  /frameworks/opt/vcard/java/com/android/vcard/
VCardEntryCounter.java 22 private int mCount;
25 return mCount;
42 mCount++;
  /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;
  /sdk/layoutlib_api/src/com/android/ide/common/rendering/api/
DataBindingItem.java 37 private final int mCount;
42 mCount = count;
73 return mCount;
  /system/core/libpixelflinger/tinyutils/
VectorImpl.h 26 * For performance reasons, we expose mStorage and mCount
55 inline size_t size() const { return mCount; }
56 inline bool isEmpty() const { return mCount == 0; }
117 size_t mCount; // number of items
  /cts/tests/tests/content/src/android/content/cts/
ClipboardManagerListenerTest.java 75 private int mCount = 0;
80 mCount++;
85 return mCount;
  /dalvik/tests/051-thread/src/
Main.java 38 System.out.println("Thread count: " + MyThread.mCount);
65 static int mCount = 0;
68 ++mCount;
  /frameworks/native/services/sensorservice/
Fusion.h 73 size_t mCount[3];
  /frameworks/rs/driver/
rsdVertexArray.h 59 uint32_t mCount;
  /packages/apps/Contacts/src/com/android/contacts/list/
ContactsSectionIndexer.java 32 private int mCount;
66 mCount = position;
82 if (position < 0 || position >= mCount) {
118 mCount++;
  /cts/tests/src/android/view/animation/cts/
GridLayoutAnimStubActivity.java 49 private final int mCount;
52 mCount = count;
74 return mCount;
  /external/astl/tests/
common.h 62 static size_t mCount;
66 CopyCounter(const CopyCounter& nc) {++mCount;}
89 size_t CopyCounter::mCount;

Completed in 946 milliseconds

1 2 3 4 5