HomeSort by relevance Sort by last modified time
    Searched refs:usableWidth (Results 1 - 4 of 4) sorted by null

  /external/webkit/Source/WebCore/rendering/
RenderImage.cpp 274 int usableWidth = cWidth - 2;
279 if (m_imageResource->errorOccurred() && !image->isNull() && usableWidth >= image->width() && usableHeight >= image->height()) {
281 int centerX = (usableWidth - image->width()) / 2;
307 if (usableWidth >= textWidth && fontMetrics.height() <= imageY)
309 } else if (usableWidth >= textWidth && cHeight >= fontMetrics.height())
  /packages/apps/VideoEditor/src/com/android/videoeditor/widgets/
MediaItemView.java 367 int usableWidth = getWidth() - getPaddingLeft() - getPaddingRight();
368 // Compute the ceiling of (usableWidth / mThumbnailWidth).
369 mNumberOfThumbnails = (usableWidth + mThumbnailWidth - 1) / mThumbnailWidth;
  /frameworks/media/libvideoeditor/lvpp/
PreviewPlayerBase.cpp 871 int32_t usableWidth = cropRight - cropLeft + 1;
874 usableWidth = mDisplayWidth;
888 MEDIA_SET_VIDEO_SIZE, usableHeight, usableWidth);
891 MEDIA_SET_VIDEO_SIZE, usableWidth, usableHeight);
    [all...]
  /frameworks/base/media/libstagefright/
AwesomePlayer.cpp 1011 int32_t usableWidth = cropRight - cropLeft + 1;
1014 usableWidth = mDisplayWidth;
1022 mStats.mVideoWidth = usableWidth;
1034 MEDIA_SET_VIDEO_SIZE, usableHeight, usableWidth);
1037 MEDIA_SET_VIDEO_SIZE, usableWidth, usableHeight);
    [all...]

Completed in 164 milliseconds