Home
last modified time | relevance | path

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

/frameworks/base/services/core/java/com/android/server/wm/
DDisplaySettings.java50 public int overscanRight; field in DisplaySettings.Entry
74 outRect.right = entry.overscanRight; in getOverscanLocked()
95 entry.overscanRight = right; in setOverscanLocked()
178 entry.overscanRight = getIntAttribute(parser, "overscanRight"); in readDisplay()
209 if (entry.overscanRight != 0) { in writeSettingsLocked()
210 out.attribute(null, "overscanRight", Integer.toString(entry.overscanRight)); in writeSettingsLocked()
DWindowManagerService.java8484 displayInfo.overscanRight, displayInfo.overscanBottom); in configureDisplayPolicyLocked()
8514 displayInfo.overscanRight = right; in setOverscanLocked()
11512 displayInfo.overscanRight = rect.right; in newDisplayContentLocked()
/frameworks/base/core/java/android/view/
DDisplayInfo.java136 public int overscanRight; field in DisplayInfo
276 && overscanRight == other.overscanRight in equals()
312 overscanRight = other.overscanRight; in copyFrom()
344 overscanRight = source.readInt(); in readFromParcel()
377 dest.writeInt(overscanRight); in writeToParcel()
466 if (overscanLeft != 0 || overscanTop != 0 || overscanRight != 0 || overscanBottom != 0) { in toString()
472 sb.append(overscanRight); in toString()
DDisplay.java556 mDisplayInfo.overscanRight, mDisplayInfo.overscanBottom); in getOverscanInsets()
/frameworks/base/policy/src/com/android/internal/policy/impl/
DPhoneWindowManager.java3158 final int overscanLeft, overscanTop, overscanRight, overscanBottom; in beginLayoutLw() local
3164 overscanRight = mOverscanBottom; in beginLayoutLw()
3170 overscanRight = mOverscanLeft; in beginLayoutLw()
3176 overscanRight = mOverscanTop; in beginLayoutLw()
3182 overscanRight = mOverscanRight; in beginLayoutLw()
3189 overscanRight = 0; in beginLayoutLw()
3202 mUnrestrictedScreenWidth = displayWidth - overscanLeft - overscanRight; in beginLayoutLw()
3213 = mCurRight = displayWidth - overscanRight; in beginLayoutLw()
3303 int left = displayWidth - overscanRight in beginLayoutLw()
3305 mTmpNavigationFrame.set(left, 0, displayWidth - overscanRight, displayHeight); in beginLayoutLw()