HomeSort by relevance Sort by last modified time
    Searched defs:heightSize (Results 1 - 25 of 73) sorted by null

1 2 3

  /developers/build/prebuilts/gradle/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 48 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
50 if (widthSize == 0 && heightSize == 0) {
61 if (widthSize == 0 || heightSize == 0) {
64 size = Math.max(widthSize, heightSize);
68 size = Math.min(widthSize, heightSize);
  /developers/samples/android/ui/activityscenetransition/ActivitySceneTransitionBasic/Application/src/main/java/com/example/android/activityscenetransitionbasic/
SquareFrameLayout.java 48 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
50 if (widthSize == 0 && heightSize == 0) {
61 if (widthSize == 0 || heightSize == 0) {
64 size = Math.max(widthSize, heightSize);
68 size = Math.min(widthSize, heightSize);
  /development/samples/browseable/ActivitySceneTransitionBasic/src/com.example.android.activityscenetransitionbasic/
SquareFrameLayout.java 48 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
50 if (widthSize == 0 && heightSize == 0) {
61 if (widthSize == 0 || heightSize == 0) {
64 size = Math.max(widthSize, heightSize);
68 size = Math.min(widthSize, heightSize);
  /frameworks/base/core/java/com/android/internal/widget/
PreferenceImageView.java 59 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
62 && (maxHeight < heightSize || heightMode == MeasureSpec.UNSPECIFIED)) {
SizeAdaptiveLayout.java 196 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
224 heightSize >= lp.minHeight && heightSize <= lp.maxHeight) {
233 if (heightMode == MeasureSpec.UNSPECIFIED || heightSize > tallestViewSize) {
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AutoResizeListView.java 49 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
54 height = heightSize;
57 height = Math.min(desiredHeight, heightSize);
  /external/chromium_org/android_webview/java/src/org/chromium/android_webview/
AwLayoutSizer.java 139 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
153 (heightMode == MeasureSpec.AT_MOST) && (contentHeightPix > heightSize);
154 mHeightMeasurementLimit = heightSize;
157 measuredHeight = heightSize;
  /frameworks/base/core/java/android/widget/
AnalogClock.java 150 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
159 if (heightMode != MeasureSpec.UNSPECIFIED && heightSize < mDialHeight) {
160 vScale = (float )heightSize / (float) mDialHeight;
AbsSpinner.java 172 int heightSize;
233 heightSize = resolveSizeAndState(preferredHeight, heightMeasureSpec, 0);
236 setMeasuredDimension(widthSize, heightSize);
ActionMenuView.java 167 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
370 heightSize = maxChildHeight;
373 setMeasuredDimension(widthSize, heightSize);
ImageView.java 917 int heightSize;
929 heightSize = resolveAdjustedSize(h + ptop + pbottom, mMaxHeight, heightMeasureSpec);
934 (heightSize - ptop - pbottom);
942 int newWidth = (int)(desiredAspect * (heightSize - ptop - pbottom)) +
    [all...]
LinearLayout.java 822 int heightSize = mTotalLength;
825 heightSize = Math.max(heightSize, getSuggestedMinimumHeight());
828 int heightSizeAndState = resolveSizeAndState(heightSize, heightMeasureSpec, 0);
829 heightSize = heightSizeAndState & MEASURED_SIZE_MASK;
834 int delta = heightSize - mTotalLength;
    [all...]
RelativeLayout.java 401 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
409 myHeight = heightSize;
    [all...]
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 168 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
175 setMeasuredDimension(widthSize, heightSize);
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
KeyguardSecurityViewFlipper.java 208 final int heightSize = MeasureSpec.getSize(heightSpec);
210 int maxHeight = heightSize;
230 int height = heightMode == MeasureSpec.EXACTLY ? heightSize : 0;
241 height = Math.max(height, Math.min(child.getMeasuredHeight(), heightSize - hPadding));
  /packages/apps/DeskClock/src/com/android/deskclock/
AnalogClock.java 147 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
156 if (heightMode != MeasureSpec.UNSPECIFIED && heightSize < mDialHeight) {
157 vScale = (float )heightSize / (float) mDialHeight;
  /external/chromium_org/third_party/angle/src/libGLESv2/
validationES3.cpp 530 size_t heightSize = static_cast<size_t>(height);
536 if (!rx::IsUnsignedMultiplicationSafe(widthSize, heightSize) ||
537 !rx::IsUnsignedMultiplicationSafe(widthSize * heightSize, depthSize) ||
538 !rx::IsUnsignedMultiplicationSafe(widthSize * heightSize * depthSize, pixelBytes))
545 size_t copyBytes = widthSize * heightSize * depthSize * pixelBytes;
    [all...]
  /frameworks/base/core/java/android/app/
MediaRouteButton.java 329 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
355 height = heightSize;
358 height = Math.min(heightSize, minHeight + getPaddingTop() + getPaddingBottom());
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
AbsSpinnerCompat.java 149 int heightSize;
211 heightSize = ViewCompat.resolveSizeAndState(preferredHeight, heightMeasureSpec, 0);
214 setMeasuredDimension(widthSize, heightSize);
  /frameworks/base/packages/PrintSpooler/src/com/android/printspooler/widget/
PrintContentView.java 244 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
249 params.height = heightSize - mStaticContent.getMeasuredHeight()
268 resolveSize(heightSize, heightMeasureSpec));
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionMenuView.java 177 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
380 heightSize = maxChildHeight;
383 setMeasuredDimension(widthSize, heightSize);
LinearLayoutCompat.java 757 int heightSize = mTotalLength;
760 heightSize = Math.max(heightSize, getSuggestedMinimumHeight());
763 int heightSizeAndState = ViewCompat.resolveSizeAndState(heightSize, heightMeasureSpec, 0);
764 heightSize = heightSizeAndState & ViewCompat.MEASURED_SIZE_MASK;
769 int delta = heightSize - mTotalLength;
    [all...]
  /frameworks/support/v7/mediarouter/src/android/support/v7/app/
MediaRouteButton.java 426 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
452 height = heightSize;
455 height = Math.min(heightSize, minHeight + getPaddingTop() + getPaddingBottom());
  /frameworks/support/v4/java/android/support/v4/view/
PagerTitleStrip.java 425 final int heightSize = MeasureSpec.getSize(heightMeasureSpec);
431 int childHeight = heightSize;
446 setMeasuredDimension(widthSize, heightSize);
  /packages/apps/Dialer/src/com/android/dialer/widget/
OverlappingPaneLayout.java 355 int heightSize = MeasureSpec.getSize(heightMeasureSpec);
379 heightSize = 300;
399 final int heightAvailable = heightSize - getPaddingTop() - getPaddingBottom();
549 final int measuredHeight = heightSize;
    [all...]

Completed in 540 milliseconds

1 2 3