Searched defs:height (Results 1 - 25 of 763) sorted by last modified time

1234567891011>>

/frameworks/webview/chromium/plat_support/
H A Ddraw_gl.h55 // Input: current width/height of destination surface.
57 int height; member in struct:AwDrawGLInfo
/frameworks/wilhelm/include/OMXAL/
H A DOpenMAXAL.h434 XAuint32 height; member in struct:XADataFormat_RawImage_
1042 XAuint32 height; member in struct:XARectangle_
1587 XAuint32 height; member in struct:XAFocusPointPosition_
2824 XAuint32 height; member in struct:XAImageSettings_
3003 XAuint32 height; member in struct:XAVideoSettings_
3094 XAuint32 height; member in struct:XAVideoStreamInformation_
3112 XAuint32 height; member in struct:XAImageStreamInformation_
3119 XAuint32 height; member in struct:XATimedTextStreamInformation_
/frameworks/wilhelm/src/itf/
H A DI3DMacroscopic.cpp23 SLmillimeter width, SLmillimeter height, SLmillimeter depth)
28 (0 <= height) && (height <= SL_MILLIMETER_MAX) &&
35 thiz->mSize.mHeight = height;
56 SLmillimeter height = thiz->mSize.mHeight; local
60 *pHeight = height;
22 I3DMacroscopic_SetSize(SL3DMacroscopicItf self, SLmillimeter width, SLmillimeter height, SLmillimeter depth) argument
/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=" +
88 height);
108 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
109 Log.v(TAG, "surfaceChanged format=" + format + ", width=" + width + ", height=" +
110 height);
132 int height = mediaPlayer.getVideoHeight();
133 Log.v(TAG, "onPrepared width=" + width + ", height=" + height);
134 if (width != 0 && height !
345 setFixedSize(int width, int height) argument
359 setFixedSize(int width, int height) argument
381 setFixedSize(int width, int height) argument
[all...]
/frameworks/support/frameworks/support/samples/SupportLeanbackJank/src/com/google/android/leanbackjank/data/
H A DVideoProvider.java63 int width, int height, Context context, boolean useSingleBitmap) {
68 height);
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);
122 paint.setTextSize(height * 0.5f);
126 int hOffset = (height - rect.height()) /
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
36 mCardHeight = height;
/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) {
68 height);
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);
122 paint.setTextSize(height * 0.5f);
126 int hOffset = (height - rect.height()) /
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
36 mCardHeight = height;
/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/tv-provider/src/android/support/media/tv/
H A DBaseProgram.java141 * @return The video height for the program.
668 * Sets the video height of the program.
670 * @param height The video height for the program.
674 public T setVideoHeight(int height) { argument
675 mValues.put(Programs.COLUMN_VIDEO_HEIGHT, height);
/frameworks/support/v14/preference/src/android/support/v14/preference/
H A DPreferenceFragment.java314 * height, you should also call {@link #setDividerHeight(int)}.
324 * Sets the height of the divider that will be drawn between each item in the list. Calling
325 * this will override the intrinsic height as set by {@link #setDivider(Drawable)}
327 * @param height The new height of the divider in pixels.
330 public void setDividerHeight(int height) { argument
331 mDividerDecoration.setDividerHeight(height);
/frameworks/support/v17/leanback/src/android/support/v17/leanback/app/
H A DVideoFragment.java55 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
57 mMediaPlaybackCallback.surfaceChanged(holder, format, width, height);
87 protected void onVideoSizeChanged(int width, int height) { argument
92 if (screenWidth * height > width * screenHeight) {
93 // fit in screen height
94 p.height = screenHeight;
95 p.width = screenHeight * width / height;
99 p.height = screenWidth * height / width;
H A DVideoSupportFragment.java58 public void surfaceChanged(SurfaceHolder holder, int format, int width, int height) {
60 mMediaPlaybackCallback.surfaceChanged(holder, format, width, height);
90 protected void onVideoSizeChanged(int width, int height) { argument
95 if (screenWidth * height > width * screenHeight) {
96 // fit in screen height
97 p.height = screenHeight;
98 p.width = screenHeight * width / height;
102 p.height = screenWidth * height / width;
/frameworks/support/v17/leanback/src/android/support/v17/leanback/media/
H A DPlayerAdapter.java78 * @param height Intrinsic height of the video.
80 public void onVideoSizeChanged(PlayerAdapter adapter, int width, int height) { argument
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DBaseCardView.java70 * The card height will not change.
79 * the total card height will change.
89 * area, causing the total card height to change. The extra area animates in
91 * the card height.
734 // This animation changes the visible height of the info views,
876 public LayoutParams(int width, int height) { argument
877 super(width, height);
888 * Copy constructor. Clones the width, height, and View Type of the
932 // Helper animation class used in the animation of the visible height
H A DGridLayoutManager.java81 public LayoutParams(int width, int height) { argument
82 super(width, height);
519 * User-specified row height/column width. Can be WRAP_CONTENT.
525 * the row height, equal for all rows. Grid items may have variable length
596 * Dimensions of the view, width or height depending on orientation.
788 * Set the row height. May be WRAP_CONTENT, or a size in pixels.
790 public void setRowHeight(int height) { argument
791 if (height >= 0 || height == ViewGroup.LayoutParams.WRAP_CONTENT) {
792 mRowSizeSecondaryRequested = height;
[all...]
H A DHorizontalGridView.java108 * Sets the row height.
110 * @param height May be {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT WRAP_CONTENT},
111 * or a size in pixels. If zero, row height will be fixed based on number of
112 * rows and view height.
114 public void setRowHeight(int height) { argument
115 mLayoutManager.setRowHeight(height);
H A DImageCardView.java344 public void setMainImageDimensions(int width, int height) { argument
347 lp.height = height;
H A DPagingIndicator.java363 int height;
366 height = MeasureSpec.getSize(heightMeasureSpec);
369 height = Math.min(desiredHeight, MeasureSpec.getSize(heightMeasureSpec));
373 height = desiredHeight;
390 setMeasuredDimension(width, height);
394 protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) { argument
395 setMeasuredDimension(width, height);
H A DPlaybackControlsRowPresenter.java396 updateCardLayout(vh, vh.mImageView.getLayoutParams().height);
417 private void updateCardLayout(ViewHolder vh, int height) { argument
419 lp.height = height;
426 if (height == LayoutParams.WRAP_CONTENT) {
427 llp.height = LayoutParams.WRAP_CONTENT;
434 llp.height = 0;
H A DThumbsBar.java66 public void setThumbSize(int width, int height) { argument
67 mThumbHeight = height;
75 if (lp.height != height) {
76 lp.height = height;
93 public void setHeroThumbSize(int width, int height) { argument
94 mHeroThumbHeight = height;
102 if (lp.height != height) {
[all...]
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/app/
H A DBackgroundManagerTest.java207 Bitmap createBitmap(int width, int height, int color) { argument
208 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
212 canvas.drawRect(0, 0, width, height, paint);
216 Drawable createDrawable(int width, int height, int color) { argument
217 final Bitmap bitmap = Bitmap.createBitmap(width, height, Bitmap.Config.ARGB_8888);
221 canvas.drawRect(0, 0, width, height, paint);
/frameworks/support/v17/leanback/tests/java/android/support/v17/leanback/widget/
H A DBaseCardViewTest.java44 BaseCardView.LayoutParams createLayoutParams(int viewType, int width, int height) { argument
45 BaseCardView.LayoutParams lp = new BaseCardView.LayoutParams(width, height);
245 // start info height animation 500 -> 700
256 // start info height animation 700 -> 500

Completed in 9264 milliseconds

1234567891011>>