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

  /packages/apps/Settings/src/com/android/settings/accessibility/
FontSizePreferenceFragmentForSetupWizard.java 32 if (mCurrentIndex != mInitialIndex) {
34 mCurrentIndex);
  /packages/apps/Settings/src/com/android/settings/display/
ScreenZoomPreferenceFragmentForSetupWizard.java 32 if (mCurrentIndex != mInitialIndex) {
34 getContext(), MetricsEvent.SUW_ACCESSIBILITY_DISPLAY_SIZE, mCurrentIndex);
  /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);
  /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/Settings/src/com/android/settings/development/
ColorModePreference.java 37 private int mCurrentIndex;
96 mCurrentIndex = -1;
99 mCurrentIndex = i;
103 setChecked(mCurrentIndex == 1);
113 mCurrentIndex = mDescriptions.indexOf(desc);
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/system/development/
ColorModePreference.java 37 private int mCurrentIndex;
96 mCurrentIndex = -1;
99 mCurrentIndex = i;
103 setChecked(mCurrentIndex == 1);
113 mCurrentIndex = mDescriptions.indexOf(desc);
  /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) {
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/display/
DisplayDensityUtils.java 86 private final int mCurrentIndex;
95 mCurrentIndex = -1;
172 mCurrentIndex = displayIndex;
186 return mCurrentIndex;
  /packages/apps/Car/Radio/src/com/android/car/radio/demo/
RadioDemo.java 66 private int mCurrentIndex;
99 mCurrentIndex = i;
121 mCurrentIndex = indexToInsert;
133 if (++mCurrentIndex >= mCurrentStations.size()) {
134 mCurrentIndex = 0;
137 notifyCallbacks(mCurrentStations.get(mCurrentIndex));
146 if (--mCurrentIndex < 0){
147 mCurrentIndex = mCurrentStations.size() - 1;
150 notifyCallbacks(mCurrentStations.get(mCurrentIndex));
200 return mCurrentStations.get(mCurrentIndex);
    [all...]
  /packages/apps/Settings/src/com/android/settings/
PreviewSeekBarPreferenceFragment.java 48 protected int mCurrentIndex;
190 mPreviewPagerAdapter.setPreviewLayer(index, mCurrentIndex,
193 mCurrentIndex = index;
  /packages/inputmethods/LatinIME/native/jni/src/dictionary/utils/
trie_map.h 55 int mCurrentIndex;
58 : mTableSize(tableSize), mTableIndex(tableIndex), mCurrentIndex(0) {}
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
GalleryActionBar.java 55 private int mCurrentIndex;
193 mCurrentIndex = 0;
232 return sClusterItems[mCurrentIndex].action;
365 mCurrentIndex = i;
374 if (itemPosition != mCurrentIndex && mClusterRunner != null
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...]
  /frameworks/base/services/core/java/com/android/server/tv/
TvInputHardwareManager.java 111 private int mCurrentIndex = 0;
506 mCurrentIndex = mAudioManager.getStreamVolume(AudioManager.STREAM_MUSIC);
518 if (index == mCurrentIndex) {
521 mCurrentIndex = index;
548 return (float) mCurrentIndex / (float) mCurrentMaxIndex;
    [all...]

Completed in 1105 milliseconds