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

1 2 3 4 5 6 7 8 91011>>

  /frameworks/base/core/java/android/hardware/camera2/
Size.java 32 mHeight = height;
40 return mHeight;
53 return mWidth == other.mWidth && mHeight == other.mHeight;
60 return mWidth + "x" + mHeight;
70 asLong |= (INT_MASK & mHeight);
76 private final int mHeight;
  /development/samples/devbytes/animation/ListViewCellInsertion/src/com/example/android/insertingcells/
ListItemObject.java 27 private int mHeight;
33 mHeight = height;
45 return mHeight;
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
ColorDrawableWithDimensions.java 23 private int mHeight;
28 mHeight = height;
38 return mHeight;
  /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;
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
ColorTexture.java 26 private int mHeight;
31 mHeight = 1;
36 draw(canvas, x, y, mWidth, mHeight);
51 mHeight = height;
61 return mHeight;
FadeTexture.java 32 private final int mHeight;
38 mHeight = height;
46 draw(canvas, x, y, mWidth, mHeight);
61 return mHeight;
  /frameworks/base/libs/hwui/
RenderBuffer.h 36 mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
82 glRenderbufferStorage(GL_RENDERBUFFER, mFormat, mWidth, mHeight);
93 if (isAllocated() && (width != mWidth || height != mHeight)) {
98 mHeight = height;
112 return mHeight;
120 return (uint32_t) ((mWidth * mHeight * formatSize(mFormat)) / 8.0f + 0.5f);
184 uint32_t mHeight;
LayerCache.h 96 mLayer(NULL), mWidth(0), mHeight(0) {
101 mHeight = Layer::computeIdealHeight(layerHeight);
105 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
128 uint32_t mHeight;
PixelBuffer.h 144 return mHeight;
151 return mWidth * mHeight * formatSize(mFormat);
184 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) {
190 uint32_t mHeight;
RenderBufferCache.h 81 mBuffer(NULL), mWidth(0), mHeight(0) {
85 mBuffer(NULL), mFormat(format), mWidth(width), mHeight(height) {
90 mWidth(buffer->getWidth()), mHeight(buffer->getHeight()) {
116 uint32_t mHeight;
  /packages/apps/Launcher2/src/com/android/launcher2/
FastBitmapDrawable.java 31 private int mHeight;
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
83 return mHeight;
93 return mHeight;
100 mHeight = mBitmap.getHeight();
102 mWidth = mHeight = 0;
  /packages/apps/Launcher3/src/com/android/launcher3/
FastBitmapDrawable.java 31 private int mHeight;
39 mHeight = mBitmap.getHeight();
41 mWidth = mHeight = 0;
83 return mHeight;
93 return mHeight;
100 mHeight = mBitmap.getHeight();
102 mWidth = mHeight = 0;
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
RenderTarget.h 23 mHeight = 0;
32 GLsizei getHeight() { return mHeight; }
45 GLsizei mHeight;
  /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...]
  /frameworks/native/services/surfaceflinger/RenderEngine/
Texture.cpp 25 mWidth(0), mHeight(0), mFiltering(false) {
30 mWidth(0), mHeight(0), mFiltering(false) {
52 mHeight = height;
76 return mHeight;
  /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/packages/PrintSpooler/src/com/android/printspooler/
PrintDialogFrame.java 27 public int mHeight;
52 mHeight = Math.max(mHeight, getMeasuredHeight());
58 measuredHeight = mHeight;
63 measuredHeight = Math.min(mHeight, receivedHeight);
  /frameworks/base/core/java/android/view/
HardwareLayer.java 39 int mHeight;
61 mHeight = height;
88 return mHeight;
201 mHeight = height;
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 41 newBlock->mWidth, newBlock->mHeight);
85 blockToRemove->mWidth, blockToRemove->mHeight);
112 mTexture(NULL), mTextureId(0), mWidth(width), mHeight(height), mFormat(format),
117 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
146 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
185 mTexture = PixelBuffer::create(mFormat, mWidth, mHeight);
194 glTexImage2D(GL_TEXTURE_2D, 0, mFormat, mWidth, mHeight, 0,
260 if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > mHeight) {
278 if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight &&
281 if (cacheBlock->mHeight - glyphH < glyphH)
    [all...]
  /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/apps/UnifiedEmail/src/com/android/bitmap/
ReusableBitmap.java 29 private int mHeight;
54 mHeight = h;
62 return mHeight;
108 sb.append(mHeight);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationOverlayItem.java 32 private int mHeight; // in px
87 return mHeight;
98 if (mHeight != h) {
99 mHeight = h;
  /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;

Completed in 1179 milliseconds

1 2 3 4 5 6 7 8 91011>>