HomeSort by relevance Sort by last modified time
    Searched refs:mHeight (Results 276 - 300 of 327) sorted by null

<<11121314

  /frameworks/base/opengl/java/android/opengl/
GLSurfaceView.java     [all...]
  /frameworks/base/core/java/android/view/
ViewRootImpl.java 177 int mHeight;
348 mHeight = -1;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreview.java 160 private int mHeight;
319 return mWidth * mHeight;
765 return (int) (mHeight * mScale * RenderPreviewManager.getScale());
    [all...]
  /cts/tests/tests/media/src/android/media/cts/
ExtractDecodeEditEncodeMuxTest.java 101 private int mHeight = -1;
200 mHeight = height;
225 assertTrue("should have called setSize() first", mHeight != -1);
231 sb.append(mHeight);
288 MediaFormat.createVideoFormat(OUTPUT_VIDEO_MIME_TYPE, mWidth, mHeight);
    [all...]
  /external/chromium_org/third_party/angle_dx11/src/libGLESv2/renderer/
Image9.cpp 147 mHeight != height ||
154 mHeight = height;
185 if (mWidth != 0 && mHeight != 0)
189 GLsizei requestHeight = mHeight;
278 if ((GLsizei)desc.Width == mWidth && (GLsizei)desc.Height == mHeight)
  /external/replicaisland/src/com/replica/replicaisland/
GLSurfaceView.java     [all...]
  /frameworks/base/core/java/android/service/wallpaper/
WallpaperService.java 144 int mHeight;
515 out.print(" mHeight="); out.print(mHeight);
572 boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
585 mHeight = myHeight;
630 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
    [all...]
  /frameworks/base/graphics/java/android/graphics/drawable/
GradientDrawable.java     [all...]
  /hardware/libhardware/tests/camera2/
CameraMultiStreamTests.cpp 178 mHeight(height) {
205 mWidth, mHeight, mFormat, /*size (for jpegs)*/0,
233 int mHeight;
  /hardware/ti/omap4xxx/camera/OMXCameraAdapter/
OMXFocus.cpp 733 (size_t)mPreviewData->mHeight,
742 ( focusAreas[0]->tAlgoAreas[n].nTop* TOUCH_FOCUS_RANGE ) / mPreviewData->mHeight;
746 ( focusAreas[0]->tAlgoAreas[n].nHeight * TOUCH_FOCUS_RANGE ) / mPreviewData->mHeight;
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 66 private int mHeight;
257 mHeight = height;
  /frameworks/base/media/java/android/media/videoeditor/
MediaItem.java 756 int mHeight = 64;
773 while(tmp < mHeight) {
  /packages/wallpapers/MusicVisualization/src/com/android/musicvis/vis5/
Visualization5RS.java 99 mHeight = height;
163 proj.loadProjectionNormalized(mWidth, mHeight);
  /device/asus/flo/camera/QCamera2/HAL/
QCameraMem.cpp 917 mWidth = mHeight = 0;
958 mHeight = height;
    [all...]
  /device/asus/flo/camera/QCamera2/HAL3/
QCamera3Channel.h 164 uint32_t mWidth, mHeight;
  /frameworks/base/core/java/android/widget/
PopupWindow.java 105 private int mHeight;
746 return mHeight;
761 mHeight = height;
    [all...]
  /frameworks/base/packages/WallpaperCropper/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 148 private int mHeight;
348 mHeight = height;
349 GLES20.glViewport(0, 0, mWidth, mHeight);
    [all...]
  /frameworks/rs/
rsContext.cpp 631 mHeight = h;
633 if (mWidth && mHeight) {
660 return mHeight;
776 ALOGE(" RS width %i, height %i", mWidth, mHeight);
  /hardware/qcom/camera/QCamera2/HAL/
QCameraMem.cpp 917 mWidth = mHeight = 0;
958 mHeight = height;
    [all...]
  /hardware/qcom/camera/QCamera2/HAL3/
QCamera3Channel.h 164 uint32_t mWidth, mHeight;
  /hardware/ti/omap4xxx/camera/inc/
CameraHal.h 262 mHeight(0),
282 mHeight(frame.mHeight),
299 unsigned int mWidth, mHeight;
    [all...]
  /packages/apps/Gallery2/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 148 private int mHeight;
348 mHeight = height;
349 GLES20.glViewport(0, 0, mWidth, mHeight);
    [all...]
  /packages/apps/Launcher3/src/com/android/gallery3d/glrenderer/
GLES20Canvas.java 148 private int mHeight;
348 mHeight = height;
349 GLES20.glViewport(0, 0, mWidth, mHeight);
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/
LinearLayoutRule.java 684 private Integer mHeight;
698 + ", height=" + mHeight //$NON-NLS-1$
752 mHeight = height;
756 return mHeight;
    [all...]
  /frameworks/base/media/java/android/media/
MediaScanner.java 440 private int mHeight;
511 mHeight = 0;
647 mHeight = parseSubstring(value, 0, 0);
739 mHeight = mBitmapOptions.outHeight;
774 if (mWidth > 0 && mHeight > 0) {
776 map.put(MediaStore.MediaColumns.HEIGHT, mHeight);
777 resolution = mWidth + "x" + mHeight;
    [all...]

Completed in 1858 milliseconds

<<11121314