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

12 3 4 5 6 7 8 910

  /frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
Convolve5x5.java 37 private int mHeight;
46 mHeight = mInPixelsAllocation.getType().getY();
76 mScript.set_gHeight(mHeight);
  /hardware/libhardware/modules/camera/
Stream.h 61 const uint32_t mHeight;
  /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;
  /cts/tests/tests/media/src/android/media/cts/
IvfWriter.java 32 private int mHeight;
55 mHeight = height;
82 mOutputFile.write(makeIvfHeader(mFrameCount, mWidth, mHeight, mScale, mRate));
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image.h 34 GLsizei getHeight() const { return mHeight; }
119 GLsizei mHeight;
RenderTarget.h 23 mHeight = 0;
32 GLsizei getHeight() { return mHeight; }
45 GLsizei mHeight;
SwapChain11.h 39 EGLint getHeight() const { return mHeight; }
52 EGLint mHeight;
  /frameworks/av/media/libstagefright/include/
SoftwareRenderer.h 48 int32_t mWidth, mHeight;
SoftVideoDecoderOMXComponent.h 73 uint32_t mWidth, mHeight;
  /frameworks/av/media/libstagefright/rtsp/
VideoSource.h 34 mHeight(height),
42 meta->setInt32(kKeyHeight, mHeight);
88 int mWidth, mHeight;
  /frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
GLTextureSource.java 43 private int mHeight;
81 FrameFormat outputFormat = ImageFormat.create(mWidth, 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/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/
UsbHid.java 36 private final int mHeight;
42 mHeight = height;
64 byte maxYLsb = (byte)(mHeight - 1);
65 byte maxYMsb = (byte)((mHeight - 1) >> 8);
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
ImageDescriptor.java 25 int mHeight;
41 mHeight = 0;
60 d.mHeight = rawData[valueIndex++] & 0xff;
  /cts/suite/pts/deviceTests/opengl/jni/graphics/
Renderer.h 42 EGLint mHeight;
  /cts/tests/tests/opengl/src/android/opengl/cts/
NativeRendererOneColorBufferTest.java 38 private int mHeight;
83 mHeight = height;
  /external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
AndroidViewIntegrationTest.java 34 private int mHeight;
43 return mHeight;
48 mHeight = heightCss;
  /external/chromium_org/third_party/angle_dx11/src/libEGL/
Surface.h 85 EGLint mHeight; // Height of surface
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/
Renderbuffer.h 150 GLsizei mHeight;
  /frameworks/av/media/libstagefright/codecs/on2/enc/
SoftVPXEncoder.h 128 int32_t mHeight;
  /frameworks/base/core/java/android/view/
HardwareLayer.java 39 int mHeight;
61 mHeight = height;
88 return mHeight;
201 mHeight = height;
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 63 private int mHeight;
105 mHeight = height;
124 Rect wholeImage = new Rect(0, 0, mWidth, mHeight);
179 return mHeight;
186 mHeight * mStrides[0] + top / 2 * mStrides[1]
  /frameworks/base/libs/hwui/
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;
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;

Completed in 604 milliseconds

12 3 4 5 6 7 8 910