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

1 2 3 4

  /external/webrtc/talk/app/webrtc/androidtests/src/org/webrtc/
SurfaceViewRendererOnMeasureTest.java 74 int widthSpec, int heightSpec) {
76 surfaceViewRenderer.onMeasure(widthSpec, heightSpec);
81 + MeasureSpec.toString(widthSpec) + ", " + MeasureSpec.toString(heightSpec) + ")"
182 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.AT_MOST);
187 expectedSize.x, expectedSize.y, widthSpec, heightSpec);
194 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.AT_MOST);
199 expectedSize.x, expectedSize.y, widthSpec, heightSpec);
205 final int heightSpec = MeasureSpec.makeMeasureSpec(1280, MeasureSpec.EXACTLY);
208 720, 1280, widthSpec, heightSpec);
  /frameworks/base/tests/UiBench/src/com/android/test/uibench/
NotificationShadeActivity.java 132 int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
133 child.measure(widthSpec, heightSpec);
  /frameworks/opt/setupwizard/library/recyclerview/src/com/android/setupwizardlib/view/
StickyHeaderRecyclerView.java 75 protected void onMeasure(int widthSpec, int heightSpec) {
76 super.onMeasure(widthSpec, heightSpec);
78 measureChild(getHeader(), widthSpec, heightSpec);
  /frameworks/support/media/src/main/java/androidx/media/subtitle/
ClosedCaptionWidget.java 96 final int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
98 measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/transition/
TransitionUtils.java 108 int heightSpec = View.MeasureSpec.makeMeasureSpec(bottom - top, View.MeasureSpec.EXACTLY);
109 copy.measure(widthSpec, heightSpec);
  /frameworks/support/transition/src/main/java/androidx/transition/
TransitionUtils.java 69 int heightSpec = View.MeasureSpec.makeMeasureSpec(bottom - top, View.MeasureSpec.EXACTLY);
70 copy.measure(widthSpec, heightSpec);
  /packages/apps/Launcher3/src/com/android/launcher3/
DropTargetBar.java 136 int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.AT_MOST);
141 button.measure(widthSpec, heightSpec);
155 int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
159 button.measure(widthSpec, heightSpec);
  /packages/apps/Messaging/src/com/android/messaging/ui/
SnackBarManager.java 272 final int heightSpec = ViewGroup.getChildMeasureSpec(
275 rootView.measure(widthSpec, heightSpec);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 184 final int heightSpec = MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.EXACTLY);
185 mButton.measure(widthSpec, heightSpec);
243 int heightSpec;
256 heightSpec = MeasureSpec.makeMeasureSpec(layoutParams.height, MeasureSpec.EXACTLY);
257 view.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 635 final int heightSpec;
639 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
650 heightSpec = height;
652 heightSpec = mDropDownHeight;
659 (heightSpec < 0)? -1 : heightSpec);
673 final int heightSpec;
675 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
678 heightSpec = height;
680 heightSpec = mDropDownHeight
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/
BaseCardView.java 700 int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
705 extraView.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
ListPopupWindow.java 668 final int heightSpec;
672 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
683 heightSpec = height;
685 heightSpec = mDropDownHeight;
692 (heightSpec < 0)? -1 : heightSpec);
705 final int heightSpec;
707 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
710 heightSpec = height;
712 heightSpec = mDropDownHeight
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/list/
PinnedHeaderListView.java 364 int heightSpec;
375 heightSpec = View.MeasureSpec
378 heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
380 view.measure(widthSpec, heightSpec);
  /packages/apps/Dialer/java/com/android/contacts/common/list/
PinnedHeaderListView.java 309 int heightSpec;
318 heightSpec =
321 heightSpec = View.MeasureSpec.makeMeasureSpec(0, View.MeasureSpec.UNSPECIFIED);
323 view.measure(widthSpec, heightSpec);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 289 final int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
291 view.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 556 int heightSpec = View.MeasureSpec.makeMeasureSpec(height, View.MeasureSpec.EXACTLY);
557 view.measure(widthSpec, heightSpec);
719 int heightSpec = View.MeasureSpec.makeMeasureSpec(state.mMeasuredHeight,
721 view.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 708 final int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
710 measure(widthSpec, heightSpec);
ClosedCaptionRenderer.java 179 final int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
181 measure(widthSpec, heightSpec);
    [all...]
WebVttRenderer.java     [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskView.java 276 int heightSpec = MeasureSpec.makeMeasureSpec(heightWithoutPadding, MeasureSpec.EXACTLY);
279 measureChildren(widthSpec, heightSpec);
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 201 // final int heightSpec = MeasureSpec.makeMeasureSpec(child.getMeasuredHeight(), MeasureSpec.EXACTLY);
202 // child.measure(widthSpec, heightSpec);
269 int heightSpec = MeasureSpec.makeMeasureSpec(heightSize, MeasureSpec.EXACTLY);
271 child.measure(widthSpec, heightSpec);
  /packages/apps/PackageInstaller/src/android/support/wearable/view/
WearableListView.java     [all...]
  /frameworks/av/packages/MediaComponents/src/com/android/media/subtitle/
ClosedCaptionRenderer.java 176 final int heightSpec = MeasureSpec.makeMeasureSpec(height, MeasureSpec.EXACTLY);
178 measure(widthSpec, heightSpec);
    [all...]
  /frameworks/ex/widget/java/com/android/ex/widget/
StaggeredGridView.java 780 final int heightSpec;
782 heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
784 heightSpec = MeasureSpec.makeMeasureSpec(lp.height, MeasureSpec.EXACTLY);
787 child.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationContentView.java 208 int heightSpec;
218 heightSpec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
220 heightSpec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.AT_MOST);
222 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0);
225 heightSpec = MeasureSpec.makeMeasureSpec(mMinContractedHeight, MeasureSpec.EXACTLY);
226 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0);
230 measureChildWithMargins(mContractedChild, widthMeasureSpec, 0, heightSpec, 0);
235 heightSpec = MeasureSpec.makeMeasureSpec(mContractedChild.getMeasuredHeight(),
237 measureChildWithMargins(mExpandedChild, widthMeasureSpec, 0, heightSpec, 0);
    [all...]

Completed in 870 milliseconds

1 2 3 4