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

  /packages/apps/Launcher2/src/com/android/launcher2/
PagedViewCellLayoutChildren.java 82 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
85 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
PagedViewCellLayout.java 174 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
177 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
CellLayout.java     [all...]
  /frameworks/base/core/java/android/widget/
VideoView.java 180 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
183 if (widthSpecMode == MeasureSpec.EXACTLY && heightSpecMode == MeasureSpec.EXACTLY) {
200 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) {
204 } else if (heightSpecMode == MeasureSpec.EXACTLY) {
216 if (heightSpecMode == MeasureSpec.AT_MOST && height > heightSpecSize) {
    [all...]
AdapterViewAnimator.java 697 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
704 if (heightSpecMode == MeasureSpec.UNSPECIFIED) {
707 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
721 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
    [all...]
SlidingDrawer.java 279 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
282 if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
    [all...]
StackView.java     [all...]
ImageView.java     [all...]
  /developers/build/prebuilts/androidtv/visual-game-controller/src/com/example/android/visualgamecontroller/
ControllerView.java 310 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
322 if (heightSpecMode == MeasureSpec.EXACTLY) {
324 } else if (heightSpecMode == MeasureSpec.AT_MOST) {
  /packages/apps/Messaging/src/com/android/messaging/ui/
AsyncImageView.java 323 final int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
324 if (widthSpecMode == MeasureSpec.EXACTLY && heightSpecMode == MeasureSpec.EXACTLY) {
  /frameworks/base/core/java/com/android/internal/widget/
SlidingTab.java 484 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
489 || heightSpecMode == MeasureSpec.UNSPECIFIED) {
491 +"(wspec=" + widthSpecMode + ", hspec=" + heightSpecMode + ")",
    [all...]
  /packages/apps/Launcher3/src/com/android/launcher3/
CellLayout.java 800 int heightSpecMode = MeasureSpec.getMode(heightMeasureSpec);
820 } else if (widthSpecMode == MeasureSpec.UNSPECIFIED || heightSpecMode == MeasureSpec.UNSPECIFIED) {
    [all...]

Completed in 389 milliseconds