Searched defs:mWidth (Results 1 - 25 of 151) sorted by path

1234567

/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/cmds/stagefright/
H A Drecordvideo.cpp63 : mWidth(width),
75 meta->setInt32(kKeyWidth, mWidth);
130 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 DMediaFilter.h119 int32_t mWidth, mHeight; member in struct:android::MediaFilter
H A DSurfaceMediaSource.h167 int mWidth; member in class:android::SurfaceMediaSource
H A DYUVImage.h70 int32_t width() const {return mWidth;}
120 int32_t mWidth; 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),
37 mWidth = copy.mWidth;
61 uint32_t mWidth; member in class:android::VideoFrame
/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/libstagefright/include/
H A DSoftVideoDecoderOMXComponent.h93 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent
H A DSoftVideoEncoderOMXComponent.h77 int32_t mWidth; // width of the input frames member in struct:android::SoftVideoEncoderOMXComponent
H A DSoftwareRenderer.h53 int32_t mWidth, mHeight; member in class:android::SoftwareRenderer
/frameworks/av/media/libstagefright/rtsp/
H A DVideoSource.h33 : mWidth(width),
41 meta->setInt32(kKeyWidth, mWidth);
88 int mWidth, mHeight; member in class:android::VideoSource
/frameworks/av/media/ndk/
H A DNdkImagePriv.h74 const int32_t mWidth; member in struct:AImage
H A DNdkImageReaderPriv.h68 int32_t getWidth() const { return mWidth; };
107 const int32_t mWidth; member in struct:AImageReader
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h108 int mWidth; member in class:android::BootAnimation
/frameworks/base/core/java/android/app/
H A DActivityOptions.java228 private int mWidth; field in class:ActivityOptions
396 opts.mWidth = width;
423 opts.mWidth = width;
576 opts.mWidth = targetWidth;
757 mWidth = opts.getInt(KEY_ANIM_WIDTH, 0);
768 mWidth = opts.getInt(KEY_ANIM_WIDTH, 0);
867 return mWidth;
1026 mWidth = otherOptions.mWidth;
1043 mWidth
[all...]
H A DActivityView.java124 private int mWidth; field in class:ActivityView
188 setSurfaceAsync(surface, mWidth, mHeight, mDensityDpi, false);
371 mWidth = width;
374 setSurfaceAsync(mSurface, mWidth, mHeight, mDensityDpi, true);
394 setSurfaceAsync(null, mWidth, mHeight, mDensityDpi, true);
H A DWallpaperManager.java193 private final int mWidth; field in class:WallpaperManager.FastBitmapDrawable
201 mWidth = bitmap.getWidth();
204 setBounds(0, 0, mWidth, mHeight);
222 mDrawLeft = left + (right-left - mWidth) / 2;
248 return mWidth;
258 return mWidth;
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java397 final int mWidth; field in class:AssistStructure.WindowNode
409 mWidth = rect.width();
430 mWidth = in.readInt();
440 out.writeInt(mWidth);
466 return mWidth;
522 int mWidth; field in class:AssistStructure.ViewNode
588 mWidth = in.readInt();
595 mWidth = val&0x7fff;
641 || (mWidth&~0x7fff) != 0 | (mHeight&~0x7fff) != 0) {
687 out.writeInt(mWidth);
[all...]
/frameworks/base/core/java/android/hardware/camera2/params/
H A DHighSpeedVideoConfiguration.java59 mWidth = checkArgumentPositive(width, "width must be positive");
62 mSize = new Size(mWidth, mHeight);
73 return mWidth;
148 return mWidth == other.mWidth &&
162 return HashCodeHelpers.hashCode(mWidth, mHeight, mFpsMin, mFpsMax);
165 private final int mWidth; field in class:HighSpeedVideoConfiguration
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);
H A DMeteringRectangle.java76 private final int mWidth; field in class:MeteringRectangle
94 mWidth = checkArgumentNonnegative(width, "width must be nonnegative");
118 mWidth = checkArgumentNonnegative(dimensions.getWidth(), "width must be nonnegative");
139 mWidth = checkArgumentNonnegative(rect.width(), "rect.width must be nonnegative");
168 return mWidth;
206 return new Size(mWidth, mHeight);
217 return new Rect(mX, mY, mX + mWidth, mY + mHeight);
245 && mWidth == other.mWidth
255 return HashCodeHelpers.hashCode(mX, mY, mWidth, mHeigh
[all...]
H A DStreamConfiguration.java63 mWidth = checkArgumentPositive(width, "width must be positive");
87 return mWidth;
105 return new Size(mWidth, mHeight);
152 mWidth == other.mWidth &&
164 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight, mInput ? 1 : 0);
168 private final int mWidth; field in class:StreamConfiguration
H A DStreamConfigurationDuration.java58 mWidth = checkArgumentPositive(width, "width must be positive");
82 return mWidth;
100 return new Size(mWidth, mHeight);
131 mWidth == other.mWidth &&
143 return HashCodeHelpers.hashCode(mFormat, mWidth, mHeight,
148 private final int mWidth; field in class:StreamConfigurationDuration

Completed in 3926 milliseconds

1234567