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

1 2 3 4 5 6 7 8 91011

  /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 132 return mHeight;
139 return mWidth * mHeight * formatSize(mFormat);
165 mFormat(format), mWidth(width), mHeight(height), mAccessMode(kAccessMode_None) {
171 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;
  /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/core/java/android/view/
HardwareLayer.java 39 int mHeight;
61 mHeight = height;
88 return mHeight;
193 mHeight = height;
  /frameworks/base/libs/hwui/font/
CacheTexture.cpp 40 newBlock->mWidth, newBlock->mHeight);
84 blockToRemove->mWidth, blockToRemove->mHeight);
111 mTexture(NULL), mTextureId(0), mWidth(width), mHeight(height),
115 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
144 mWidth - TEXTURE_BORDER_SIZE, mHeight - TEXTURE_BORDER_SIZE, true);
183 mTexture = PixelBuffer::create(GL_ALPHA, mWidth, mHeight);
192 glTexImage2D(GL_TEXTURE_2D, 0, GL_ALPHA, mWidth, mHeight, 0,
233 if (glyph.fHeight + TEXTURE_BORDER_SIZE * 2 > mHeight) {
251 if (roundedUpW <= cacheBlock->mWidth && glyphH <= cacheBlock->mHeight &&
254 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/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;
  /packages/apps/Gallery2/src/com/android/gallery3d/ui/
SurfaceTextureScreenNail.java 38 private int mWidth, mHeight;
47 mExtTexture.setSize(mWidth, mHeight);
49 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
87 mHeight = height;
92 mExtTexture.setSize(mWidth, mHeight);
93 setDefaultBufferSize(mSurfaceTexture, mWidth, mHeight);
104 return mHeight;
  /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;
  /frameworks/av/include/private/media/
VideoFrame.h 91 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0),
96 mHeight = copy.mHeight;
120 uint32_t mHeight;

Completed in 2028 milliseconds

1 2 3 4 5 6 7 8 91011