HomeSort by relevance Sort by last modified time
    Searched refs:mHeight (Results 26 - 50 of 198) sorted by null

12 3 4 5 6 7 8

  /frameworks/base/media/libstagefright/rtsp/
VideoSource.h 34 mHeight(height),
42 meta->setInt32(kKeyHeight, mHeight);
88 int mWidth, mHeight;
  /packages/apps/Camera/jni/feature_mos/src/mosaic_renderer/
FrameBuffer.cpp 15 mHeight = 0;
63 mHeight = height;
95 return mHeight;
  /frameworks/base/graphics/java/android/graphics/
YuvImage.java 63 private int mHeight;
105 mHeight = height;
124 Rect wholeImage = new Rect(0, 0, mWidth, mHeight);
179 return mHeight;
186 mHeight * mStrides[0] + top / 2 * mStrides[1]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/tablet/
HeightReceiver.java 43 int mHeight;
53 l.onBarHeightChanged(mHeight);
101 + height + " old=" + mHeight);
102 mHeight = height;
111 return mHeight;
  /packages/apps/Contacts/src/com/android/contacts/calllog/
CallTypeIconsView.java 41 private int mHeight;
55 mHeight = 0;
64 mHeight = Math.max(mHeight, drawable.getIntrinsicHeight());
95 setMeasuredDimension(mWidth, mHeight);
  /system/media/mca/filterpacks/imageproc/java/
BlackWhiteFilter.java 47 private int mHeight = 0;
139 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
141 mHeight = inputFormat.getHeight();
147 int[] buffer = new int[mWidth * mHeight];
148 for (int i = 0; i < mWidth * mHeight; ++i) {
151 FrameFormat format = ImageFormat.create(mWidth, mHeight,
159 mNoiseFrame.getFormat().getHeight() != mHeight)) {
SharpenFilter.java 44 private int mHeight = 0;
118 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
134 mHeight = height;
138 mProgram.setHostValue("stepsizeY", 1.0f / mHeight);
VignetteFilter.java 42 private int mHeight = 0;
97 float centerY = (float) (0.5 * mHeight);
135 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
137 mHeight = inputFormat.getHeight();
FisheyeFilter.java 55 private int mHeight = 0;
126 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
155 mHeight = height;
164 float bound2 = 0.25f * (mWidth * mWidth + mHeight * mHeight);
RotateFilter.java 50 private int mHeight = 0;
100 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
102 mHeight = inputFormat.getHeight();
104 mOutputHeight = mHeight;
138 mOutputWidth = mHeight;
  /dalvik/tests/079-phantom/src/
Bitmap.java 23 int mWidth, mHeight;
38 mHeight = height;
45 return "Bitmap " + mName + ": " + mWidth + "x" + mHeight + " (" +
  /frameworks/base/media/java/android/media/
FaceDetector.java 119 mHeight = height;
144 if (bitmap.getWidth() != mWidth || bitmap.getHeight() != mHeight) {
198 private int mHeight;
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterSurfaceView.java 39 private int mHeight;
82 mListener.surfaceChanged(getHolder(), mFormat, mWidth, mHeight);
122 mHeight = height;
  /frameworks/base/include/media/stagefright/
JPEGSource.h 46 int32_t mWidth, mHeight;
  /frameworks/base/libs/hwui/
ShapeCache.h 152 mHeight = *(uint32_t*) &height;
159 mHeight = 0;
167 LTE_INT(mHeight) {
180 uint32_t mHeight;
211 mHeight = *(uint32_t*) &height;
215 mWidth = mHeight = 0;
221 LTE_INT(mHeight) {
230 uint32_t mHeight;
237 mHeight = *(uint32_t*) &height;
241 mWidth = mHeight = 0
    [all...]
LayerCache.cpp 102 LAYER_LOGD("Creating new layer %dx%d", entry.mWidth, entry.mHeight);
104 layer = new Layer(entry.mWidth, entry.mHeight);
127 LAYER_LOGD(" Layer size %dx%d", entry.mWidth, entry.mHeight);
136 if (entry.mWidth <= layer->getWidth() && entry.mHeight <= layer->getHeight()) {
145 layer->setSize(entry.mWidth, entry.mHeight);
  /frameworks/base/media/java/android/media/videoeditor/
TransitionAlpha.java 58 private int mHeight;
105 mHeight = dbo.outHeight;
131 while (tmp < mHeight) {
164 return mHeight;
  /frameworks/base/media/libstagefright/codecs/on2/dec/
SoftVPX.h 52 int32_t mHeight;
  /frameworks/base/media/libstagefright/include/
SoftwareRenderer.h 48 int32_t mWidth, mHeight;
VPXDecoder.h 45 int32_t mWidth, mHeight;
  /frameworks/base/services/camera/libcameraservice/
FakeCamera.h 59 int mWidth, mHeight;
  /system/media/mca/filterfw/java/android/filterfw/basefilters/
GLTextureSource.java 43 private int mHeight;
81 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
  /frameworks/base/graphics/java/android/renderscript/
RenderScriptGL.java 40 int mHeight;
166 mHeight = 0;
198 mHeight = h;
214 mHeight = h;
224 return mHeight;
  /frameworks/base/media/libstagefright/
JPEGSource.cpp 60 mHeight(0),
104 meta->setInt32(kKeyHeight, mHeight);
143 mHeight = 0;
186 return (mWidth > 0 && mHeight > 0) ? OK : UNKNOWN_ERROR;
214 mHeight = height;
  /packages/apps/Gallery/src/com/android/camera/gallery/
BaseImage.java 56 private int mHeight = UNKNOWN_LENGTH;
149 mHeight = options.outHeight;
152 mHeight = 0;
164 if (mHeight == UNKNOWN_LENGTH) setupDimension();
165 return mHeight;

Completed in 357 milliseconds

12 3 4 5 6 7 8