[go: nahoru, domu]

Searched defs:mCount (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/opt/bitmap/src/com/android/bitmap/
H A DNamedThreadFactory.java26 private final AtomicInteger mCount = new AtomicInteger(0); field in class:NamedThreadFactory
36 thread.setName(mBaseName + "-" + mCount.getAndIncrement());
/frameworks/base/core/java/com/android/internal/os/
H A DKernelWakelockStats.java25 public int mCount; field in class:KernelWakelockStats.Entry
30 mCount = count;
/frameworks/base/core/tests/coretests/src/android/os/
H A DMessageQueueTest.java32 int mCount; field in class:MessageQueueTest.BaseTestHandler
50 if (mCount <= mLastMessage) {
51 if (msg.what != mCount) {
53 "Expected message #" + mCount
55 } else if (mCount == mLastMessage) {
58 mCount++;
73 mCount = 0;
92 mCount = 0;
112 int mCount; field in class:MessageQueueTest.TestFieldIntegrityHandler
130 if (mCount <
[all...]
/frameworks/base/packages/SystemUI/src/com/android/systemui/classifier/
H A DPointerCountClassifier.java25 private int mCount; field in class:PointerCountClassifier
28 mCount = 0;
41 mCount = 1;
45 ++mCount;
51 return PointerCountEvaluator.evaluate(mCount);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recents/misc/
H A DNamedCounter.java24 int mCount; field in class:NamedCounter
35 String name = mPrefix + mCount + mSuffix;
36 mCount++;
H A DReferenceCountedTrigger.java30 int mCount; field in class:ReferenceCountedTrigger
62 if (mCount == 0 && !mFirstIncRunnables.isEmpty()) {
68 mCount++;
83 mCount--;
84 if (mCount == 0) {
86 } else if (mCount < 0) {
128 return mCount;
/frameworks/native/opengl/libagl/
H A DBufferObjectManager.h67 mutable std::atomic_size_t mCount; member in class:android::EGLBufferObjectManager
73 mCount.fetch_add(1, std::memory_order_relaxed);
76 if (mCount.fetch_sub(1, std::memory_order_release) == 0) {
/frameworks/native/opengl/tests/testPauseResume/src/com/android/test/
H A DTestActivity.java27 int mCount; field in class:TestActivity
32 Log.w(TAG, "****** step " + mCount + " resume");
33 mCount++;
36 Log.w(TAG, "step " + mCount + " pause");
/frameworks/opt/vcard/java/com/android/vcard/
H A DVCardEntryCounter.java22 private int mCount; field in class:VCardEntryCounter
25 return mCount;
42 mCount++;
/frameworks/base/core/java/android/os/health/
H A DTimerStat.java31 private int mCount; field in class:TimerStat
61 mCount = count;
70 mCount = in.readInt();
85 out.writeInt(mCount);
93 mCount = count;
100 return mCount;
/frameworks/base/core/java/android/view/
H A DHandlerActionQueue.java32 private int mCount; field in class:HandlerActionQueue
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/base/core/java/com/android/internal/midi/
H A DMidiFramer.java39 private int mCount; field in class:MidiFramer
70 mCount = 1;
88 mCount = 1;
102 mBuffer[mCount++] = currentByte;
107 mReceiver.send(mBuffer, 0, mCount, timestamp);
109 mCount = 1;
/frameworks/base/libs/hwui/utils/
H A DRingBuffer.h35 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; member in class:android::uirenderer::RingBuffer
/frameworks/base/media/java/android/mtp/
H A DMtpPropertyList.java27 private int mCount; field in class:MtpPropertyList
54 int index = mCount++;
65 int index = mCount++;
/frameworks/rs/driver/
H A DrsdVertexArray.h59 uint32_t mCount; member in class:RsdVertexArray
/frameworks/av/media/img_utils/include/img_utils/
H A DDngUtils.h189 uint32_t mCount; member in class:android::img_utils::OpcodeListBuilder
H A DTiffEntryImpl.h57 uint32_t mCount; member in class:android::img_utils::TiffEntryImpl
66 : mTag(tag), mType(static_cast<uint16_t>(type)), mCount(count), mEnd(end) {
77 return mCount;
104 uint32_t total = sizeof(T) * mCount;
128 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
134 uint32_t count = mCount;
160 uint32_t count = mCount;
188 BAIL_ON_FAIL(out->write(&mCount, 0, 1), ret);
206 for (uint32_t i = 0; i < mCount; ++i) {
/frameworks/base/core/java/android/database/
H A DBulkCursorToCursorAdaptor.java35 private int mCount; field in class:BulkCursorToCursorAdaptor
45 mCount = d.count;
70 return mCount;
135 mCount = mBulkCursor.requery(getObserver());
136 if (mCount != -1) {
141 // observer from the far side so that observers can see a correct value for mCount
/frameworks/base/core/java/android/os/
H A DUpdateLock.java42 int mCount = 0; field in class:UpdateLock
113 if (!mRefCounted || mCount++ == 0) {
137 if (!mRefCounted || --mCount == 0) {
147 if (mCount < 0) {
/frameworks/base/core/java/android/view/inputmethod/
H A DInputMethodSubtypeArray.java54 mCount = 0;
57 mCount = subtypes.size();
58 mInstance = subtypes.toArray(new InputMethodSubtype[mCount]);
69 mCount = source.readInt();
70 if (mCount > 0) {
86 if (mCount == 0) {
87 dest.writeInt(mCount);
113 dest.writeInt(mCount);
131 if (index < 0 || mCount <= index) {
148 instance = new InputMethodSubtype[mCount];
165 private final int mCount; field in class:InputMethodSubtypeArray
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DFilteringCursorWrapper.java37 private int mCount; field in class:FilteringCursorWrapper
55 while (cursor.moveToNext() && mCount < count) {
65 mPosition[mCount++] = cursor.getPosition();
69 if (DEBUG && mCount != cursor.getCount()) {
70 Log.d(TAG, "Before filtering " + cursor.getCount() + ", after " + mCount);
97 return mCount;
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DAutoSizingList.java39 private int mCount; field in class:AutoSizingList
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();
/frameworks/opt/setupwizard/library/main/src/com/android/setupwizardlib/items/
H A DItemGroup.java90 private int mCount = 0; field in class:ItemGroup
145 return mCount;
186 mCount = 0;
191 mHierarchyStart.put(itemIndex, mCount);
193 mCount += item.getCount();
206 if (position < 0 || position >= mCount) {
207 throw new IndexOutOfBoundsException("size=" + mCount + "; index=" + position);
/frameworks/rs/java/tests/RsCameraDemo/src/com/android/example/rscamera/
H A DViewfinderProcessor.java33 int mCount; field in class:ViewfinderProcessor
115 mCount++;
120 mFps = mCount * 1000 / (float) (time);
121 mCount = 0;
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
H A DGridTest.java32 int mCount; field in class:GridTest.Provider
37 mCount = items.length;
38 mEdges = new int[mCount];
43 return mCount;

Completed in 713 milliseconds

123