Home
last modified time | relevance | path

Searched refs:outAppBounds (Results 1 – 3 of 3) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DConfigurationContainer.java253 Rect outAppBounds = inOutConfig.windowConfiguration.getAppBounds(); in applySizeOverrideIfNeeded() local
254 if (outAppBounds == null || outAppBounds.isEmpty()) { in applySizeOverrideIfNeeded()
257 outAppBounds = inOutConfig.windowConfiguration.getAppBounds(); in applySizeOverrideIfNeeded()
258 outAppBounds.inset(displayContent.getDisplayPolicy() in applySizeOverrideIfNeeded()
267 inOutConfig.screenWidthDp = (int) (outAppBounds.width() / density + 0.5f); in applySizeOverrideIfNeeded()
270 inOutConfig.screenHeightDp = (int) (outAppBounds.height() / density + 0.5f); in applySizeOverrideIfNeeded()
DTaskFragment.java2356 Rect outAppBounds = inOutConfig.windowConfiguration.getAppBounds(); in computeConfigResourceOverrides() local
2357 if (outAppBounds == null || outAppBounds.isEmpty()) { in computeConfigResourceOverrides()
2360 outAppBounds = inOutConfig.windowConfiguration.getAppBounds(); in computeConfigResourceOverrides()
2377 outAppBounds.intersect(containingAppBounds); in computeConfigResourceOverrides()
2414 outAppBounds.set(mTmpNonDecorBounds); in computeConfigResourceOverrides()
2417 mTmpNonDecorBounds.set(outAppBounds); in computeConfigResourceOverrides()
2418 mTmpStableBounds.set(outAppBounds); in computeConfigResourceOverrides()
DActivityRecord.java10921 void getContainerBounds(Rect outAppBounds, Rect outBounds, int rotation, int orientation,
10925 outAppBounds.set(outBounds);
10929 getBoundsByRotation(outAppBounds, rotation);
10930 final int dW = outAppBounds.width();
10931 final int dH = outAppBounds.height();
10947 outAppBounds.set(outBounds);
10955 outAppBounds.offset(insets.left, insets.top);
10958 TaskFragment.intersectWithInsetsIfFits(outAppBounds, outBounds,