/packages/screensavers/PhotoTable/src/com/android/dreams/phototable/ |
PhotoCarousel.java | 58 private int mWidth; 212 if (width < mWidth && height < mHeight) { 280 mWidth = right - left; 282 mOrientation = (mWidth > mHeight ? LANDSCAPE : PORTRAIT); 284 mLongSide = (int) Math.max(mWidth, mHeight); 285 mShortSide = (int) Math.min(mWidth, mHeight);
|
/cts/apps/CtsVerifier/include/colorchecker/ |
testingimage.h | 46 inline int getWidth() const { return mWidth; } 63 int mWidth;
|
/cts/suite/cts/deviceTests/opengl/jni/reference/ |
ReferenceRenderer.cpp | 42 mScenes[0] = new FlockingScene(mWidth, mHeight); 43 mScenes[1] = new GlowingScene(mWidth, mHeight);
|
/cts/tests/tests/opengl/src/android/opengl/cts/ |
NativeRendererOneColorBufferTest.java | 37 private int mWidth; 82 mWidth = width;
|
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/ |
SoftMPEG4Encoder.cpp | 116 mEncParams->encWidth[0] = mWidth; 141 (uint8_t *) malloc((mWidth * mHeight * 3 ) >> 1); 146 if (mWidth % 16 != 0 || mHeight % 16 != 0) { 148 mWidth, mHeight); 418 mInputFrameData, (mWidth * mHeight * 3) >> 1, 420 mWidth, mHeight); 431 inputData, mInputFrameData, mWidth, mHeight); 442 vin.pitch = align(mWidth, 16);
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/base/ |
GLTextureSource.java | 37 private int mWidth; 78 FrameFormat outputFormat = ImageFormat.create(mWidth, mHeight,
|
/packages/apps/Browser/src/com/android/browser/view/ |
PieListView.java | 46 mWidth = mChildWidth; 69 canvas.drawRect(mLeft, mTop, mLeft + mWidth, mTop + mHeight, mBgPaint);
|
/cts/tests/tests/graphics/src/android/opengl/cts/ |
CompressedTextureLoader.java | 52 mWidth = width; 63 public int getWidth() { return mWidth; } 89 private int mWidth; 126 int mWidth; // width of input surface 156 header.mWidth = headerBuffer.getInt(); 253 int dataSize = (header.mWidth * header.mHeight * header.mBitCount) >> 3; 255 Texture tex = new Texture(header.mWidth, header.mHeight, 320 int mWidth; 365 header.mWidth = headerBuffer.getInt(); 428 int dataSize = (header.mWidth * header.mHeight * bpp) >> 3 [all...] |
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeekView.java | 134 protected int mWidth; 369 int dayStart = mShowWeekNum ? (mWidth - mPadding * 2) / mNumCells + mPadding : mPadding; 370 if (x < dayStart || x > mWidth - mPadding) { 374 int dayPosition = (int) ((x - dayStart) * mNumDays / (mWidth - dayStart - mPadding)); 419 r.right = mWidth - mPadding; 441 int x = (mWidth - mPadding * 2) / divisor + mPadding; 458 int x = (2 * i + 1) * (mWidth - mPadding * 2) / (divisor) + mPadding; 488 int x = (mWidth - mPadding * 2) / mNumCells + mPadding; 495 mWidth = w; 511 mSelectedLeft = selectedPosition * (mWidth - mPadding * 2) / mNumCell [all...] |
/cts/suite/cts/deviceTests/opengl/jni/graphics/ |
Renderer.h | 41 EGLint mWidth;
|
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/ |
Scene.h | 41 int mWidth;
|
/cts/suite/cts/deviceTests/opengl/jni/reference/scene/glowing/ |
BlurMeshNode.h | 33 const float mWidth;
|
GlowingScene.cpp | 116 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // fbo 117 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // tmp1 118 mTextureIds.add(GLUtils::genTexture(mWidth, mHeight, 0)); // tmp2 194 glViewport(0, 0, mWidth, mHeight);
|
/cts/tests/tests/media/src/android/media/cts/ |
InputSurface.java | 47 private int mWidth; 107 mWidth = getWidth(); 112 if (width != mWidth || height != mHeight) { 116 mWidth = getWidth();
|
/frameworks/av/include/media/stagefright/ |
JPEGSource.h | 46 int32_t mWidth, mHeight;
|
/frameworks/av/media/libstagefright/include/ |
SoftwareRenderer.h | 53 int32_t mWidth, mHeight;
|
/frameworks/base/core/jni/android/graphics/ |
Picture.h | 55 int mWidth;
|
/frameworks/base/media/mca/filterpacks/java/android/filterpacks/imageproc/ |
GrainFilter.java | 44 private int mWidth = 0; 134 mWidth = width; 138 mGrainProgram.setHostValue("stepX", 0.5f / mWidth); 175 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) {
|
RedEyeFilter.java | 55 private int mWidth = 0; 125 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) { 126 mWidth = inputFormat.getWidth(); 154 int bitmapWidth = mWidth / 2;
|
SharpenFilter.java | 38 private int mWidth = 0; 113 if (inputFormat.getWidth() != mWidth || inputFormat.getHeight() != mHeight) { 128 mWidth = width; 132 mProgram.setHostValue("stepsizeX", 1.0f / mWidth);
|
/frameworks/base/media/tests/MediaDump/src/com/android/mediadump/ |
RgbPlayerActivity.java | 73 private int mWidth = 0; 121 mWidth = Integer.parseInt(prop.getProperty("width")); 129 mBytesPerLine = mWidth * mBytesPerPixel; 132 mBitmap = Bitmap.createBitmap(mWidth, mHeight,
|
/frameworks/base/tests/AccessoryDisplay/sink/src/com/android/accessorydisplay/sink/ |
UsbHid.java | 35 private final int mWidth; 41 mWidth = width; 62 byte maxXLsb = (byte)(mWidth - 1); 63 byte maxXMsb = (byte)((mWidth - 1) >> 8);
|
/frameworks/base/tests/AccessoryDisplay/source/src/com/android/accessorydisplay/source/ |
DisplaySourceService.java | 175 private final int mWidth; 182 mWidth = width; 189 MediaFormat format = MediaFormat.createVideoFormat("video/avc", mWidth, mHeight); 207 DISPLAY_NAME, mWidth, mHeight, mDensityDpi, surface, 0);
|
/frameworks/native/services/surfaceflinger/RenderEngine/ |
Texture.h | 28 size_t mWidth;
|
/hardware/intel/img/hwcomposer/merrifield/ips/penwell/ |
PnwGrallocBuffer.cpp | 36 mWidth = grallocHandle->width;
|