Searched refs:mWidth (Results 176 - 200 of 250) sorted by relevance

12345678910

/frameworks/base/services/core/java/com/android/server/display/
H A DPersistentDataStore.java527 private int mWidth; field in class:PersistentDataStore.StableDeviceValues
531 return new Point(mWidth, mHeight);
535 if (mWidth != r.x || mHeight != r.y) {
536 mWidth = r.x;
548 mWidth = loadIntValue(parser);
568 if (mWidth > 0 && mHeight > 0) {
570 serializer.text(Integer.toString(mWidth));
579 pw.println(prefix + "StableDisplayWidth=" + mWidth);
H A DWifiDisplayAdapter.java580 private final int mWidth; field in class:WifiDisplayAdapter.WifiDisplayDevice
595 mWidth = width;
635 mInfo.width = mWidth;
645 mInfo.setAssumedDensityForExternalDisplay(mWidth, mHeight);
/frameworks/native/headers/media_plugin/media/hardware/
H A DVideoAPI.h43 uint32_t mWidth; // width of largest plane (unpadded, as in nFrameWidth) member in struct:android::MediaImage
83 uint32_t mWidth; // width of largest plane (unpadded, as in nFrameWidth) member in namespace:android
/frameworks/native/include/media/hardware/
H A DVideoAPI.h43 uint32_t mWidth; // width of largest plane (unpadded, as in nFrameWidth) member in struct:android::MediaImage
83 uint32_t mWidth; // width of largest plane (unpadded, as in nFrameWidth) member in namespace:android
/frameworks/rs/
H A DrsContext.h183 uint32_t getWidth() const {return mWidth;}
300 uint32_t mWidth; member in class:android::renderscript::Context
/frameworks/base/graphics/java/android/graphics/drawable/
H A DLayerDrawable.java368 layer.mWidth = a.getDimensionPixelSize(attr, layer.mWidth);
673 childDrawable.mWidth = w;
684 childDrawable.mWidth = w;
695 return childDrawable.mWidth;
1580 final int layerW = r.mWidth;
1671 final int minWidth = r.mWidth < 0 ? r.mDrawable.getIntrinsicWidth() : r.mWidth;
1829 public int mWidth = -1; field in class:LayerDrawable.ChildDrawable
1876 mWidth
[all...]
H A DGradientDrawable.java1169 final float width = st.mWidth >= 0 ? st.mWidth : r.width();
1677 st.mWidth = a.getDimensionPixelSize(R.styleable.GradientDrawableSize_width, st.mWidth);
1693 return mGradientState.mWidth;
1812 public int mWidth = -1; field in class:GradientDrawable.GradientState
1873 mWidth = orig.mWidth;
1982 if (mWidth > 0) {
1983 mWidth
[all...]
/frameworks/av/media/libstagefright/codecs/mpeg2dec/
H A DSoftMPEG2.cpp70 mNewWidth(mWidth),
74 mStride(mWidth) {
507 const uint32_t oldWidth = mWidth;
510 if (mWidth != oldWidth || mHeight != oldHeight) {
811 (long long)outHeader->nTimeStamp, mWidth, mHeight);
/frameworks/base/core/java/android/widget/
H A DMagnifier.java351 Math.min(startXInSurface, mContentCopySurface.mWidth - mBitmapWidth));
361 mParentSurface.mWidth - systemInsets.right,
364 windowBounds = new Rect(0, 0, mParentSurface.mWidth, mParentSurface.mHeight);
405 private int mWidth; field in class:Magnifier.SurfaceInfo
412 mWidth = width;
/frameworks/base/packages/SettingsLib/src/com/android/settingslib/graph/
H A DBatteryMeterDrawableBase.java80 private int mWidth; field in class:BatteryMeterDrawableBase
245 mWidth = (bounds.right - mPadding.right) - (bounds.left + mPadding.left);
314 final int px = (mWidth - width) / 2;
431 pctX = mWidth * 0.5f + left;
455 final float x = mWidth * 0.5f + left;
/frameworks/base/packages/SystemUI/src/com/android/systemui/
H A DDessertCaseView.java130 private int mWidth, mHeight; field in class:DessertCaseView
238 if (mWidth == w && mHeight == h) return;
245 mWidth = w;
253 mColumns = mWidth / mCellSize;
261 setTranslationX(0.5f * (mWidth - mCellSize * mColumns) * SCALE);
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/
H A DBitmapRegionTileSource.java367 int mWidth; field in class:BitmapRegionTileSource
384 mWidth = mDecoder.getWidth();
403 mWidth, mHeight,
417 return mWidth;
472 mOverlapRegion.set(0, 0, mWidth, mHeight);
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java484 final int mWidth; field in class:AssistStructure.WindowNode
496 mWidth = rect.width();
528 mWidth = in.readInt();
544 out.writeInt(mWidth);
570 return mWidth;
646 int mWidth; field in class:AssistStructure.ViewNode
743 mWidth = in.readInt();
750 mWidth = val&0x7fff;
814 || (mWidth&~0x7fff) != 0 | (mHeight&~0x7fff) != 0) {
911 out.writeInt(mWidth);
[all...]
/frameworks/base/media/java/android/media/
H A DMediaCodec.java3583 private final int mWidth; field in class:MediaCodec.MediaImage
3613 return mWidth;
3688 mWidth = info.getInt();
3690 if (mWidth < 1 || mHeight < 1) {
3692 "unsupported size: " + mWidth + "x" + mHeight);
3723 + (mHeight / vert - 1) * rowInc + (mWidth / horiz - 1) * colInc);
3732 cropRect = new Rect(0, 0, mWidth, mHeight);
H A DImageReader.java230 mWidth = width;
277 return mWidth;
756 private final int mWidth; field in class:ImageReader
/frameworks/base/services/core/java/com/android/server/wm/
H A DScreenRotationAnimation.java70 int mWidth, mHeight; field in class:ScreenRotationAnimation
155 pw.print(" mWidth="); pw.print(mWidth);
252 mWidth = originalHeight;
255 mWidth = originalWidth;
267 .setSize(mWidth, mHeight)
319 float[] srcPnts = new float[] { 0, 0, mWidth, mHeight };
358 createRotationMatrix(delta, mWidth, mHeight, mSnapshotInitialMatrix);
/frameworks/av/media/libstagefright/omx/
H A DOMXUtils.cpp97 mWidth = image.mWidth;
210 image.mWidth = params.nFrameWidth;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DHWC2.h147 mConfig->mWidth = width;
183 int32_t getWidth() const { return mWidth; }
195 int32_t mWidth; member in class:HWC2::Display::Config
/frameworks/rs/tests/java_api/ScriptGroupTest/src/com/android/rs/sgtest/
H A DFilters.java305 private int mWidth; field in class:Filters
351 mWidth = mInPixelsAllocation.getType().getX();
355 tb.setX(mWidth);
/frameworks/av/media/libstagefright/omx/include/media/stagefright/omx/
H A DSoftVideoDecoderOMXComponent.h136 uint32_t mWidth, mHeight; member in struct:android::SoftVideoDecoderOMXComponent
/frameworks/av/media/ndk/
H A DNdkImageReader.cpp252 : mWidth(width),
273 mWidth, mHeight, mFormat, mUsage, mMaxImages, getpid(),
289 res = mBufferItemConsumer->setDefaultBufferSize(mWidth, mHeight);
401 const int readerWidth = mWidth;
/frameworks/av/services/camera/libcameraservice/device3/
H A DCamera3StreamSplitter.cpp107 mWidth = width;
186 mWidth, mHeight);
600 auto res = from->dequeueBuffer(&slot, &fence, mWidth, mHeight, mFormat, mProducerUsage,
631 auto res = from->dequeueBuffer(&slot, &fence, mWidth, mHeight, mFormat, mProducerUsage,
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.h163 int mWidth; member in class:android::BootAnimation
/frameworks/base/graphics/java/android/view/
H A DPixelCopy.java272 root.mWidth + surfaceInsets.left, root.mHeight + surfaceInsets.top);
/frameworks/base/packages/SystemUI/src/com/android/systemui/egg/
H A DMLand.java153 private int mWidth, mHeight; field in class:MLand
233 public int getGameWidth() { return mWidth; }
334 float x = (mWidth - (N-1) * PARAMS.PLAYER_SIZE) / 2;
410 mWidth = getWidth();
418 sun.setTranslationX(frand(w, mWidth-w));
440 moon.setTranslationX(frand(w, mWidth - w));
496 s.setTranslationX(frand(-lp.width, mWidth + lp.width));
763 s1.setTranslationX(mWidth+inset);
777 p1.setTranslationX(mWidth);
798 s2.setTranslationX(mWidth
[all...]

Completed in 448 milliseconds

12345678910