/frameworks/base/core/jni/android/graphics/ |
H A D | Picture.h | 56 int mHeight; member in class:android::Picture
|
/frameworks/av/include/media/stagefright/ |
H A D | JPEGSource.h | 46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
|
H A D | ColorConverter.h | 58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
|
H A D | YUVImage.h | 71 int32_t height() const {return mHeight;} 121 int32_t mHeight; member in class:android::YUVImage
|
/frameworks/av/cmds/screenrecord/ |
H A D | EglWindow.h | 40 mHeight(0) 52 int getHeight() const { return mHeight; } 82 int mHeight; member in class:android::EglWindow
|
/frameworks/av/include/private/media/ |
H A D | VideoFrame.h | 33 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0), 38 mHeight = copy.mHeight; 62 uint32_t mHeight; member in class:android::VideoFrame
|
/frameworks/av/media/libstagefright/filters/ |
H A D | SimpleFilter.h | 31 SimpleFilter() : mWidth(0), mHeight(0), mStride(0), mSliceHeight(0), 43 int32_t mWidth, mHeight; member in struct:android::SimpleFilter
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
H A D | GLTextureSource.java | 40 private int mHeight; field in class:GLTextureSource 78 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
H A D | Texture.h | 29 size_t mHeight; member in class:android::Texture
|
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/ |
H A D | Convolve3x3.java | 36 private int mHeight; field in class:Convolve3x3 45 mHeight = mInPixelsAllocation.getType().getY(); 61 mScript.set_gHeight(mHeight);
|
H A D | Convolve5x5.java | 36 private int mHeight; field in class:Convolve5x5 45 mHeight = mInPixelsAllocation.getType().getY(); 75 mScript.set_gHeight(mHeight);
|
H A D | GroupTest.java | 39 private int mHeight; field in class:GroupTest 49 mHeight = mInPixelsAllocation.getType().getY(); 68 tb.setY(mHeight);
|
H A D | Mirror.java | 32 private int mHeight; field in class:Mirror 38 mHeight = mInPixelsAllocation.getType().getY(); 42 mScript.set_gHeight(mHeight);
|
H A D | Resize.java | 37 private int mHeight; field in class:Resize 46 mHeight = mInPixelsAllocation.getType().getY(); 50 (int)(mWidth * scale), (int)(mHeight * scale)); 57 mScript.set_gHeightIn(mHeight);
|
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/ |
H A D | Resize.java | 27 private int mHeight; field in class:Resize 34 mHeight = mInPixelsAllocation.getType().getY(); 39 tb.setY((int)(mHeight * scale)); 47 mScript.set_gHeightIn(mHeight);
|
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/ |
H A D | Resize.java | 37 private int mHeight; field in class:Resize 46 mHeight = mInPixelsAllocation.getType().getY(); 50 (int)(mWidth * scale), (int)(mHeight * scale)); 57 mScript.set_gHeightIn(mHeight);
|
/frameworks/av/media/libstagefright/include/ |
H A D | SoftVideoEncoderOMXComponent.h | 78 int32_t mHeight; // height of the input frames member in struct:android::SoftVideoEncoderOMXComponent
|
H A D | SoftwareRenderer.h | 53 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
|
/frameworks/base/core/java/android/hardware/camera2/params/ |
H A D | InputConfiguration.java | 31 private final int mHeight; field in class:InputConfiguration 51 mHeight = height; 70 return mHeight; 101 otherInputConfig.getHeight() == mHeight && 113 return HashCodeHelpers.hashCode(mWidth, mHeight, mFormat); 126 return String.format("InputConfiguration(w:%d, h:%d, format:%d)", mWidth, mHeight, mFormat);
|
/frameworks/base/core/java/android/util/ |
H A D | Size.java | 33 mHeight = height; 49 return mHeight; 74 return mWidth == other.mWidth && mHeight == other.mHeight; 86 return mWidth + "x" + mHeight; 147 return mHeight ^ ((mWidth << (Integer.SIZE / 2)) | (mWidth >>> (Integer.SIZE / 2))); 151 private final int mHeight; field in class:Size
|
H A D | SizeF.java | 44 mHeight = checkArgumentFinite(height, "height"); 60 return mHeight; 84 return mWidth == other.mWidth && mHeight == other.mHeight; 96 return mWidth + "x" + mHeight; 159 return Float.floatToIntBits(mWidth) ^ Float.floatToIntBits(mHeight); 163 private final float mHeight; field in class:SizeF
|
/frameworks/base/graphics/java/android/graphics/drawable/shapes/ |
H A D | Shape.java | 32 private float mHeight; field in class:Shape 45 return mHeight; 71 if (mWidth != width || mHeight != height) { 73 mHeight = height;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
H A D | RotateFilter.java | 45 private int mHeight = 0; field in class:RotateFilter 95 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) { 97 mHeight = inputFormat.getHeight(); 99 mOutputHeight = mHeight; 133 mOutputWidth = mHeight;
|
H A D | StraightenFilter.java | 48 private int mHeight = 0; field in class:StraightenFilter 97 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) { 99 mHeight = inputFormat.getHeight(); 123 Point p0 = new Point(-cosTheta * mWidth + sinTheta * mHeight, 124 -sinTheta * mWidth - cosTheta * mHeight); 126 Point p1 = new Point(cosTheta * mWidth + sinTheta * mHeight, 127 sinTheta * mWidth - cosTheta * mHeight); 129 Point p2 = new Point(-cosTheta * mWidth - sinTheta * mHeight, 130 -sinTheta * mWidth + cosTheta * mHeight); 132 Point p3 = new Point(cosTheta * mWidth - sinTheta * mHeight, [all...] |
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/ |
H A D | IconInfo.java | 17 private final int mHeight; field in class:IconInfo 28 mHeight = payload.getShort() & SHORT_MASK; 39 return mHeight; 58 ", mHeight=" + mHeight +
|