HomeSort by relevance Sort by last modified time
    Searched defs:heightSpec (Results 1 - 25 of 92) 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/full-support/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/base/core/java/android/transition/
TransitionUtils.java 107 int heightSpec = View.MeasureSpec.makeMeasureSpec(bottom - top, View.MeasureSpec.EXACTLY);
108 copy.measure(widthSpec, heightSpec);
  /frameworks/support/transition/src/android/support/transition/
TransitionUtils.java 61 int heightSpec = View.MeasureSpec.makeMeasureSpec(bottom - top, View.MeasureSpec.EXACTLY);
62 copy.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/support/design/src/android/support/design/internal/
BottomNavigationMenuView.java 113 final int heightSpec = MeasureSpec.makeMeasureSpec(mItemHeight, MeasureSpec.EXACTLY);
149 heightSpec);
157 View.resolveSizeAndState(mItemHeight, heightSpec, 0));
  /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);
672 final int heightSpec;
674 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
677 heightSpec = height;
679 heightSpec = mDropDownHeight
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 699 int heightSpec = MeasureSpec.makeMeasureSpec(0, MeasureSpec.UNSPECIFIED);
704 extraView.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListPopupWindow.java 667 final int heightSpec;
671 heightSpec = noInputMethod ? height : ViewGroup.LayoutParams.MATCH_PARENT;
682 heightSpec = height;
684 heightSpec = mDropDownHeight;
691 (heightSpec < 0)? -1 : heightSpec);
704 final int heightSpec;
706 heightSpec = ViewGroup.LayoutParams.MATCH_PARENT;
709 heightSpec = height;
711 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 279 int heightSpec = MeasureSpec.makeMeasureSpec(heightWithoutPadding, MeasureSpec.EXACTLY);
282 measureChildren(widthSpec, heightSpec);
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
NotificationContentView.java 185 int heightSpec;
195 heightSpec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.EXACTLY);
197 heightSpec = MeasureSpec.makeMeasureSpec(size, MeasureSpec.AT_MOST);
199 mContractedChild.measure(widthMeasureSpec, heightSpec);
202 heightSpec = MeasureSpec.makeMeasureSpec(mMinContractedHeight, MeasureSpec.EXACTLY);
203 mContractedChild.measure(widthMeasureSpec, heightSpec);
207 mContractedChild.measure(widthMeasureSpec, heightSpec);
212 heightSpec = MeasureSpec.makeMeasureSpec(mContractedChild.getMeasuredHeight(),
214 mExpandedChild.measure(widthMeasureSpec, heightSpec);
    [all...]
  /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/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...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 393 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.AT_MOST);
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
PagedView.java 624 int heightSpec = MeasureSpec.makeMeasureSpec(getMeasuredHeight(), MeasureSpec.EXACTLY);
626 measure(widthSpec, heightSpec);
    [all...]

Completed in 1777 milliseconds

1 2 3 4