HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentIndex (Results 1 - 13 of 13) sorted by null

  /frameworks/webview/chromium/java/com/android/webview/chromium/
WebBackForwardListChromium.java 33 private final int mCurrentIndex;
36 mCurrentIndex = nav_history.getCurrentEntryIndex();
61 return mCurrentIndex;
88 mCurrentIndex = currentIndex;
101 return new WebBackForwardListChromium(list, mCurrentIndex);
  /packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/
ArrayInitializerFormatter.java 29 private int mCurrentIndex = 0;
44 return mCurrentIndex;
51 final int lastIndex = mCurrentIndex - 1;
84 mStartIndexOfBuffer = mCurrentIndex;
101 mCurrentIndex++;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
ScrollAdapterEditScrollListener.java 44 private int mCurrentIndex;
80 mCurrentIndex = index;
99 return mCurrentIndex;
112 mCurrentIndex = position;
124 if (mCurrentIndex >= mEditStartIndex) {
127 View curView = mScrollAdapterView.getItemView(mCurrentIndex + 1);
137 for (int index = mEditStartIndex; index < mCurrentIndex + 1; ++index) {
151 if (mCurrentIndex + 2 < size) {
152 for (int index = mCurrentIndex + 2; index < size; ++index) {
174 } else if (mCurrentIndex < mEditStartIndex)
    [all...]
  /development/samples/devbytes/graphics/BitmapAllocation/src/com/example/android/bitmapallocation/
BitmapAllocation.java 43 int mCurrentIndex = 0;
76 mCurrentIndex = (mCurrentIndex + 1) % imageIDs.length;
85 imageIDs[mCurrentIndex], bitmapOptions);
  /cts/tests/tests/tv/src/android/media/tv/cts/
StubTunerTvInputService.java 87 private int mCurrentIndex = -1;
100 if (mCurrentIndex >= 0 && mSurface != null) {
103 c.drawColor(COLORS[mCurrentIndex]);
133 mCurrentIndex = cursor.getBlob(0)[0];
135 mCurrentIndex = -1;
144 if (mCurrentIndex == 0) {
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
PhotoDataAdapter.java 128 // mCurrentIndex is the "center" image the user is viewing. The change of
129 // mCurrentIndex triggers the data loading and image loading.
130 private int mCurrentIndex;
134 // database reload or mCurrentIndex changes.
168 // If mItemPath is not null, mCurrentIndex is only a hint for where we
169 // can find the item. If mItemPath is null, then we use the mCurrentIndex to
178 mCurrentIndex = indexHint;
245 long newVersion = getVersion(mCurrentIndex + i);
266 mPaths[i] = getPath(mCurrentIndex + i - SCREEN_NAIL_MAX);
287 mPhotoView.notifyDataChange(fromIndex, -mCurrentIndex,
    [all...]
PhotoPage.java 141 private int mCurrentIndex = 0;
394 mCurrentIndex = data.getInt(KEY_INDEX_HINT, 0);
439 mCurrentIndex++;
460 if (mCurrentIndex >= mediaItemCount) mCurrentIndex = 0;
461 itemPath = mMediaSet.getMediaItem(mCurrentIndex, 1)
469 mActivity, mPhotoView, mMediaSet, itemPath, mCurrentIndex,
480 int oldIndex = mCurrentIndex;
481 mCurrentIndex = index;
484 if (mCurrentIndex > 0)
    [all...]
GalleryActionBar.java 55 private int mCurrentIndex;
193 mCurrentIndex = 0;
232 return sClusterItems[mCurrentIndex].action;
365 mCurrentIndex = i;
374 if (itemPosition != mCurrentIndex && mClusterRunner != null
  /packages/apps/Camera/src/com/android/camera/ui/
CameraSwitcher.java 50 private int mCurrentIndex;
88 mCurrentIndex = i;
104 if ((ix != mCurrentIndex) && (mListener != null)) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/utils/
trie_map.cpp 122 if (state.mTableSize <= state.mCurrentIndex) {
126 const int entryIndex = state.mTableIndex + state.mCurrentIndex;
127 state.mCurrentIndex += 1;
trie_map.h 55 int mCurrentIndex;
58 : mTableSize(tableSize), mTableIndex(tableIndex), mCurrentIndex(0) {}
  /packages/apps/Settings/src/com/android/settings/vpn2/
VpnSettings.java 491 private int mCurrentIndex;
518 mCurrentIndex = 0;
522 mCurrentIndex = mTitles.size();
544 listView.setItemChecked(mCurrentIndex, true);
551 if (mCurrentIndex == newIndex) return;
  /packages/apps/ContactsCommon/src/com/android/contacts/common/vcard/
ImportVCardActivity.java 527 private int mCurrentIndex;
531 switch (mCurrentIndex) {
545 mCurrentIndex = which;
552 private int mCurrentIndex;
556 mCurrentIndex = 0;
575 importVCardFromSDCard(mAllVCardFileList.get(mCurrentIndex));
581 mCurrentIndex = which;
    [all...]

Completed in 291 milliseconds