OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:mCount
(Results
26 - 50
of
134
) sorted by null
1
2
3
4
5
6
/packages/apps/ContactsCommon/src/com/android/contacts/common/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
;
/development/samples/ApiDemos/src/com/example/android/apis/nfc/
ForegroundDispatch.java
42
private int
mCount
= 0;
85
mText.setText("Discovered tag " + ++
mCount
+ " with intent: " + intent);
/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
;
/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/rs/cpp/util/
RefBase.h
167
inline LightRefBase() :
mCount
(0) { }
169
__sync_fetch_and_add(&
mCount
, 1);
172
if (__sync_fetch_and_sub(&
mCount
, 1) == 1) {
178
return
mCount
;
192
mutable volatile int32_t
mCount
;
/frameworks/rs/server/
RefBase.h
166
inline LightRefBase() :
mCount
(0) { }
168
__sync_fetch_and_add(&
mCount
, 1);
171
if (__sync_fetch_and_sub(&
mCount
, 1) == 1) {
177
return
mCount
;
191
mutable volatile int32_t
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
;
/packages/apps/Mms/src/com/android/mms/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
;
/system/core/include/utils/
RefBase.h
177
inline LightRefBase() :
mCount
(0) { }
179
android_atomic_inc(&
mCount
);
182
if (android_atomic_dec(&
mCount
) == 1) {
188
return
mCount
;
203
mutable volatile int32_t
mCount
;
/system/core/libpixelflinger/codeflinger/
CodeCache.h
72
mutable int32_t
mCount
;
/packages/apps/CellBroadcastReceiver/src/com/android/cellbroadcastreceiver/
CellBroadcastAlertFullScreen.java
90
private final AtomicInteger
mCount
= new AtomicInteger();
118
mCount
.incrementAndGet();
132
int msgWhat =
mCount
.incrementAndGet();
140
if (msg.what ==
mCount
.get()) {
179
private final AtomicInteger
mCount
= new AtomicInteger();
187
int msgWhat =
mCount
.incrementAndGet();
195
removeMessages(
mCount
.get());
214
if (msgWhat ==
mCount
.get()) {
/art/test/050-sync-test/src/
Main.java
91
static int
mCount
= 0;
109
System.out.println(
mCount
);
114
int count =
mCount
;
125
mCount
= count;
/dalvik/tests/050-sync-test/src/
Main.java
77
static int
mCount
= 0;
95
System.out.println(
mCount
);
100
int count =
mCount
;
111
mCount
= count;
/development/samples/StackWidget/src/com/example/android/stackwidget/
StackWidgetService.java
37
private static final int
mCount
= 10;
52
for (int i = 0; i <
mCount
; i++) {
73
return
mCount
;
/frameworks/base/core/java/android/database/
BulkCursorToCursorAdaptor.java
35
private int
mCount
;
46
mCount
= d.count;
71
return
mCount
;
136
mCount
= mBulkCursor.requery(getObserver());
137
if (
mCount
!= -1) {
142
// observer from the far side so that observers can see a correct value for
mCount
/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
...]
/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/core/java/com/android/internal/app/
PlatLogoActivity.java
45
int
mCount
;
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
FilteringCursorWrapper.java
34
private int
mCount
;
64
mPosition[
mCount
++] = cursor.getPosition();
68
Log.d(TAG, "Before filtering " + cursor.getCount() + ", after " +
mCount
);
94
return
mCount
;
RootCursorWrapper.java
31
private final int
mCount
;
48
mCount
= maxCount;
50
mCount
= count;
89
return
mCount
;
/packages/apps/Contacts/src/com/android/contacts/widget/
CompositeListAdapter.java
44
private int
mCount
= 0;
98
mCount
+= count;
124
mCount
= 0;
131
mCount
+= count;
141
return
mCount
;
/packages/apps/Mms/src/com/android/mms/util/
BackgroundLoaderManager.java
148
private final AtomicInteger
mCount
= new AtomicInteger(1);
156
Thread t = new Thread(r, mTag + "-" +
mCount
.getAndIncrement());
Completed in 1048 milliseconds
1
2
3
4
5
6