Searched refs:width (Results 1 - 25 of 1506) sorted by last modified time

1234567891011>>

/frameworks/webview/chromium/plat_support/
H A Ddraw_gl.h55 // Input: current width/height of destination surface.
56 int width; member in struct:AwDrawGLInfo
H A Ddraw_gl_functor.cpp66 aw_info.width = gl_info->width;
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h435 XAuint32 width; member in struct:XADataFormat_RawImage_
1041 XAuint32 width; member in struct:XARectangle_
1586 XAuint32 width; member in struct:XAFocusPointPosition_
2823 XAuint32 width; member in struct:XAImageSettings_
3002 XAuint32 width; member in struct:XAVideoSettings_
3093 XAuint32 width; member in struct:XAVideoStreamInformation_
3111 XAuint32 width; member in struct:XAImageStreamInformation_
3118 XAuint32 width; member in struct:XATimedTextStreamInformation_
/frameworks/wilhelm/include/SLES/
H A DOpenSLES.h1886 SLmillimeter width,
/frameworks/wilhelm/src/android/
H A DMediaPlayer_to_android.cpp118 streamInfo.videoInfo.width = (XAuint32)data1;
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.cpp23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
27 if (!((0 <= width) && (width <= SL_MILLIMETER_MAX) &&
34 thiz->mSize.mWidth = width;
55 SLmillimeter width = thiz->mSize.mWidth; local
59 *pWidth = width;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/frameworks/wilhelm/tests/native-media/jni/
H A Dnative-media-jni.c252 videoInfo.width, videoInfo.height, videoInfo.codecId, videoInfo.frameRate,
/frameworks/wilhelm/tests/native-media/src/com/example/nativemedia/
H A DMyGLSurfaceView.java138 public void onSurfaceChanged(GL10 glUnused, int width, int height) { argument
141 GLES20.glViewport(0, 0, width, height);
142 mRatio = (float) width / height;
H A DNativeMedia.java86 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
87 Log.v(TAG, "surfaceChanged format=" + format + ", width=" + width + ", height=" +
108 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
109 Log.v(TAG, "surfaceChanged format=" + format + ", width=" + width + ", height=" +
131 int width = mediaPlayer.getVideoWidth();
133 Log.v(TAG, "onPrepared width=" + width + ", height=" + height);
134 if (width !
345 setFixedSize(int width, int height) argument
359 setFixedSize(int width, int height) argument
381 setFixedSize(int width, int height) argument
[all...]
/frameworks/wilhelm/tests/sandbox/
H A Dxaplay.c696 printf(" width = %u\n", videoStreamInformation.width);
708 printf(" width = %u\n", imageStreamInformation.width);
718 printf(" width = %u\n", timedTextStreamInformation.width);
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java63 int width, int height, Context context, boolean useSingleBitmap) {
67 String rootPath = String.format(Locale.US, "%s/%d_%d/", context.getFilesDir(), width,
93 makeIcon(width, height, "Jank", file);
106 public static void makeIcon(int width, int height, String string, File file) { argument
107 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
117 Shader shader = new LinearGradient(0, 0, width - 1, height - 1, COLORS.get(0),
120 canvas.drawRect(0, 0, width - 1, height - 1, paint);
127 int wOffset = (width - rect.width()) / 2;
128 shader = new LinearGradient(wOffset, height - hOffset, width
62 buildMedia(int categoryCount, int entriesPerCat, int width, int height, Context context, boolean useSingleBitmap) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/presenter/
H A DCardPresenter.java34 public CardPresenter(int width, int height) { argument
35 mCardWidth = width;
H A DGridItemPresenter.java36 int width = res.getDimensionPixelSize(R.dimen.grid_item_width);
39 view.setLayoutParams(new ViewGroup.LayoutParams(width, height));
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
H A DVideoConsumptionExampleFragment.java72 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DSideInfoCardPresenter.java30 * by text on the right side. The image and text have equal width. The text will work like a info
53 int width = (int) getContext().getResources()
60 Picasso.with(getContext()).load(resourceId).resize(width, height).centerCrop()
/frameworks/support/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java63 int width, int height, Context context, boolean useSingleBitmap) {
67 String rootPath = String.format(Locale.US, "%s/%d_%d/", context.getFilesDir(), width,
93 makeIcon(width, height, "Jank", file);
106 public static void makeIcon(int width, int height, String string, File file) { argument
107 Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
117 Shader shader = new LinearGradient(0, 0, width - 1, height - 1, COLORS.get(0),
120 canvas.drawRect(0, 0, width - 1, height - 1, paint);
127 int wOffset = (width - rect.width()) / 2;
128 shader = new LinearGradient(wOffset, height - hOffset, width
62 buildMedia(int categoryCount, int entriesPerCat, int width, int height, Context context, boolean useSingleBitmap) argument
[all...]
/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/presenter/
H A DCardPresenter.java34 public CardPresenter(int width, int height) { argument
35 mCardWidth = width;
H A DGridItemPresenter.java36 int width = res.getDimensionPixelSize(R.dimen.grid_item_width);
39 view.setLayoutParams(new ViewGroup.LayoutParams(width, height));
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/app/media/
H A DVideoConsumptionExampleFragment.java72 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
/frameworks/support/samples/SupportLeanbackShowcase/app/src/main/java/android/support/v17/leanback/supportleanbackshowcase/cards/presenters/
H A DSideInfoCardPresenter.java30 * by text on the right side. The image and text have equal width. The text will work like a info
53 int width = (int) getContext().getResources()
60 Picasso.with(getContext()).load(resourceId).resize(width, height).centerCrop()
/frameworks/support/samples/SupportLeanbackShowcase/libs/
H A Dpicasso-2.5.2.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/squareup/ com/squareup/picasso/ com/squareup/picasso/Action ...
/frameworks/support/transition/src/android/support/transition/
H A DChangeImageTransform.java226 final float width = imageWidth * maxScale;
228 final int tx = Math.round((imageViewWidth - width) / 2f);
H A DTransitionUtils.java79 * @return A bitmap of the given view or null if bounds has no width or height.
83 int bitmapWidth = Math.round(bounds.width());
/frameworks/support/transition/tests/src/android/support/transition/
H A DChangeImageTransformTest.java129 float width = imageWidth * maxScale;
131 int tx = Math.round((imageViewWidth - width) / 2f);
151 float width = imageWidth * minScale;
153 float tx = (imageViewWidth - width) / 2f;
189 float width = imageWidth * minScale;
191 float tx = imageViewWidth - width;
252 layoutParams.width = Math.round(size);

Completed in 323 milliseconds

1234567891011>>