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

1 2 3 4

  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
HierarchicalMove.java 100 int widthSpec = wide ? LayoutParams.WRAP_CONTENT : LayoutParams.MATCH_PARENT;
101 LayoutParams params = new LayoutParams(widthSpec, LayoutParams.WRAP_CONTENT);
  /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) + ")"
181 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.AT_MOST);
187 expectedSize.x, expectedSize.y, widthSpec, heightSpec);
193 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.EXACTLY);
199 expectedSize.x, expectedSize.y, widthSpec, heightSpec);
204 final int widthSpec = MeasureSpec.makeMeasureSpec(720, MeasureSpec.AT_MOST);
208 720, 1280, 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 106 int widthSpec = View.MeasureSpec.makeMeasureSpec(right - left, View.MeasureSpec.EXACTLY);
108 copy.measure(widthSpec, heightSpec);
  /packages/apps/Messaging/src/com/android/messaging/ui/
SnackBarManager.java 269 final int widthSpec = ViewGroup.getChildMeasureSpec(
275 rootView.measure(widthSpec, heightSpec);
  /development/samples/Home/src/com/example/android/home/
ApplicationsStackLayout.java 183 final int widthSpec = MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.EXACTLY);
185 mButton.measure(widthSpec, heightSpec);
242 int widthSpec;
255 widthSpec = MeasureSpec.makeMeasureSpec(layoutParams.width, MeasureSpec.EXACTLY);
257 view.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/com/android/internal/widget/
SubtitleView.java 220 final int widthSpec = MeasureSpec.getSize(widthMeasureSpec);
222 if (computeMeasurements(widthSpec)) {
  /packages/apps/TV/usbtuner/src/com/google/android/exoplayer/text/
SubtitleView.java 197 final int widthSpec = MeasureSpec.getSize(widthMeasureSpec);
199 if (computeMeasurements(widthSpec)) {
  /frameworks/base/core/java/android/widget/
ListPopupWindow.java 603 final int widthSpec;
607 widthSpec = -1;
609 widthSpec = getAnchorView().getWidth();
611 widthSpec = mDropDownWidth;
637 mDropDownVerticalOffset, (widthSpec < 0)? -1 : widthSpec,
640 final int widthSpec;
642 widthSpec = ViewGroup.LayoutParams.MATCH_PARENT;
645 widthSpec = getAnchorView().getWidth();
647 widthSpec = mDropDownWidth
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/recents/views/
TaskView.java 269 int widthSpec = MeasureSpec.makeMeasureSpec(widthWithoutPadding, MeasureSpec.EXACTLY);
273 measureChildren(widthSpec, heightSpec);
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
BaseCardView.java 657 int widthSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
663 extraView.measure(widthSpec, heightSpec);
700 int widthSpec = MeasureSpec.makeMeasureSpec(mMeasuredWidth, MeasureSpec.EXACTLY);
706 extraView.measure(widthSpec, heightSpec);
    [all...]
GridLayoutManager.java     [all...]
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ListPopupWindow.java 648 final int widthSpec;
652 widthSpec = -1;
654 widthSpec = getAnchorView().getWidth();
656 widthSpec = mDropDownWidth;
682 mDropDownVerticalOffset, (widthSpec < 0)? -1 : widthSpec,
685 final int widthSpec;
687 widthSpec = ViewGroup.LayoutParams.MATCH_PARENT;
690 widthSpec = getAnchorView().getWidth();
692 widthSpec = mDropDownWidth
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/list/
PinnedHeaderListView.java 359 int widthSpec;
363 widthSpec = View.MeasureSpec
366 widthSpec = View.MeasureSpec
376 view.measure(widthSpec, heightSpec);
  /packages/apps/UnifiedEmail/src/com/android/mail/browse/
ConversationItemViewCoordinates.java 288 final int widthSpec = MeasureSpec.makeMeasureSpec(config.getWidth(), MeasureSpec.EXACTLY);
291 view.measure(widthSpec, heightSpec);
  /frameworks/base/core/java/android/app/
ActivityTransitionCoordinator.java 489 int widthSpec = View.MeasureSpec.makeMeasureSpec(width, View.MeasureSpec.EXACTLY);
491 view.measure(widthSpec, heightSpec);
656 int widthSpec = View.MeasureSpec.makeMeasureSpec(state.mMeasuredWidth,
660 view.measure(widthSpec, heightSpec);
    [all...]
  /frameworks/base/media/java/android/media/
TtmlRenderer.java 707 final int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
710 measure(widthSpec, heightSpec);
ClosedCaptionRenderer.java 178 final int widthSpec = MeasureSpec.makeMeasureSpec(width, MeasureSpec.EXACTLY);
181 measure(widthSpec, heightSpec);
    [all...]
WebVttRenderer.java     [all...]
  /packages/apps/Gallery2/src/com/android/photos/views/
GalleryThumbnailView.java 200 // final int widthSpec = MeasureSpec.makeMeasureSpec(child.getMeasuredWidth(), MeasureSpec.EXACTLY);
202 // child.measure(widthSpec, heightSpec);
270 int widthSpec = MeasureSpec.makeMeasureSpec(columnWidth, 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 778 final int widthSpec = MeasureSpec.makeMeasureSpec(widthSize, MeasureSpec.EXACTLY);
787 child.measure(widthSpec, heightSpec);
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
AppsCustomizePagedView.java 392 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.AT_MOST);
395 mWidgetSpacingLayout.measure(widthSpec, heightSpec);
    [all...]
PagedView.java 623 int widthSpec = MeasureSpec.makeMeasureSpec(getMeasuredWidth(), MeasureSpec.EXACTLY);
626 measure(widthSpec, heightSpec);
    [all...]
  /prebuilts/sdk/current/support/v7/gridlayout/libs/
android-support-v7-gridlayout.jar 

Completed in 658 milliseconds

1 2 3 4