HomeSort by relevance Sort by last modified time
    Searched defs:mWidth (Results 201 - 225 of 252) sorted by null

1 2 3 4 5 6 7 891011

  /packages/inputmethods/PinyinIME/src/com/android/inputmethod/pinyin/
BalloonHint.java 280 private int mWidth;
292 mWidth = width;
330 + mParentLocationInWindow[1], mWidth, mHeight);
  /packages/screensavers/Basic/src/com/android/dreams/basic/
ColorsGLRenderer.java 58 private int mWidth;
75 mWidth = width;
97 mWidth = width;
116 glViewport(0, 0, mWidth, mHeight);
  /packages/wallpapers/Galaxy4/src/com/android/galaxy4/
GalaxyRS.java 42 private int mWidth;
60 mWidth = width;
148 mWidth = w;
151 proj.loadOrthoWindow(mWidth, mHeight);
152 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
164 proj.loadOrthoWindow(mWidth, mHeight);
171 updateProjectionMatrices(mWidth, mHeight);
269 mWidth = width;
  /packages/wallpapers/NoiseField/src/com/android/noisefield/
NoiseFieldRS.java 40 private int mWidth;
57 mWidth = width;
113 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
  /packages/wallpapers/PhaseBeam/src/com/android/phasebeam/
PhaseBeamRS.java 39 int mWidth;
64 mWidth = width;
128 Matrix4f projNorm = getProjectionNormalized(mWidth, mHeight);
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/util/
PsdFile.java 148 final int mWidth;
153 mWidth = width;
163 out.writeInt(mWidth);
  /cts/tests/tests/openglperf/src/android/openglperf/cts/
PlanetsRenderer.java 65 private int mWidth;
256 mWidth = width;
GLSurfaceViewCustom.java     [all...]
  /frameworks/base/core/java/android/app/
WallpaperManager.java 143 private final int mWidth;
151 mWidth = bitmap.getWidth();
154 setBounds(0, 0, mWidth, mHeight);
172 mDrawLeft = left + (right-left - mWidth) / 2;
198 return mWidth;
208 return mWidth;
    [all...]
  /frameworks/base/core/java/android/view/
SurfaceView.java 160 int mWidth = -1;
440 final boolean sizeChanged = mWidth != myWidth || mHeight != myHeight;
457 mWidth = myWidth;
510 mWindow, mWindow.mSeq, mLayout, mWidth, mHeight,
    [all...]
  /frameworks/base/core/java/android/widget/
PopupWindow.java 102 private int mWidth;
772 return mWidth;
787 mWidth = width;
    [all...]
  /frameworks/base/graphics/java/android/graphics/
Bitmap.java 72 private int mWidth;
113 mWidth = width;
135 mWidth = width;
220 mWidth = width;
    [all...]
  /frameworks/base/libs/hwui/
DisplayList.h 345 mWidth = mRight - mLeft;
373 mWidth = mRight - mLeft;
402 mWidth = mRight - mLeft;
416 mWidth = mRight - mLeft;
449 return mWidth;
518 int mWidth, mHeight;
  /frameworks/base/media/java/android/media/videoeditor/
MediaImageItem.java 64 private final int mWidth;
128 mWidth = dbo.outWidth;
135 mAspectRatio = mMANativeHelper.getAspectRatio(mWidth, mHeight);
157 if (mWidth > maxResolution.first || mHeight > maxResolution.second) {
175 mScaledWidth = (mWidth >> 1) << 1;
251 return mWidth;
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
BatteryMeterView.java 60 private int mWidth;
246 mWidth = w;
274 int width = mWidth - pl - pr;
344 final float x = mWidth * 0.5f;
354 final float x = mWidth * 0.5f;
  /frameworks/base/services/java/com/android/server/display/
WifiDisplayAdapter.java 682 private final int mWidth;
696 mWidth = width;
729 mInfo.width = mWidth;
736 mInfo.setAssumedDensityForExternalDisplay(mWidth, mHeight);
  /frameworks/base/tests/RenderScriptTests/MiscSamples/src/com/example/android/rs/miscsamples/
RsRenderStatesRS.java 34 int mWidth;
42 mWidth = mRS.getWidth();
53 mWidth = mRS.getWidth();
57 proj.loadOrthoWindow(mWidth, mHeight);
215 proj.loadOrthoWindow(mWidth, mHeight);
  /frameworks/base/tests/RenderScriptTests/SceneGraph/src/com/android/scenegraph/
SceneManager.java 69 int mWidth;
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 149 protected int mWidth;
401 mWidth = w;
417 int x = (mWidth + 2 * mPadding) / 2;
424 int dayWidthHalf = (mWidth - mPadding * 2) / (mNumDays * 2);
445 int dayWidthHalf = (mWidth - mPadding * 2) / (mNumDays * 2);
483 if (x < dayStart || x > mWidth - mPadding) {
488 int column = (int) ((x - dayStart) * mNumDays / (mWidth - dayStart - mPadding));
631 final int cellWidth = ((mWidth - (2 * mPadding)) / mNumDays);
  /hardware/libhardware/tests/camera2/
CameraMultiStreamTests.cpp 177 mWidth(width),
205 mWidth, mHeight, mFormat, /*size (for jpegs)*/0,
232 int mWidth;
  /packages/apps/Camera2/src/com/android/camera/data/
LocalMediaData.java 65 protected final int mWidth;
93 mWidth = width;
122 return mWidth;
264 mediaDetails.addDetail(MediaDetails.INDEX_WIDTH, mWidth);
400 + "," + mWidth + "x" + mHeight + ",orientation=" + mOrientation
497 if (mWidth > mDecodeWidth || mHeight > mDecodeHeight) {
499 int widthRatio = Math.round((float) mWidth / (float) mDecodeWidth);
522 (decodedWidth != mWidth || decodedHeight != mHeight)) {
687 + "," + mWidth + "x" + mHeight + ",date=" + new Date(mDateTakenInSeconds);
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/timer/
CountingTimerView.java 103 protected float mWidth = 0;
133 this.mWidth = unsignedTime.mWidth;
141 mWidth = time.length() * mEm;
145 mWidth = mLabelWidth = 0;
151 return mWidth + mLabelWidth;
228 mWidth += (mMinusWidth - mEm);
  /cts/tests/tests/media/src/android/media/cts/
DecodeEditEncodeTest.java 81 private int mWidth = -1;
144 mWidth = width;
164 String fileName = "vedit1_" + mWidth + "x" + mHeight + ".mp4";
172 String fileName = "vedit2_" + mWidth + "x" + mHeight + ".mp4";
186 if (VERBOSE) Log.d(TAG, "generateVideoFile " + mWidth + "x" + mHeight);
201 MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, mWidth, mHeight);
371 startX = frameIndex * (mWidth / 4);
374 startX = (7 - frameIndex) * (mWidth / 4);
382 GLES20.glScissor(startX, startY, mWidth / 4, mHeight / 2);
397 if (VERBOSE) Log.d(TAG, "editVideoFile " + mWidth + "x" + mHeight)
    [all...]
EncodeDecodeTest.java 72 private int mWidth = -1;
212 mWidth = width;
245 MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, mWidth, mHeight);
308 MediaFormat format = MediaFormat.createVideoFormat(MIME_TYPE, mWidth, mHeight);
319 outputSurface = new OutputSurface(mWidth, mHeight);
324 MediaFormat decoderFormat = MediaFormat.createVideoFormat(MIME_TYPE, mWidth, mHeight);
454 byte[] frameData = new byte[mWidth * mHeight * 3 / 2];
464 String fileName = DEBUG_FILE_NAME_BASE + mWidth + "x" + mHeight + ".mp4";
475 outputSurface = new OutputSurface(mWidth, mHeight);
572 MediaFormat.createVideoFormat(MIME_TYPE, mWidth, mHeight)
    [all...]
ExtractDecodeEditEncodeMuxTest.java 99 private int mWidth = -1;
199 mWidth = width;
224 assertTrue("should have called setSize() first", mWidth != -1);
229 sb.append(mWidth);
288 MediaFormat.createVideoFormat(OUTPUT_VIDEO_MIME_TYPE, mWidth, mHeight);
    [all...]

Completed in 763 milliseconds

1 2 3 4 5 6 7 891011