Searched defs:mWidth (Results 1 - 25 of 133) sorted by relevance

123456

/frameworks/base/core/jni/android/graphics/
H A DPicture.h55 int mWidth; member in class:android::Picture
/frameworks/av/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DColorConverter.h58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
H A DYUVImage.h70 int32_t width() const {return mWidth;}
120 int32_t mWidth; member in class:android::YUVImage
/frameworks/av/cmds/screenrecord/
H A DEglWindow.h39 mWidth(0),
51 int getWidth() const { return mWidth; }
81 int mWidth; member in class:android::EglWindow
/frameworks/av/include/private/media/
H A DVideoFrame.h33 VideoFrame(): mWidth(0), mHeight(0), mDisplayWidth(0), mDisplayHeight(0), mSize(0), mData(0),
37 mWidth = copy.mWidth;
61 uint32_t mWidth; member in class:android::VideoFrame
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/
H A DGLTextureSource.java37 private int mWidth; field in class:GLTextureSource
78 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDirectoryView.java29 private int mWidth; field in class:DirectoryView
42 mWidth = w;
52 setX((mWidth > 0) ? (mPosition * mWidth) : 0);
/frameworks/base/packages/SystemUI/src/com/android/systemui/recent/
H A DColorDrawableWithDimensions.java22 private int mWidth; field in class:ColorDrawableWithDimensions
27 mWidth = width;
33 return mWidth;
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.h28 size_t mWidth; member in class:android::Texture
/frameworks/rs/java/tests/ImageProcessing/src/com/android/rs/image/
H A DConvolve3x3.java35 private int mWidth; field in class:Convolve3x3
44 mWidth = mInPixelsAllocation.getType().getX();
60 mScript.set_gWidth(mWidth);
H A DConvolve5x5.java35 private int mWidth; field in class:Convolve5x5
44 mWidth = mInPixelsAllocation.getType().getX();
74 mScript.set_gWidth(mWidth);
H A DGroupTest.java38 private int mWidth; field in class:GroupTest
48 mWidth = mInPixelsAllocation.getType().getX();
67 tb.setX(mWidth);
H A DMirror.java31 private int mWidth; field in class:Mirror
37 mWidth = mInPixelsAllocation.getType().getX();
41 mScript.set_gWidth(mWidth);
H A DResize.java36 private int mWidth; field in class:Resize
45 mWidth = mInPixelsAllocation.getType().getX();
50 (int)(mWidth * scale), (int)(mHeight * scale));
56 mScript.set_gWidthIn(mWidth);
/frameworks/rs/java/tests/ImageProcessing2/src/com/android/rs/image/
H A DConvolve3x3.java28 private int mWidth; field in class:Convolve3x3
37 mWidth = mInPixelsAllocation.getType().getX();
53 mScript.set_gWidth(mWidth);
H A DConvolve5x5.java28 private int mWidth; field in class:Convolve5x5
37 mWidth = mInPixelsAllocation.getType().getX();
67 mScript.set_gWidth(mWidth);
H A DGroupTest.java31 private int mWidth; field in class:GroupTest
41 mWidth = mInPixelsAllocation.getType().getX();
60 tb.setX(mWidth);
/frameworks/rs/java/tests/ImageProcessing_jb/src/com/android/rs/image/
H A DResize.java36 private int mWidth; field in class:Resize
45 mWidth = mInPixelsAllocation.getType().getX();
50 (int)(mWidth * scale), (int)(mHeight * scale));
56 mScript.set_gWidthIn(mWidth);
/frameworks/av/media/libstagefright/include/
H A DSoftVideoEncoderOMXComponent.h77 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent
H A DSoftwareRenderer.h48 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
/frameworks/base/core/java/android/util/
H A DSize.java32 mWidth = width;
41 return mWidth;
74 return mWidth == other.mWidth && mHeight == other.mHeight;
86 return mWidth + "x" + mHeight;
147 return mHeight ^ ((mWidth << (Integer.SIZE / 2)) | (mWidth >>> (Integer.SIZE / 2)));
150 private final int mWidth; field in class:Size
H A DSizeF.java43 mWidth = checkArgumentFinite(width, "width");
52 return mWidth;
84 return mWidth == other.mWidth && mHeight == other.mHeight;
96 return mWidth + "x" + mHeight;
159 return Float.floatToIntBits(mWidth) ^ Float.floatToIntBits(mHeight);
162 private final float mWidth; field in class:SizeF
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java31 private float mWidth; field in class:Shape
38 return mWidth;
71 if (mWidth != width || mHeight != height) {
72 mWidth = width;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DRotateFilter.java44 private int mWidth = 0; field in class:RotateFilter
95 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
96 mWidth = inputFormat.getWidth();
98 mOutputWidth = mWidth;
134 mOutputHeight = mWidth;

Completed in 6360 milliseconds

123456