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

  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
TileImageViewAdapter.java 38 protected int mLevelCount;
47 mLevelCount = 0;
59 mLevelCount = 0;
66 mLevelCount = calculateLevelCount();
198 return mLevelCount;
TileImageView.java 79 protected int mLevelCount; // cache the value of mScaledBitmaps.length
84 // half size of the previous one). If the value is in [0, mLevelCount), we
86 // is mLevelCount, and that means we use mScreenNail for display.
181 mLevelCount = 0;
186 mLevelCount = mModel.getLevelCount();
217 mLevel = Utils.clamp(Utils.floorLog2(1f / scale), 0, mLevelCount);
222 if (mLevel != mLevelCount) {
235 fromLevel = Math.max(0, Math.min(fromLevel, mLevelCount - 2));
236 endLevel = Math.min(fromLevel + 2, mLevelCount);
427 if (level != mLevelCount && !isScreenNailAnimating())
    [all...]
  /device/samsung/manta/bubblelevel/
BubbleLevelImpl.h 62 void incLevelCount() { mLevelCount++; }
84 uint32_t mLevelCount;
BubbleLevelImpl.cpp 36 mPollIntervalSec(BL_POLL_INTERVAL_DEFAULT_SEC), mPollCount(0), mLevelCount(0),
120 mLevelCount = 0;
157 isLevel = (mLevelCount > (BL_SENSOR_POLL_COUNT / 2));
167 mLevelCount = 0;
  /packages/apps/Gallery2/src/com/android/photos/views/
TiledImageRenderer.java 71 protected int mLevelCount; // cache the value of mScaledBitmaps.length
76 // half size of the previous one). If the value is in [0, mLevelCount), we
78 // is mLevelCount
196 mLevelCount = 0;
200 mLevelCount = calulateLevelCount(mModel);
241 mLevel = Utils.clamp(Utils.floorLog2(1f / mScale), 0, mLevelCount);
246 if (mLevel != mLevelCount) {
259 fromLevel = Math.max(0, Math.min(fromLevel, mLevelCount - 2));
260 endLevel = Math.min(fromLevel + 2, mLevelCount);
403 if (level != mLevelCount) {
    [all...]

Completed in 61 milliseconds