Searched refs:overscanBottom (Results 1 – 5 of 5) sorted by relevance
/frameworks/base/services/core/java/com/android/server/wm/ |
D | DisplaySettings.java | 51 public int overscanBottom; field in DisplaySettings.Entry 75 outRect.bottom = entry.overscanBottom; in getOverscanLocked() 96 entry.overscanBottom = bottom; in setOverscanLocked() 179 entry.overscanBottom = getIntAttribute(parser, "overscanBottom"); in readDisplay() 212 if (entry.overscanBottom != 0) { in writeSettingsLocked() 213 out.attribute(null, "overscanBottom", Integer.toString(entry.overscanBottom)); in writeSettingsLocked()
|
D | WindowManagerService.java | 8484 displayInfo.overscanRight, displayInfo.overscanBottom); in configureDisplayPolicyLocked() 8515 displayInfo.overscanBottom = bottom; in setOverscanLocked() 11513 displayInfo.overscanBottom = rect.bottom; in newDisplayContentLocked()
|
/frameworks/base/core/java/android/view/ |
D | DisplayInfo.java | 142 public int overscanBottom; field in DisplayInfo 277 && overscanBottom == other.overscanBottom in equals() 313 overscanBottom = other.overscanBottom; in copyFrom() 345 overscanBottom = source.readInt(); in readFromParcel() 378 dest.writeInt(overscanBottom); in writeToParcel() 466 if (overscanLeft != 0 || overscanTop != 0 || overscanRight != 0 || overscanBottom != 0) { in toString() 474 sb.append(overscanBottom); in toString()
|
D | Display.java | 556 mDisplayInfo.overscanRight, mDisplayInfo.overscanBottom); in getOverscanInsets()
|
/frameworks/base/policy/src/com/android/internal/policy/impl/ |
D | PhoneWindowManager.java | 3158 final int overscanLeft, overscanTop, overscanRight, overscanBottom; in beginLayoutLw() local 3165 overscanBottom = mOverscanLeft; in beginLayoutLw() 3171 overscanBottom = mOverscanTop; in beginLayoutLw() 3177 overscanBottom = mOverscanRight; in beginLayoutLw() 3183 overscanBottom = mOverscanBottom; in beginLayoutLw() 3190 overscanBottom = 0; in beginLayoutLw() 3203 mUnrestrictedScreenHeight = displayHeight - overscanTop - overscanBottom; in beginLayoutLw() 3215 = mCurBottom = displayHeight - overscanBottom; in beginLayoutLw() 3278 int top = displayHeight - overscanBottom in beginLayoutLw() 3280 mTmpNavigationFrame.set(0, top, displayWidth, displayHeight - overscanBottom); in beginLayoutLw()
|