HomeSort by relevance Sort by last modified time
    Searched defs:mHeight (Results 101 - 125 of 240) sorted by null

1 2 3 45 6 7 8 910

  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 48 int mHeight;
186 mHeight = 0;
219 mHeight = h;
236 mHeight = h;
247 return mHeight;
  /frameworks/base/libs/hwui/font/
CacheTexture.h 53 uint16_t mHeight;
58 mX(x), mY(y), mWidth(width), mHeight(height), mNext(NULL), mPrev(NULL) {
69 currBlock->mWidth, currBlock->mHeight);
100 return mHeight;
183 uint16_t mHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
AutoFixFilter.java 155 private int mHeight = 0;
252 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
254 mHeight = inputFormat.getHeight();
255 createHistogramFrame(context, mWidth, mHeight, input.getInts());
GrainFilter.java 50 private int mHeight = 0;
140 mHeight = height;
144 mGrainProgram.setHostValue("stepY", 0.5f / mHeight);
180 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
RedEyeFilter.java 61 private int mHeight = 0;
130 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
132 mHeight = inputFormat.getHeight();
160 int bitmapHeight = mHeight / 2;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
SurfaceTextureSource.java 91 private int mHeight;
159 mOutputFormat = ImageFormat.create(mWidth, mHeight,
254 mOutputFormat.setDimensions(mWidth, mHeight);
  /frameworks/base/opengl/java/android/opengl/
ETC1Util.java 119 mHeight = height;
133 public int getHeight() { return mHeight; }
142 private int mHeight;
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
BasicTexture.java 45 protected int mHeight = UNSPECIFIED;
80 mHeight = height;
104 return mHeight;
  /frameworks/base/packages/WallpaperCropper/src/com/android/photos/
BitmapRegionTileSource.java 60 int mHeight;
101 mHeight = mDecoder.getHeight();
121 mWidth, mHeight,
139 return mHeight;
189 mOverlapRegion.set(0, 0, mWidth, mHeight);
220 float scale = (float) targetSize / Math.max(mWidth, mHeight);
  /frameworks/base/services/java/com/android/server/display/
VirtualDisplayAdapter.java 101 private final int mHeight;
117 mHeight = height;
153 mInfo.height = mHeight;
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/src/androidx/media/filterfw/decoder/
CpuVideoTrackDecoder.java 50 private final int mHeight;
61 mHeight = format.getInteger(MediaFormat.KEY_HEIGHT);
104 int outputHeight = mHeight;
106 outputWidth = mHeight;
117 convertImage(mDecodedBuffer, outBytes, mColorFormat, mWidth, mHeight);
120 mUnrotatedBytes = ByteBuffer.allocateDirect(mWidth * mHeight * 4);
123 convertImage(mDecodedBuffer, mUnrotatedBytes, mColorFormat, mWidth, mHeight);
147 offset = (mWidth - 1) * mHeight;
148 pixStride = -mHeight;
152 offset = mHeight - 1
    [all...]
  /frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
SceneGraphRS.java 36 int mHeight;
46 mHeight = height;
  /frameworks/rs/java/tests/LivePreview/src/com/android/rs/livepreview/
RsYuv.java 39 private int mHeight;
73 mHeight = height;
75 mScript.invoke_setSize(mWidth, mHeight);
79 tb.setY(mHeight);
87 tb.setY(mHeight);
105 return mHeight;
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
RSTestCore.java 31 int mHeight;
60 mHeight = height;
  /frameworks/rs/java/tests/RsTest_11/src/com/android/rs/test/
RSTestCore.java 31 int mHeight;
60 mHeight = height;
  /frameworks/rs/java/tests/RsTest_14/src/com/android/rs/test/
RSTestCore.java 31 int mHeight;
60 mHeight = height;
  /hardware/libhardware/tests/camera2/
CameraStreamFixture.h 111 mHeight = entry.data.i32[1];
174 mWidth, mHeight, format, /*size (for jpegs)*/0,
274 int mHeight;
camera2_utils.h 196 uint32_t mHeight;
  /hardware/ti/omap4xxx/camera/inc/
ANativeWindowDisplayAdapter.h 42 int mHeight;
  /packages/apps/Browser/src/com/android/browser/view/
BasePieView.java 42 protected int mHeight;
138 || (evty < mTop) || (evty >= mTop + mHeight)) {
  /packages/apps/Camera/src/com/android/camera/
PanoProgressBar.java 43 private float mHeight;
102 mHeight = h;
103 mDrawBounds.set(0, 0, mWidth, mHeight);
  /packages/apps/Camera2/src/com/android/camera/
MosaicPreviewRenderer.java 34 private int mHeight; // height of the view in UI
108 MosaicRenderer.reset(mWidth, mHeight, mIsLandscape);
144 mHeight = h;
PanoProgressBar.java 43 private float mHeight;
102 mHeight = h;
103 mDrawBounds.set(0, 0, mWidth, mHeight);
  /packages/apps/Camera2/src/com/android/camera/data/
SimpleViewData.java 37 private final int mHeight;
47 mHeight = height;
74 return mHeight;
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 56 private int mHeight = UNKNOWN_LENGTH;
149 mHeight = options.outHeight;
152 mHeight = 0;
164 if (mHeight == UNKNOWN_LENGTH) setupDimension();
165 return mHeight;

Completed in 1550 milliseconds

1 2 3 45 6 7 8 910