Searched refs:overscanBottom (Results 1 – 6 of 6) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplaySettings.java | 52 public int overscanBottom; field in DisplaySettings.Entry 76 outRect.bottom = entry.overscanBottom; in getOverscanLocked() 97 entry.overscanBottom = bottom; in setOverscanLocked() 180 entry.overscanBottom = getIntAttribute(parser, "overscanBottom"); in readDisplay() 213 if (entry.overscanBottom != 0) { in writeSettingsLocked() 214 out.attribute(null, "overscanBottom", Integer.toString(entry.overscanBottom)); in writeSettingsLocked()
|
D | WindowManagerService.java | 8678 displayInfo.overscanRight, displayInfo.overscanBottom); in configureDisplayPolicyLocked() 8709 displayInfo.overscanBottom = bottom; in setOverscanLocked() 11727 displayInfo.overscanBottom = rect.bottom; in newDisplayContentLocked()
|
/frameworks/base/core/java/android/view/ |
D | DisplayInfo.java | 142 public int overscanBottom; field in DisplayInfo 278 && overscanBottom == other.overscanBottom in equals() 315 overscanBottom = other.overscanBottom; in copyFrom() 347 overscanBottom = source.readInt(); in readFromParcel() 385 dest.writeInt(overscanBottom); in writeToParcel() 540 if (overscanLeft != 0 || overscanTop != 0 || overscanRight != 0 || overscanBottom != 0) { in toString() 548 sb.append(overscanBottom); in toString()
|
D | Display.java | 583 mDisplayInfo.overscanRight, mDisplayInfo.overscanBottom); in getOverscanInsets()
|
/frameworks/base/services/core/java/com/android/server/display/ |
D | LogicalDisplay.java | 133 mInfo.overscanBottom = mOverrideDisplayInfo.overscanBottom; in getDisplayInfoLocked()
|
/frameworks/base/services/core/java/com/android/server/policy/ |
D | PhoneWindowManager.java | 3461 final int overscanLeft, overscanTop, overscanRight, overscanBottom; in beginLayoutLw() local 3468 overscanBottom = mOverscanLeft; in beginLayoutLw() 3474 overscanBottom = mOverscanTop; in beginLayoutLw() 3480 overscanBottom = mOverscanRight; in beginLayoutLw() 3486 overscanBottom = mOverscanBottom; in beginLayoutLw() 3493 overscanBottom = 0; in beginLayoutLw() 3506 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom; in beginLayoutLw() 3518 = mCurBottom = displayHeight - overscanBottom; in beginLayoutLw() 3580 int top = displayHeight - overscanBottom in beginLayoutLw() 3582 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom); in beginLayoutLw()
|