Searched refs:mWidth (Results 76 - 100 of 113) sorted by relevance

12345

/frameworks/base/media/mca/filterpacks/java/android/filterpacks/videosrc/
H A DMediaSource.java103 private int mWidth, mHeight; field in class:MediaSource
414 mOutputFormat.setDimensions(mWidth, mHeight);
416 mOutputFormat.setDimensions(mHeight, mWidth);
518 mWidth = width;
/frameworks/av/media/libmediaplayerservice/
H A DMetadataRetrieverClient.cpp194 frameCopy->mWidth = frame->mWidth;
/frameworks/base/services/java/com/android/server/wm/
H A DScreenRotationAnimation.java48 int mWidth, mHeight; field in class:ScreenRotationAnimation
128 pw.print(" mWidth="); pw.print(mWidth);
195 mWidth = originalHeight;
198 mWidth = originalWidth;
215 mSurface = new SurfaceTrace(session, 0, "FreezeSurface", -1, mWidth, mHeight,
218 mSurface = new Surface(session, 0, "FreezeSurface", -1, mWidth, mHeight,
267 float[] srcPnts = new float[] { 0, 0, mWidth, mHeight };
307 createRotationMatrix(delta, mWidth, mHeight, mSnapshotInitialMatrix);
/frameworks/base/tests/RenderScriptTests/ModelViewer/src/com/android/modelviewer/
H A DSceneGraphRS.java35 int mWidth; field in class:SceneGraphRS
45 mWidth = width;
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
H A DRSTestCore.java30 int mWidth; field in class:RSTestCore
59 mWidth = width;
/frameworks/rs/
H A DrsContext.h156 uint32_t getWidth() const {return mWidth;}
219 uint32_t mWidth; member in class:android::renderscript::Context
H A DrsContext.cpp475 mWidth = w;
478 if (mWidth && mHeight) {
493 return mWidth;
617 ALOGE(" RS width %i, height %i", mWidth, mHeight);
/frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
H A DRsRenderStatesRS.java34 int mWidth; field in class:RsRenderStatesRS
42 mWidth = mRS.getWidth();
53 mWidth = mRS.getWidth();
57 proj.loadOrthoWindow(mWidth, mHeight);
215 proj.loadOrthoWindow(mWidth, mHeight);
/frameworks/base/core/java/android/view/
H A DViewRootImpl.java199 int mWidth; field in class:ViewRootImpl
375 mWidth = -1;
848 mDirty.set(0, 0, mWidth, mHeight);
901 (int) (mWidth * appScale + 0.5f), (int) (mHeight * appScale + 0.5f));
929 return r.intersect(0, 0, mWidth, mHeight);
1101 if (mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight()) {
1207 if (desiredWindowWidth != mWidth || desiredWindowHeight != mHeight) {
1339 && ((mWidth != host.getMeasuredWidth() || mHeight != host.getMeasuredHeight())
1341 frame.width() < desiredWindowWidth && frame.width() != mWidth)
1403 if (mWidth >
[all...]
H A DSurfaceView.java153 int mWidth = -1; field in class:SurfaceView
414 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
431 mWidth = myWidth;
481 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
H A DHardwareRenderer.java596 int mWidth = -1, mHeight = -1; field in class:HardwareRenderer.GlRenderer
1033 mWidth = width;
1040 return mWidth;
1111 if (size[1] != mHeight || size[0] != mWidth) {
1112 mWidth = size[0];
1115 canvas.setViewport(mWidth, mHeight);
/frameworks/base/media/java/android/media/videoeditor/
H A DMediaItem.java755 int mWidth = 64;
766 final int [] framingBuffer = new int[mWidth];
775 intBuffer.put(framingBuffer,0,mWidth);
/frameworks/base/cmds/bootanimation/
H A DBootAnimation.cpp263 mWidth = w;
330 const GLint xc = (mWidth - mAndroid[0].w) / 2;
486 const int xc = (mWidth - animation.width) / 2;
491 Region clearReg(Rect(mWidth, mHeight));
/frameworks/base/graphics/java/android/graphics/
H A DBitmap.java62 private int mWidth = -1; field in class:Bitmap
785 return mWidth == -1 ? mWidth = nativeWidth(mNativeBitmap) : mWidth;
/frameworks/native/include/gui/
H A DSurfaceComposerClient.h148 uint32_t mWidth; member in class:android::ScreenshotClient
/frameworks/base/tests/RenderScriptTests/PerfTest/src/com/android/perftest/
H A DRsBenchRS.java46 int mWidth; field in class:RsBenchRS
60 mWidth = width;
/frameworks/base/libs/hwui/
H A DDisplayListRenderer.h305 mWidth = mRight - mLeft;
325 mWidth = mRight - mLeft;
346 mWidth = mRight - mLeft;
360 mWidth = mRight - mLeft;
393 return mWidth;
519 int mWidth, mHeight; member in class:android::uirenderer::DisplayList
H A DDisplayListRenderer.cpp131 mWidth = 0;
408 displayList, mWidth, mHeight, flags, level + 1);
664 if (mWidth != mPrevWidth || mHeight != mPrevHeight) {
665 mPrevWidth = mWidth;
858 if (renderer.quickReject(0, 0, mWidth, mHeight)) {
991 displayList, mWidth, mHeight, flags, level + 1);
1367 mWidth = width;
1376 mSnapshot->setClip(0.0f, 0.0f, mWidth, mHeight);
/frameworks/base/opengl/java/android/opengl/
H A DGLSurfaceView.java1225 mWidth = 0;
1423 w = mWidth;
1452 + " mWidth: " + mWidth
1565 && (mWidth > 0) && (mHeight > 0)
1670 mWidth = w;
1739 private int mWidth; field in class:GLSurfaceView.GLThread
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java144 int mWidth; field in class:WallpaperService.Engine
506 out.print(prefix); out.print("mWidth="); out.print(mWidth);
565 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
576 mWidth = myWidth;
622 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
/frameworks/base/graphics/java/android/graphics/drawable/
H A DGradientDrawable.java1029 return mGradientState.mWidth;
1071 public int mWidth = -1; field in class:GradientDrawable.GradientState
1112 mWidth = state.mWidth;
1192 mWidth = width;
/frameworks/native/services/surfaceflinger/DisplayHardware/
H A DDisplayHardware.cpp114 int DisplayHardware::getWidth() const { return mWidth; }
273 eglQuerySurface(display, surface, EGL_WIDTH, &mWidth);
/frameworks/base/core/java/android/widget/
H A DPopupWindow.java100 private int mWidth; field in class:PopupWindow
767 return mWidth;
782 mWidth = width;
1007 p.width = mLastWidth = mWidth;
/frameworks/base/media/java/android/media/
H A DMediaScanner.java434 private int mWidth; field in class:MediaScanner.MyMediaScannerClient
505 mWidth = 0;
625 mWidth = parseSubstring(value, 0, 0);
718 mWidth = mBitmapOptions.outWidth;
754 if (mWidth > 0 && mHeight > 0) {
755 map.put(MediaStore.MediaColumns.WIDTH, mWidth);
757 resolution = mWidth + "x" + mHeight;
/frameworks/base/core/java/android/webkit/
H A DWebViewCore.java2088 int w = data.mWidth;
2683 data.mWidth = mWebViewClassic.mLastWidthSent;
2686 // true. It is safe to use mWidth for mTextWrapWidth.
2687 data.mTextWrapWidth = data.mWidth;
2746 data.mWidth = Math.round(webViewWidth / data.mScale);
2754 : Math.round((float) mCurrentViewHeight * data.mWidth / viewportWidth);
3009 int mWidth; field in class:WebViewCore.ShowRectData
3026 data.mWidth = width;

Completed in 514 milliseconds

12345