OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mCount
(Results
1 - 25
of
139
) sorted by null
1
2
3
4
5
6
/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
;
/external/icu4c/layout/
MarkArrays.cpp
22
le_uint16
mCount
= SWAPW(markCount);
24
if (coverageIndex <
mCount
) {
/packages/apps/Email/emailcommon/src/com/android/emailcommon/utility/
CountingOutputStream.java
27
private long
mCount
;
33
return
mCount
;
38
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
);
/system/core/include/utils/
CallStack.h
86
size_t size() const { return
mCount
; }
89
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; }
123
size_t
mCount
; // number of items
/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);
/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);
/external/chromium_org/third_party/angle/src/compiler/preprocessor/
Input.h
23
size_t count() const { return
mCount
; }
40
size_t
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/
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
++;
/hardware/libhardware/modules/camera/
Metadata.h
59
const int
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;
/system/core/libpixelflinger/codeflinger/tinyutils/
VectorImpl.h
35
* For performance reasons, we expose mStorage and
mCount
64
inline size_t size() const { return
mCount
; }
65
inline bool isEmpty() const { return
mCount
== 0; }
126
size_t
mCount
; // number of items
/art/test/051-thread/src/
Main.java
38
System.out.println("Thread count: " + MyThread.
mCount
);
65
static int
mCount
= 0;
68
++
mCount
;
/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
;
Completed in 1038 milliseconds
1
2
3
4
5
6