HomeSort by relevance Sort by last modified time
    Searched refs:mHeight (Results 1 - 25 of 233) sorted by null

1 2 3 4 5 6 7 8 910

  /frameworks/base/graphics/java/android/graphics/drawable/shapes/
Shape.java 30 private float mHeight;
43 return mHeight;
71 if (mWidth != width || mHeight != height) {
73 mHeight = height;
  /frameworks/base/libs/hwui/
LayerCache.h 110 mLayer(NULL), mWidth(0), mHeight(0) {
115 mHeight = uint32_t(ceilf(layerHeight / float(LAYER_SIZE)) * LAYER_SIZE);
119 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
124 return mHeight < rhs.mHeight;
130 return mWidth == rhs.mWidth && mHeight == rhs.mHeight;
135 uint32_t mHeight;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
ColorTexture.java 26 private int mHeight;
31 mHeight = 1;
36 draw(canvas, x, y, mWidth, mHeight);
51 mHeight = height;
61 return mHeight;
FadeTexture.java 31 private final int mHeight;
37 mHeight = height;
45 draw(canvas, x, y, mWidth, mHeight);
60 return mHeight;
ProgressSpinner.java 29 private final int mHeight;
40 mHeight = Math.max(mOuter.getHeight(), mInner.getHeight());
48 return mHeight;
71 canvas.translate(x + mWidth / 2, y + mHeight / 2);
SurfaceTextureScreenNail.java 36 private int mWidth, mHeight;
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;
  /packages/apps/Launcher2/src/com/android/launcher2/
FastBitmapDrawable.java 31 private int mHeight;
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
82 return mHeight;
92 return mHeight;
99 mHeight = mBitmap.getHeight();
101 mWidth = mHeight = 0;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
StraightenFilter.java 53 private int mHeight = 0;
102 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
104 mHeight = inputFormat.getHeight();
128 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight,
129 -sinTheta * mWidth - cosTheta * mHeight);
131 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight,
132 sinTheta * mWidth - cosTheta * mHeight);
134 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight,
135 -sinTheta * mWidth + cosTheta * mHeight);
137 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight,
    [all...]
LomoishFilter.java 43 private int mHeight = 0;
157 if (mWidth > mHeight) {
159 scale[1] = ((float) mHeight) / mWidth;
161 scale[0] = ((float) mWidth) / mHeight;
171 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
190 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
192 mHeight = inputFormat.getHeight();
CropRectFilter.java 56 private int mHeight = 0;
88 updateSourceRect(mWidth, mHeight);
110 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
126 mHeight = height;
129 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
131 (float) mYorigin / mHeight + ", " +
133 (float) mOutputHeight / mHeight);
137 (float) mYorigin / mHeight,
139 (float) mOutputHeight / mHeight);
DocumentaryFilter.java 43 private int mHeight = 0;
126 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
128 mHeight = inputFormat.getHeight();
148 if (mWidth > mHeight) {
150 scale[1] = ((float) mHeight) / mWidth;
152 scale[0] = ((float) mWidth) / mHeight;
VignetteFilter.java 42 private int mHeight = 0;
98 if (mWidth > mHeight) {
100 scale[1] = ((float) mHeight) / mWidth;
102 scale[0] = ((float) mWidth) / mHeight;
140 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
142 mHeight = inputFormat.getHeight();
  /packages/apps/Browser/src/com/android/browser/view/
PieListView.java 47 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;
  /frameworks/base/tests/RenderScriptTests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 39 private int mHeight;
48 mHeight = height;
52 mScript.invoke_setSize(mWidth, mHeight);
58 tb.setY(mHeight);
61 mAllocationIn = Allocation.createSized(rs, Element.U8(mRS), (mHeight * mWidth) +
62 ((mHeight / 2) * (mWidth / 2) * 2));
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 38 newBlock->mWidth, newBlock->mHeight);
82 blockToRemove->mWidth, blockToRemove->mHeight);
109 if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > mHeight) {
127 if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight &&
130 if (cacheBlock->mHeight - glyphH < glyphH) {
146 if (mHeight - glyphH >= glyphH) {
149 roundedUpW, mHeight - glyphH - TEXTURE_BORDER_SIZE);
153 newBlock->mWidth, newBlock->mHeight);
160 cacheBlock->mHeight -= glyphH;
164 cacheBlock->mWidth, cacheBlock->mHeight);
    [all...]
CacheTexture.h 49 uint16_t mHeight;
54 mX(x), mY(y), mWidth(width), mHeight(height), mNext(NULL), mPrev(NULL) {
65 currBlock, currBlock->mX, currBlock->mY, currBlock->mWidth, currBlock->mHeight);
74 mTexture(NULL), mTextureId(0), mWidth(width), mHeight(height),
77 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
99 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
119 mTexture = new uint8_t[mWidth * mHeight];
128 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, mWidth, mHeight, 0,
147 return mHeight;
200 uint16_t mHeight;
    [all...]
  /frameworks/base/core/java/android/view/
HardwareLayer.java 39 int mHeight;
61 mHeight = height;
88 return mHeight;
188 mHeight = height;
  /packages/apps/Gallery2/src/com/android/gallery3d/data/
BitmapPool.java 34 private final int mWidth, mHeight; // only used if mOneSize is true
39 mHeight = height;
48 mHeight = -1;
79 (bitmap.getHeight() != mHeight))) {
  /packages/apps/Mms/src/com/android/mms/model/
RegionModel.java 27 private int mHeight;
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/
RenderScriptScene.java 27 protected int mHeight;
35 mHeight = height;
54 return mHeight;
81 mHeight = height;
  /packages/wallpapers/MagicSmoke/src/com/android/magicsmoke/
RenderScriptScene.java 28 protected int mHeight;
37 mHeight = height;
56 return mHeight;
85 mHeight = height;
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/
RenderScriptScene.java 28 protected int mHeight;
36 mHeight = height;
55 return mHeight;
82 mHeight = height;
  /external/replicaisland/src/com/replica/replicaisland/
DrawableBitmap.java 29 private int mHeight;
39 mHeight = height;
112 final float height = mHeight;
163 mHeight = height;
176 return mHeight;
180 mHeight = height;
220 || position.y + mHeight < 0 || position.y > mViewHeight) {
229 vertFlip ? 0 : mHeight,
231 vertFlip ? -mHeight : mHeight);
    [all...]
  /cts/apps/CtsVerifier/include/colorchecker/
testingimage.h 47 inline int getHeight() const { return mHeight; }
64 int mHeight;
  /frameworks/rs/driver/
rsdFrameBufferObj.h 40 mHeight = height;
49 uint32_t mHeight;

Completed in 489 milliseconds

1 2 3 4 5 6 7 8 910