Searched refs:mHeight (Results 1 - 25 of 240) sorted by relevance

12345678910

/frameworks/base/core/java/android/hardware/camera2/params/
H A DInputConfiguration.java31 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);
H A DHighSpeedVideoConfiguration.java60 mHeight = checkArgumentPositive(height, "height must be positive");
62 mSize = new Size(mWidth, mHeight);
82 return mHeight;
149 mHeight == other.mHeight &&
162 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
166 private final int mHeight; field in class:HighSpeedVideoConfiguration
H A DStreamConfiguration.java64 mHeight = checkArgumentPositive(height, "height must be positive");
96 return mHeight;
105 return new Size(mWidth, mHeight);
153 mHeight == other.mHeight &&
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
169 private final int mHeight; field in class:StreamConfiguration
H A DStreamConfigurationDuration.java59 mHeight = checkArgumentPositive(height, "height must be positive");
91 return mHeight;
100 return new Size(mWidth, mHeight);
132 mHeight == other.mHeight &&
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
149 private final int mHeight; field in class:StreamConfigurationDuration
H A DMeteringRectangle.java77 private final int mHeight; field in class:MeteringRectangle
95 mHeight = checkArgumentNonnegative(height, "height must be nonnegative");
119 mHeight = checkArgumentNonnegative(dimensions.getHeight(), "height must be nonnegative");
140 mHeight = checkArgumentNonnegative(rect.height(), "rect.height must be nonnegative");
177 return mHeight;
206 return new Size(mWidth, mHeight);
217 return new Rect(mX, mY, mX + mWidth, mY + mHeight);
246 && mHeight == other.mHeight
255 return HashCodeHelpers.hashCode(mX, mY, mWidth, mHeight, mWeigh
[all...]
/frameworks/base/core/java/android/util/
H A DSize.java33 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 DSizeF.java44 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/libs/hwui/
H A DRenderBuffer.h36 : mFormat(format), mWidth(width), mHeight(height), mAllocated(false) {
73 glRenderbufferStorage(GL_RENDERBUFFER, mFormat, mWidth, mHeight);
84 if (isAllocated() && (width != mWidth || height != mHeight)) {
89 mHeight = height;
100 uint32_t getHeight() const { return mHeight; }
107 return (uint32_t)((mWidth * mHeight * formatSize(mFormat)) / 8.0f + 0.5f);
171 uint32_t mHeight; member in struct:android::uirenderer::RenderBuffer
H A DVkLayer.h34 , mHeight(layerHeight)
41 uint32_t getHeight() const override { return mHeight; }
45 mHeight = height;
62 int mHeight; member in class:android::uirenderer::VkLayer
H A DRenderBufferCache.h77 RenderBufferEntry() : mBuffer(nullptr), mWidth(0), mHeight(0) {}
80 : mBuffer(nullptr), mFormat(format), mWidth(width), mHeight(height) {}
86 , mHeight(buffer->getHeight()) {}
101 uint32_t mHeight; member in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
/frameworks/base/libs/hwui/renderthread/
H A DFrame.h31 : mWidth(width), mHeight(height), mBufferAge(bufferAge) {}
34 int32_t height() const { return mHeight; }
45 int32_t mHeight; member in class:android::uirenderer::renderthread::Frame
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java36 private float mHeight; field in class:Shape
49 return mHeight;
77 if (mWidth != width || mHeight != height) {
79 mHeight = height;
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/
H A DStraightenFilter.java48 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...]
H A DLomoishFilter.java40 private int mHeight = 0; field in class:LomoishFilter
154 if (mWidth > mHeight) {
156 scale[1] = ((float) mHeight) / mWidth;
158 scale[0] = ((float) mWidth) / mHeight;
168 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
187 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
189 mHeight = inputFormat.getHeight();
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.cpp24 : mTextureName(0), mTextureTarget(TEXTURE_2D), mWidth(0), mHeight(0), mFiltering(false) {}
30 mHeight(0),
50 mHeight = height;
74 return mHeight;
/frameworks/av/cmds/screenrecord/
H A DEglWindow.h40 mHeight(0)
52 int getHeight() const { return mHeight; }
82 int mHeight; member in class:android::EglWindow
/frameworks/rs/tests/java_api/ImageProcessing/src/com/android/rs/image/
H A DMirror.java32 private int mHeight; field in class:Mirror
38 mHeight = mInPixelsAllocation.getType().getY();
42 mScript.set_gHeight(mHeight);
/frameworks/opt/setupwizard/library/test/instrumentation/src/com/android/setupwizardlib/test/util/
H A DDrawingTestHelper.java62 private final int mHeight; field in class:DrawingTestHelper
68 mHeight = height;
77 MeasureSpec.makeMeasureSpec(mHeight, MeasureSpec.EXACTLY));
78 view.layout(0, 0, mWidth, mHeight);
83 int[] out = new int[mWidth * mHeight];
84 mBitmap.getPixels(out, 0, mWidth, 0, 0, mWidth, mHeight);
/frameworks/av/media/libstagefright/filters/
H A DSimpleFilter.cpp26 CHECK(msg->findInt32("height", &mHeight));
31 mSliceHeight = mHeight;
/frameworks/opt/telephony/src/java/com/android/internal/telephony/cat/
H A DImageDescriptor.java25 int mHeight; field in class:ImageDescriptor
41 mHeight = 0;
60 d.mHeight = rawData[valueIndex++] & 0xff;
71 CatLog.d("ImageDescriptor", "parse; Descriptor : " + d.mWidth + ", " + d.mHeight +
/frameworks/rs/tests/java_api/ImageProcessing2/src/com/android/rs/image/
H A DResize.java27 private int mHeight; field in class:Resize
34 mHeight = mInPixelsAllocation.getType().getY();
39 tb.setY((int)(mHeight * scale));
47 mScript.set_gHeightIn(mHeight);
/frameworks/av/camera/include/camera/camera2/
H A DOutputConfiguration.h75 mHeight == other.mHeight &&
95 if (mHeight != other.mHeight) {
96 return mHeight < other.mHeight;
125 int mHeight; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/av/include/camera/camera2/
H A DOutputConfiguration.h75 mHeight == other.mHeight &&
95 if (mHeight != other.mHeight) {
96 return mHeight < other.mHeight;
125 int mHeight; member in class:android::hardware::camera2::params::OutputConfiguration
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/anqp/
H A DIconInfo.java44 private final int mHeight; field in class:IconInfo
52 mHeight = height;
88 return mHeight;
114 && mHeight == that.mHeight
122 return Objects.hash(mWidth, mHeight, mLanguage, mIconType, mFileName);
129 + ", Height=" + mHeight
/frameworks/base/core/java/android/app/
H A DVr2dDisplayProperties.java37 private final int mHeight; field in class:Vr2dDisplayProperties
50 mHeight = height;
68 + ", mHeight=" + mHeight
97 dest.writeInt(mHeight);
118 mHeight = source.readInt();
133 return mHeight;
165 private int mHeight = -1; field in class:Vr2dDisplayProperties.Builder
176 mHeight = height;
215 return new Vr2dDisplayProperties(mWidth, mHeight, mDp
[all...]

Completed in 1234 milliseconds

12345678910