Home
last modified time | relevance | path

Searched refs:getIntAttribute (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/services/core/java/com/android/server/wm/
DDisplayWindowSettings.java508 private int getIntAttribute(XmlPullParser parser, String name) { in getIntAttribute() method in DisplayWindowSettings
509 return getIntAttribute(parser, name, 0 /* defaultValue */); in getIntAttribute()
512 private int getIntAttribute(XmlPullParser parser, String name, int defaultValue) { in getIntAttribute() method in DisplayWindowSettings
539 entry.mOverscanLeft = getIntAttribute(parser, "overscanLeft"); in readDisplay()
540 entry.mOverscanTop = getIntAttribute(parser, "overscanTop"); in readDisplay()
541 entry.mOverscanRight = getIntAttribute(parser, "overscanRight"); in readDisplay()
542 entry.mOverscanBottom = getIntAttribute(parser, "overscanBottom"); in readDisplay()
543 entry.mWindowingMode = getIntAttribute(parser, "windowingMode", in readDisplay()
545 entry.mUserRotationMode = getIntAttribute(parser, "userRotationMode", in readDisplay()
547 entry.mUserRotation = getIntAttribute(parser, "userRotation", in readDisplay()
[all …]
/frameworks/base/services/core/java/com/android/server/timezone/
DPackageStatusStorage.java135 int updateAppVersion = getIntAttribute(parser, ATTRIBUTE_UPDATE_APP_VERSION); in getPackageStatusLocked()
136 int dataAppVersion = getIntAttribute(parser, ATTRIBUTE_DATA_APP_VERSION); in getPackageStatusLocked()
256 return getIntAttribute(parser, ATTRIBUTE_OPTIMISTIC_LOCK_ID); in getCurrentOptimisticLockId()
377 private static int getIntAttribute(XmlPullParser parser, String attributeName) in getIntAttribute() method in PackageStatusStorage