OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mPhotos
(Results
1 - 4
of
4
) sorted by null
/packages/apps/Gallery2/src/com/android/gallery3d/gadget/
LocalPhotoSource.java
60
private ArrayList<Long>
mPhotos
= new ArrayList<Long>();
88
if (index <
mPhotos
.size()) {
90
.appendPath(String.valueOf(
mPhotos
.get(index)))
98
if (index >=
mPhotos
.size()) return null;
99
long id =
mPhotos
.get(index);
136
if (
mPhotos
.size() < Math.min(totalCount, MAX_PHOTO_COUNT)) return false;
137
if (
mPhotos
.size() == 0) return true; // totalCount is also 0
140
for (Long imageId :
mPhotos
) {
151
return cursor.getInt(0) ==
mPhotos
.size();
169
mPhotos
.clear()
[
all
...]
/development/samples/ApiDemos/src/com/example/android/apis/view/
List8.java
87
private ArrayList<Integer>
mPhotos
= new ArrayList<Integer>();
94
return
mPhotos
.size();
109
i.setImageResource(
mPhotos
.get(position));
121
mPhotos
.clear();
128
mPhotos
.add(newPhoto);
/packages/apps/Contacts/src/com/android/contacts/util/
StreamItemEntry.java
35
*
mPhotos
. Social stream item entries are comparable; entries with more recent
59
private List<StreamItemPhotoEntry>
mPhotos
;
82
mPhotos
= new ArrayList<StreamItemPhotoEntry>();
98
mPhotos
= new ArrayList<StreamItemPhotoEntry>();
102
mPhotos
.add(photoEntry);
151
Collections.sort(
mPhotos
);
152
return
mPhotos
;
/development/samples/devbytes/animation/ActivityAnimations/src/com/example/android/activityanim/
BitmapUtils.java
31
int[]
mPhotos
= {
62
int resourceId =
mPhotos
[(int) (Math.random() *
mPhotos
.length)];
Completed in 202 milliseconds