Searched defs:maxHeight (Results 1 - 8 of 8) sorted by relevance
/frameworks/base/libs/hwui/ |
H A D | FontRenderer.h | 244 CacheTextureLine(uint16_t maxWidth, uint16_t maxHeight, uint32_t currentRow, argument 246 mMaxHeight(maxHeight),
|
/frameworks/base/libs/rs/ |
H A D | rsFont.h | 172 CacheTextureLine(uint32_t maxHeight, uint32_t maxWidth, uint32_t currentRow, uint32_t currentCol) argument 173 : mMaxHeight(maxHeight), mMaxWidth(maxWidth), mCurrentRow(currentRow),
|
/frameworks/base/media/java/android/media/ |
H A D | RemoteControlClient.java | 844 * @param maxHeight 848 private Bitmap scaleBitmapIfTooBig(Bitmap bitmap, int maxWidth, int maxHeight) { argument 852 if (width > maxWidth || height > maxHeight) { 853 float scale = Math.min((float) maxWidth / width, (float) maxHeight / height);
|
/frameworks/base/core/java/android/widget/ |
H A D | ImageView.java | 247 * adjustViewBounds to true 2) set maxWidth and maxHeight to 100 3) set the height and width 270 * adjustViewBounds to true 2) set maxWidth and maxHeight to 100 3) set the height and width 280 * @param maxHeight maximum height for this view 285 public void setMaxHeight(int maxHeight) { argument 286 mMaxHeight = maxHeight;
|
H A D | ListView.java | 1197 * included. If maxHeight is provided, the measuring will stop when the 1198 * current height reaches maxHeight. 1206 * @param maxHeight The maximum height that will be returned (if all the 1221 final int maxHeight, int disallowPartialChildPosition) { 1231 // The previous height value that was less than maxHeight and contained 1261 if (returnedHeight >= maxHeight) { 1262 // We went over, figure out which height to return. If returnedHeight > maxHeight, 1267 && (returnedHeight != maxHeight) // i'th child did not fit completely 1269 : maxHeight; 1220 measureHeightOfChildren(int widthMeasureSpec, int startPosition, int endPosition, final int maxHeight, int disallowPartialChildPosition) argument
|
H A D | TextView.java | 2655 public void setMaxHeight(int maxHeight) { argument 2656 mMaximum = maxHeight;
|
/frameworks/base/opengl/tests/hwc/ |
H A D | hwcCommit.cpp | 254 uint32_t maxHeight; member in struct:meas::displayFrame 262 uint32_t maxHeight; member in struct:meas::sourceCrop 494 measPtr->df.maxHeight = dfMaxHeight(format->format); 495 testPrintI(" dfMaxHeight: %u", measPtr->df.maxHeight); 515 measPtr->sc.maxHeight = scMaxHeight(format->format, measPtr->df.maxDim); 516 testPrintI(" scMaxHeight: %s%u", (measPtr->sc.maxHeight 518 measPtr->sc.maxHeight);
|
/frameworks/base/media/java/android/media/videoeditor/ |
H A D | MediaArtistNativeHelper.java | 2688 * @param maxHeight The max height from the clip properties 2693 private int populateMediaItemProperties(MediaItem m, int index, int maxHeight) { argument 2698 if (((MediaVideoItem)m).getHeight() > maxHeight) { 2699 maxHeight = ((MediaVideoItem)m).getHeight(); 2704 if (((MediaImageItem)m).getScaledHeight() > maxHeight) { 2705 maxHeight = ((MediaImageItem)m).getScaledHeight(); 2716 return maxHeight; 2837 int maxHeight = 0; 2885 maxHeight = populateMediaItemProperties(lMediaItem, previewIndex, maxHeight); [all...] |
Completed in 207 milliseconds