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

12345678

/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) {
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; member in struct:android::uirenderer::RenderBuffer
H A DDeferredLayerUpdater.h42 if (mWidth != width || mHeight != height) {
44 mHeight = height;
51 int getHeight() { return mHeight; }
98 int mHeight; member in class:android::uirenderer::DeferredLayerUpdater
H A DLayerCache.h100 mLayer(nullptr), mWidth(0), mHeight(0) {
105 mHeight = Layer::computeIdealHeight(layerHeight);
109 mLayer(layer), mWidth(layer->getWidth()), mHeight(layer->getHeight()) {
128 uint32_t mHeight; member in struct:android::uirenderer::LayerCache::LayerEntry
H A DRenderBufferCache.h78 mBuffer(nullptr), mWidth(0), mHeight(0) {
82 mBuffer(nullptr), mFormat(format), mWidth(width), mHeight(height) {
87 mWidth(buffer->getWidth()), mHeight(buffer->getHeight()) {
107 uint32_t mHeight; member in struct:android::uirenderer::RenderBufferCache::RenderBufferEntry
/frameworks/base/graphics/java/android/graphics/drawable/shapes/
H A DShape.java32 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 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();
H A DCropRectFilter.java51 private int mHeight = 0; field in class:CropRectFilter
83 updateSourceRect(mWidth, mHeight);
105 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
121 mHeight = height;
124 Log.e("CropFilter", mWidth + ", " + mHeight + ", " +
126 (float) mYorigin / mHeight + ", " +
128 (float) mOutputHeight / mHeight);
132 (float) mYorigin / mHeight,
134 (float) mOutputHeight / mHeight);
/frameworks/native/services/surfaceflinger/RenderEngine/
H A DTexture.cpp25 mWidth(0), mHeight(0), mFiltering(false) {
30 mWidth(0), mHeight(0), mFiltering(false) {
52 mHeight = height;
76 return mHeight;
/frameworks/base/packages/Osu/src/com/android/anqp/
H A DIconInfo.java16 private final int mHeight; field in class:IconInfo
27 mHeight = payload.getShort() & SHORT_MASK;
39 return mHeight;
64 return mHeight == that.mHeight &&
74 result = 31 * result + mHeight;
85 ", Height=" + mHeight +
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/anqp/
H A DIconInfo.java17 private final int mHeight; field in class:IconInfo
28 mHeight = payload.getShort() & SHORT_MASK;
40 return mHeight;
65 return mHeight == that.mHeight &&
75 result = 31 * result + mHeight;
86 ", Height=" + 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/java/tests/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/av/media/libstagefright/filters/
H A DSimpleFilter.cpp26 CHECK(msg->findInt32("height", &mHeight));
31 mSliceHeight = mHeight;
/frameworks/av/include/private/media/
H A DVideoFrame.h33 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/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/java/tests/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/base/core/jni/android/graphics/
H A DPicture.cpp28 mHeight = src->height();
37 mHeight = 0;
45 mHeight = height;
65 return mHeight;
77 newPict->mHeight = cullRect.height();
114 SkCanvas* canvas = reRecorder.beginRecording(mWidth, mHeight, NULL, 0);
123 SkRect myRect = SkRect::MakeWH(SkIntToScalar(mWidth), SkIntToScalar(mHeight));

Completed in 456 milliseconds

12345678