Searched defs:mHeight (Results 1 - 25 of 129) sorted by path

123456

/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/av/cmds/stagefright/
H A Drecordvideo.cpp57 mHeight(height),
69 meta->setInt32(kKeyHeight, mHeight);
123 int mWidth, mHeight; member in class:DummySource
/frameworks/av/include/media/stagefright/
H A DColorConverter.h58 size_t mWidth, mHeight; member in struct:android::ColorConverter::BitmapParams
H A DJPEGSource.h46 int32_t mWidth, mHeight; member in struct:android::JPEGSource
H A DSurfaceMediaSource.h164 int mHeight; member in class:android::SurfaceMediaSource
H A DYUVImage.h71 int32_t height() const {return mHeight;}
121 int32_t mHeight; member in class:android::YUVImage
/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/av/media/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h93 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent
H A DSoftVideoEncoderOMXComponent.h78 int32_t mHeight; // height of the input frames member in struct:android::SoftVideoEncoderOMXComponent
H A DSoftwareRenderer.h48 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h34 mHeight(height),
42 meta->setInt32(kKeyHeight, mHeight);
88 int mWidth, mHeight; member in class:android::VideoSource
/frameworks/av/services/camera/libcameraservice/device2/
H A DCamera2Device.h218 uint32_t getHeight() const { return mHeight; }
238 uint32_t mHeight; member in class:android::Camera2Device::StreamAdapter
303 uint32_t getHeight() const { return mHeight; }
332 uint32_t mHeight; member in class:android::Camera2Device::ReprocessStreamAdapter
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h97 int mHeight; member in class:android::BootAnimation
/frameworks/base/core/java/android/app/
H A DActivityOptions.java153 private int mHeight; field in class:ActivityOptions
289 opts.mHeight = height;
442 opts.mHeight = targetHeight;
588 mHeight = opts.getInt(KEY_ANIM_HEIGHT, 0);
599 mHeight = opts.getInt(KEY_ANIM_HEIGHT, 0);
662 return mHeight;
745 mHeight = otherOptions.mHeight;
762 mHeight = otherOptions.mHeight;
[all...]
H A DActivityView.java53 private int mHeight; field in class:ActivityView
118 mActivityContainer.setSurface(null, mWidth, mHeight, mMetrics.densityDpi);
121 mActivityContainer.setSurface(mSurface, mWidth, mHeight, mMetrics.densityDpi);
240 mActivityContainer.setSurface(mSurface, mWidth, mHeight, mMetrics.densityDpi);
287 mHeight = height;
309 mActivityContainer.setSurface(null, mWidth, mHeight, mMetrics.densityDpi);
H A DWallpaperManager.java152 private final int mHeight; field in class:WallpaperManager.FastBitmapDrawable
160 mHeight = bitmap.getHeight();
162 setBounds(0, 0, mWidth, mHeight);
181 mDrawTop = top + (bottom-top - mHeight) / 2;
211 return mHeight;
221 return mHeight;
/frameworks/base/core/java/android/hardware/camera2/params/
H A DHighSpeedVideoConfiguration.java57 mHeight = checkArgumentPositive(height, "height must be positive");
59 mSize = new Size(mWidth, mHeight);
78 return mHeight;
136 mHeight == other.mHeight &&
148 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
152 private final int mHeight; field in class:HighSpeedVideoConfiguration
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...]
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
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java153 int mHeight; field in class:WallpaperService.Engine
536 out.print(" mHeight="); out.print(mHeight);
596 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
610 mHeight = myHeight;
687 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
/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/core/java/android/view/
H A DGLES20Canvas.java53 private int mHeight; field in class:GLES20Canvas
136 return mHeight;
166 mHeight = height;
H A DGraphicBuffer.java55 private final int mHeight; field in class:GraphicBuffer
92 mHeight = height;
109 return mHeight;
261 dest.writeInt(mHeight);

Completed in 692 milliseconds

123456