Home
last modified time | relevance | path

Searched refs:overscanRight (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DDisplaySettings.java51 public int overscanRight; field in DisplaySettings.Entry
75 outRect.right = entry.overscanRight; in getOverscanLocked()
96 entry.overscanRight = right; in setOverscanLocked()
179 entry.overscanRight = getIntAttribute(parser, "overscanRight"); in readDisplay()
210 if (entry.overscanRight != 0) { in writeSettingsLocked()
211 out.attribute(null, "overscanRight", Integer.toString(entry.overscanRight)); in writeSettingsLocked()
DWindowManagerService.java8678 displayInfo.overscanRight, displayInfo.overscanBottom); in configureDisplayPolicyLocked()
8708 displayInfo.overscanRight = right; in setOverscanLocked()
11726 displayInfo.overscanRight = rect.right; in newDisplayContentLocked()
/frameworks/base/core/java/android/view/
DDisplayInfo.java136 public int overscanRight; field in DisplayInfo
277 && overscanRight == other.overscanRight in equals()
314 overscanRight = other.overscanRight; in copyFrom()
346 overscanRight = source.readInt(); in readFromParcel()
384 dest.writeInt(overscanRight); in writeToParcel()
540 if (overscanLeft != 0 || overscanTop != 0 || overscanRight != 0 || overscanBottom != 0) { in toString()
546 sb.append(overscanRight); in toString()
DDisplay.java583 mDisplayInfo.overscanRight, mDisplayInfo.overscanBottom); in getOverscanInsets()
/frameworks/base/services/core/java/com/android/server/display/
DLogicalDisplay.java132 mInfo.overscanRight = mOverrideDisplayInfo.overscanRight; in getDisplayInfoLocked()
/frameworks/base/services/core/java/com/android/server/policy/
DPhoneWindowManager.java3461 final int overscanLeft, overscanTop, overscanRight, overscanBottom; in beginLayoutLw() local
3467 overscanRight = mOverscanBottom; in beginLayoutLw()
3473 overscanRight = mOverscanLeft; in beginLayoutLw()
3479 overscanRight = mOverscanTop; in beginLayoutLw()
3485 overscanRight = mOverscanRight; in beginLayoutLw()
3492 overscanRight = 0; in beginLayoutLw()
3505 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight; in beginLayoutLw()
3516 = mCurRight = displayWidth - overscanRight; in beginLayoutLw()
3605 int left = displayWidth - overscanRight in beginLayoutLw()
3607 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight); in beginLayoutLw()