Searched refs:mHeight (Results 1 - 25 of 67) sorted by relevance

123

/packages/apps/Gallery2/src/com/android/gallery3d/ui/
H A DColorTexture.java26 private int mHeight; field in class:ColorTexture
31 mHeight = 1;
36 draw(canvas, x, y, mWidth, mHeight);
51 mHeight = height;
61 return mHeight;
H A DFadeTexture.java31 private final int mHeight; field in class:FadeTexture
37 mHeight = height;
45 draw(canvas, x, y, mWidth, mHeight);
60 return mHeight;
H A DProgressSpinner.java29 private final int mHeight; field in class:ProgressSpinner
40 mHeight = Math.max(mOuter.getHeight(), mInner.getHeight());
48 return mHeight;
71 canvas.translate(x + mWidth / 2, y + mHeight / 2);
H A DSurfaceTextureScreenNail.java36 private int mWidth, mHeight; field in class:SurfaceTextureScreenNail
45 mExtTexture.setSize(mWidth, mHeight);
47 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
85 mHeight = height;
90 mExtTexture.setSize(mWidth, mHeight);
91 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
102 return mHeight;
H A DTiledScreenNail.java48 private int mHeight; field in class:TiledScreenNail
56 mHeight = bitmap.getHeight();
81 mHeight = Math.round(scale * height);
105 mHeight = newer.mHeight;
131 return mHeight;
H A DRawTexture.java48 sCropRect[1] = mHeight;
50 sCropRect[3] = -mHeight;
H A DBasicTexture.java43 protected int mHeight = UNSPECIFIED; field in class:BasicTexture
78 mHeight = height;
98 return mHeight;
H A DCanvasTexture.java38 Bitmap bitmap = Bitmap.createBitmap(mWidth, mHeight, mConfig);
H A DSlideshowView.java126 private final int mHeight; field in class:SlideshowView.SlideshowAnimation
133 mHeight = height;
136 MOVE_SPEED * mHeight * (random.nextFloat() - 0.5f));
146 viewWidth / mWidth, (float) viewHeight / mHeight);
/packages/apps/Launcher2/src/com/android/launcher2/
H A DFastBitmapDrawable.java31 private int mHeight; field in class:FastBitmapDrawable
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
82 return mHeight;
92 return mHeight;
99 mHeight = mBitmap.getHeight();
101 mWidth = mHeight = 0;
/packages/apps/Browser/src/com/android/browser/view/
H A DPieListView.java47 mHeight = mChildHeight * mAdapter.getCount();
49 mTop = Math.max(anchorY - mHeight / 2, 0);
50 if (mTop + mHeight > pHeight) {
51 mTop = pHeight - mHeight;
69 canvas.drawRect(mLeft, mTop, mLeft + mWidth, mTop + mHeight, mBgPaint);
79 final int ix = (y - mTop) * mViews.size() / mHeight;
H A DPieStackView.java65 mHeight = mChildHeight + (mViews.size() - 1) * mMinHeight;
67 mTop = anchorY - mHeight / 2;
76 int dy = (n == 1) ? 0 : (mHeight - mChildHeight) / (n - 1);
100 final int ix = (y - mTop) * mViews.size() / mHeight;
H A DStopProgressView.java18 int mHeight; field in class:StopProgressView
76 mHeight = (bottom - top) * 2 / 3;
84 int t = (getHeight() - mHeight) / 2;
85 mOverlayDrawable.setBounds(l, t, l + mWidth, t + mHeight);
/packages/apps/Gallery2/src/com/android/gallery3d/data/
H A DBitmapPool.java34 private final int mWidth, mHeight; // only used if mOneSize is true field in class:BitmapPool
39 mHeight = height;
48 mHeight = -1;
79 (bitmap.getHeight() != mHeight))) {
/packages/apps/Mms/src/com/android/mms/model/
H A DRegionModel.java27 private int mHeight; field in class:RegionModel
47 mHeight = height;
119 * @return the mHeight
122 return mHeight;
126 * @param height the mHeight to set
129 mHeight = height;
/packages/wallpapers/Basic/src/com/android/wallpaper/
H A DRenderScriptScene.java27 protected int mHeight; field in class:RenderScriptScene
35 mHeight = height;
54 return mHeight;
81 mHeight = height;
/packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
H A DRenderScriptScene.java28 protected int mHeight; field in class:RenderScriptScene
37 mHeight = height;
56 return mHeight;
85 mHeight = height;
/packages/wallpapers/MusicVisualization/src/com/android/musicvis/
H A DRenderScriptScene.java28 protected int mHeight; field in class:RenderScriptScene
36 mHeight = height;
55 return mHeight;
82 mHeight = height;
/packages/apps/Contacts/src/com/android/contacts/util/
H A DStreamItemPhotoEntry.java33 private final int mHeight; field in class:StreamItemPhotoEntry
43 mHeight = height;
55 mHeight = getInt(cursor, PhotoFiles.HEIGHT, -1);
77 return mHeight;
/packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp15 mHeight = 0;
65 mHeight = height;
97 return mHeight;
H A DFrameBuffer.h32 int mHeight; member in class:FrameBuffer
/packages/apps/LegacyCamera/jni/feature_mos/src/mosaic_renderer/
H A DFrameBuffer.cpp15 mHeight = 0;
63 mHeight = height;
95 return mHeight;
H A DFrameBuffer.h29 int mHeight; member in class:FrameBuffer
/packages/apps/Contacts/src/com/android/contacts/calllog/
H A DCallTypeIconsView.java41 private int mHeight; field in class:CallTypeIconsView
55 mHeight = 0;
64 mHeight = Math.max(mHeight, drawable.getIntrinsicHeight());
95 setMeasuredDimension(mWidth, mHeight);
/packages/apps/Gallery/src/com/android/camera/gallery/
H A DBaseImage.java56 private int mHeight = UNKNOWN_LENGTH; field in class:BaseImage
149 mHeight = options.outHeight;
152 mHeight = 0;
164 if (mHeight == UNKNOWN_LENGTH) setupDimension();
165 return mHeight;

Completed in 463 milliseconds

123