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

12345678

/frameworks/base/core/jni/android/graphics/
H A DPicture.h56 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.h62 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/media/libstagefright/include/media/stagefright/
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DColorConverter.h62 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/media/libstagefright/filters/
H A DSimpleFilter.h31 SimpleFilter() : mWidth(0), mHeight(0), mStride(0), mSliceHeight(0),
43 int32_t mWidth, mHeight; member in struct:android::SimpleFilter
/frameworks/av/media/ndk/
H A DNdkImagePriv.h81 const int32_t mWidth; member in struct:AImage
/frameworks/base/libs/hwui/renderthread/
H A DFrame.h31 : mWidth(width), mHeight(height), mBufferAge(bufferAge) {}
33 int32_t width() const { return mWidth; }
44 int32_t mWidth; member in class:android::uirenderer::renderthread::Frame
/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/native/services/surfaceflinger/RenderEngine/
H A DTexture.h28 size_t mWidth; member in class:android::Texture
/frameworks/rs/tests/java_api/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/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DResize.java26 private int mWidth; field in class:Resize
33 mWidth = mInPixelsAllocation.getType().getX();
38 tb.setX((int)(mWidth * scale));
46 mScript.set_gWidthIn(mWidth);
/frameworks/rs/tests/java_api/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/omx/include/media/stagefright/omx/
H A DSoftVideoEncoderOMXComponent.h78 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent
/frameworks/base/core/java/android/hardware/camera2/params/
H A DInputConfiguration.java30 private final int mWidth; field in class:InputConfiguration
50 mWidth = width;
61 return mWidth;
100 if (otherInputConfig.getWidth() == mWidth &&
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 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.java35 private float mWidth; field in class:Shape
42 return mWidth;
77 if (mWidth != width || mHeight != height) {
78 mWidth = width;

Completed in 448 milliseconds

12345678