HomeSort by relevance Sort by last modified time
    Searched refs:childHeightMode (Results 1 - 5 of 5) sorted by null

  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuView.java 358 final int childHeightMode = MeasureSpec.getMode(parentHeightMeasureSpec);
359 final int childHeightSpec = MeasureSpec.makeMeasureSpec(childHeightSize, childHeightMode);
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuView.java 381 final int childHeightMode = MeasureSpec.getMode(parentHeightMeasureSpec);
382 final int childHeightSpec = MeasureSpec.makeMeasureSpec(childHeightSize, childHeightMode);
  /packages/apps/Launcher2/src/com/android/launcher2/
PagedView.java 538 int childHeightMode;
540 childHeightMode = MeasureSpec.AT_MOST;
542 childHeightMode = MeasureSpec.EXACTLY;
548 MeasureSpec.makeMeasureSpec(heightSize - verticalPadding, childHeightMode);
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
PagedView.java 861 int childHeightMode;
873 childHeightMode = MeasureSpec.AT_MOST;
875 childHeightMode = MeasureSpec.EXACTLY;
885 childHeightMode = MeasureSpec.EXACTLY;
    [all...]
  /frameworks/base/packages/Keyguard/src/com/android/keyguard/
PagedView.java 704 int childHeightMode;
706 childHeightMode = MeasureSpec.AT_MOST;
708 childHeightMode = MeasureSpec.EXACTLY;
714 MeasureSpec.makeMeasureSpec(heightSize - verticalPadding, childHeightMode);
    [all...]

Completed in 267 milliseconds