HomeSort by relevance Sort by last modified time
    Searched defs:appWidth (Results 1 - 8 of 8) sorted by null

  /frameworks/base/services/tests/servicestests/src/com/android/server/wm/
AppBoundsTests.java 56 info.appWidth = 1024;
65 assertEquals(config.appBounds.width(), info.appWidth);
  /frameworks/base/core/java/android/view/
DisplayInfo.java 70 public int appWidth;
79 * The smallest value of {@link #appWidth} that an application is likely to encounter,
93 * The largest value of {@link #appWidth} that an application is likely to encounter,
285 && appWidth == other.appWidth
326 appWidth = other.appWidth;
363 appWidth = source.readInt();
409 dest.writeInt(appWidth);
512 displayAdjustments.getConfiguration(), appWidth, appHeight)
    [all...]
NotificationHeaderView.java 128 final int appWidth = mAppName.getMeasuredWidth();
129 if (overFlow > 0 && mAppName.getVisibility() != GONE && appWidth > mChildMinWidth) {
130 int newSize = appWidth - Math.min(appWidth - mChildMinWidth, overFlow);
133 overFlow -= appWidth - newSize;
  /frameworks/base/services/core/java/com/android/server/wm/
DockedStackDividerController.java 234 final int appWidth = mService.mPolicy.getNonDecorDisplayWidth(dw, dh, rotation,
242 config.setAppBounds(leftInset /*left*/, topInset /*top*/, leftInset + appWidth /*right*/,
    [all...]
AppTransition.java 660 final int appWidth = containingFrame.width();
664 float scaleW = mTmpRect.width() / (float) appWidth;
708 a.initialize(appWidth, appHeight, appWidth, appHeight);
    [all...]
WindowStateAnimator.java 250 mAnimDx = displayInfo.appWidth;
391 displayInfo.appWidth, displayInfo.appHeight);
393 mAnimDx = displayInfo.appWidth;
    [all...]
DisplayContent.java     [all...]
  /cts/hostsidetests/services/activityandwindowmanager/util/src/android/server/cts/
WindowManagerState.java 881 final int appWidth = Integer.valueOf(matcher.group(5));
883 mAppRect.setBounds(0, 0, appWidth, appHeight);
    [all...]

Completed in 786 milliseconds