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

1234567891011>>

/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.c23 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/v17/leanback/src/android/support/v17/leanback/app/
H A DBackgroundManager.java812 params.width = ViewGroup.LayoutParams.MATCH_PARENT;
1044 Log.v(TAG, "invalid bitmap width or height");
1056 // Scale proportionately to fit width and height.
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
H A DAbstractMediaItemPresenter.java431 * @param layoutAnimator the ValueAnimator producing animation frames for the selector's width
477 final int targetWidth = sTempRect.width();
478 final float deltaWidth = lp.width - targetWidth;
485 // change selector to the proper width and marginLeft without animation.
486 lp.width = targetWidth;
490 // animate the selector to the proper width and marginLeft.
498 // Set width to the proper width for this animation step.
501 lp.width = Math.round(targetWidth + deltaWidth * fractionToEnd);
H A DBaseCardView.java375 // The MAIN area determines the card width
833 public LayoutParams(int width, int height) { argument
834 super(width, height);
845 * Copy constructor. Clones the width, height, and View Type of the
H A DBrowseRowsFrameLayout.java23 * So we can change left margin of rows while keep the width of rows unchanged without
48 getPaddingLeft() + getPaddingRight() + widthUsed, lp.width);
H A DDetailsOverviewLogoPresenter.java16 * Default implementation assumes no scaleType on ImageView and uses intrinsic width and height of
83 * both width and size, the ViewHolder would be using intrinsic size of Drawable in
99 vh.setSizeFromDrawableIntrinsic(lp.width == ViewGroup.LayoutParams.WRAP_CONTENT &&
100 lp.width == ViewGroup.LayoutParams.WRAP_CONTENT);
146 lp.width = row.getImageDrawable().getIntrinsicWidth();
151 if (lp.width > imageView.getMaxWidth()) {
152 maxScaleWidth = imageView.getMaxWidth() / (float) lp.width;
162 lp.width = (int) (lp.width * scale);
H A DDetailsOverviewRowPresenter.java454 final int width = (drawable == null) ? 0 : drawable.getIntrinsicWidth();
455 return (width > 0 ? width : 0);
530 layoutParams.width = ViewGroup.LayoutParams.WRAP_CONTENT;
535 // Limit width to the card height
536 layoutParams.width = Math.min(cardHeight, drawableWidth);
H A DDetailsOverviewSharedElementHelper.java125 final int width = overviewView.getWidth();
127 imageView.measure(MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY),
129 imageView.layout(0, 0, width, height);
134 rightPanel.layout(width, rightPanel.getTop(), width + mRightPanelWidth,
137 rightPanel.offsetLeftAndRight(width - rightPanel.getLeft());
H A DFullWidthDetailsOverviewRowPresenter.java81 * This is the default state corresponding to layout file. The view takes full width
86 * This is the state when the view covers full width and height of screen.
576 final int width = (drawable == null) ? 0 : drawable.getIntrinsicWidth();
577 return (width > 0 ? width : 0);
669 - lp.width);
712 logoWidth = viewHolder.getLogoViewHolder().view.getLayoutParams().width;
H A DGridLayoutManager.java76 public LayoutParams(int width, int height) { argument
77 super(width, height);
489 * User-specified row height/column width. Can be WRAP_CONTENT.
566 * Dimensions of the view, width or height depending on orientation.
1032 return mOrientation == HORIZONTAL ? sTempRect.width() : sTempRect.height();
1186 getPaddingLeft() + getPaddingRight() + widthUsed, p.width);
1440 MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED), widthUsed, lp.width);
1445 widthSpec = ViewGroup.getChildMeasureSpec(secondarySpec, widthUsed, lp.width);
1453 if (DEBUG) Log.v(getTag(), "child lp width " + lp.width
[all...]
H A DImageCardView.java344 public void setMainImageDimensions(int width, int height) { argument
346 lp.width = width;
H A DPagingIndicator.java331 int width;
334 width = MeasureSpec.getSize(widthMeasureSpec);
337 width = Math.min(desiredWidth, MeasureSpec.getSize(widthMeasureSpec));
341 width = desiredWidth;
344 setMeasuredDimension(width, height);
348 protected void onSizeChanged(int width, int height, int oldWidth, int oldHeight) { argument
349 setMeasuredDimension(width, height);
H A DScaleFrameLayout.java126 final int width = child.getMeasuredWidth();
142 childLeft = parentLeft + (parentRight - parentLeft - width) / 2 +
146 childLeft = parentRight - width - lp.rightMargin;
168 child.layout(childLeft, childTop, childLeft + width, childTop + height);
H A DShadowOverlayContainer.java285 // if wrapped view has layout params, inherit everything but width/height.
286 // Wrapped view is assigned a FrameLayout.LayoutParams with width and height only.
288 ViewGroup.LayoutParams wrapped_lp = new FrameLayout.LayoutParams(lp.width, lp.height);
290 // App can still change wrapped view fixed width/height afterwards.
291 lp.width = lp.width == LayoutParams.MATCH_PARENT ?
H A DStreamingTextView.java247 int width = (int) paint.measureText(text, start, end);
251 int sliceCount = width / sliceWidth;
252 int excess = width % sliceWidth;
264 float dotLeft = rtl ? x + width - left - dotWidth : x + left;
H A DVerticalGridView.java81 * Sets the column width.
83 * @param width May be {@link android.view.ViewGroup.LayoutParams#WRAP_CONTENT}, or a size
84 * in pixels. If zero, column width will be fixed based on number of columns
85 * and view width.
87 public void setColumnWidth(int width) { argument
88 mLayoutManager.setRowHeight(width);
/frameworks/support/v17/tests/src/android/support/v17/leanback/widget/
H A DGridActivity.java452 p.width = mItemLengths[position] + (mRequestLayoutOnFocus && view.hasFocus() ? 1 : 0);
455 p.width = mSecondarySizeZero ? 0 : 240;
H A DGridWidgetTest.java413 final int width = parent.getWidth();
416 mTopDivider.setBounds(0, (int) view.getY() - mTopOffset, width, (int) view.getY());
418 mBottomDivider.setBounds(0, (int) view.getY() + view.getHeight(), width,

Completed in 351 milliseconds

1234567891011>>