OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mCurrentIndex
(Results
1 - 6
of
6
) sorted by null
/frameworks/base/core/java/android/webkit/
WebBackForwardList.java
29
private int
mCurrentIndex
;
41
mCurrentIndex
= -1;
52
return getItemAtIndex(
mCurrentIndex
);
61
return
mCurrentIndex
;
110
++
mCurrentIndex
;
114
final int newPos =
mCurrentIndex
;
134
mCurrentIndex
= -1;
152
mCurrentIndex
--;
167
l.
mCurrentIndex
=
mCurrentIndex
;
[
all
...]
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/deprecated/languageswitcher/
LanguageSwitcher.java
49
private int
mCurrentIndex
= 0;
101
mCurrentIndex
= 0;
104
mCurrentIndex
= 0;
107
mCurrentIndex
= i;
141
return mSelectedLanguageArray[
mCurrentIndex
];
161
return mLocales.get(
mCurrentIndex
);
166
return (
mCurrentIndex
+ 1) % size;
171
return (
mCurrentIndex
- 1 + size) % size;
209
mCurrentIndex
= 0;
213
mCurrentIndex
= nextLocaleIndex()
[
all
...]
/packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java
126
//
mCurrentIndex
is the "center" image the user is viewing. The change of
127
//
mCurrentIndex
triggers the data loading and image loading.
128
private int
mCurrentIndex
;
132
// the model. This is used after a database reload or
mCurrentIndex
changes.
157
// If mItemPath is not null,
mCurrentIndex
is only a hint for where we
158
// can find the item. If mItemPath is null, then we use the
mCurrentIndex
to
165
mCurrentIndex
= indexHint;
205
long current = getVersion(
mCurrentIndex
+ i);
236
if (version == getVersion(
mCurrentIndex
+ i)) {
259
if (version == getVersion(
mCurrentIndex
)) {
[
all
...]
GalleryActionBar.java
113
private int
mCurrentIndex
;
121
mCurrentIndex
= 0;
161
return sClusterItems[
mCurrentIndex
].action;
233
mCurrentIndex
= i;
242
if (itemPosition !=
mCurrentIndex
&& mClusterRunner != null) {
PhotoPage.java
96
private int
mCurrentIndex
= 0;
161
mFilmStripView.setFocusIndex(
mCurrentIndex
);
162
mFilmStripView.setStartIndex(
mCurrentIndex
);
184
mCurrentIndex
= data.getInt(KEY_INDEX_HINT, 0);
191
mActivity, mPhotoView, mMediaSet, itemPath,
mCurrentIndex
);
195
mResultIntent.putExtra(KEY_INDEX_HINT,
mCurrentIndex
);
203
mCurrentIndex
= index;
537
mModel.setCurrentPhoto(path,
mCurrentIndex
);
/packages/apps/Contacts/src/com/android/contacts/vcard/
ImportVCardActivity.java
529
private int
mCurrentIndex
;
533
switch (
mCurrentIndex
) {
547
mCurrentIndex
= which;
554
private int
mCurrentIndex
;
558
mCurrentIndex
= 0;
577
importVCardFromSDCard(mAllVCardFileList.get(
mCurrentIndex
));
583
mCurrentIndex
= which;
[
all
...]
Completed in 566 milliseconds