Home
last modified time | relevance | path

Searched refs:parseLongAttribute (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/services/core/java/com/android/server/pm/
DShortcutPackage.java1354 ShortcutService.parseLongAttribute(parser, ATTR_LAST_RESET); in loadFromXml()
1425 rank = (int) ShortcutService.parseLongAttribute(parser, ATTR_RANK); in parseShortcut()
1426 lastChangedTimestamp = ShortcutService.parseLongAttribute(parser, ATTR_TIMESTAMP); in parseShortcut()
1427 flags = (int) ShortcutService.parseLongAttribute(parser, ATTR_FLAGS); in parseShortcut()
1428 iconResId = (int) ShortcutService.parseLongAttribute(parser, ATTR_ICON_RES_ID); in parseShortcut()
DShortcutPackageInfo.java176 final long lastUpdateTime = ShortcutService.parseLongAttribute( in loadFromXml()
DShortcutService.java729 return parseLongAttribute(parser, attribute) == 1; in parseBooleanAttribute()
733 return (int) parseLongAttribute(parser, attribute); in parseIntAttribute()
737 return (int) parseLongAttribute(parser, attribute, def); in parseIntAttribute()
740 static long parseLongAttribute(XmlPullParser parser, String attribute) { in parseLongAttribute() method in ShortcutService
741 return parseLongAttribute(parser, attribute, 0); in parseLongAttribute()
744 static long parseLongAttribute(XmlPullParser parser, String attribute, long def) { in parseLongAttribute() method in ShortcutService
904 mRawLastResetTime = parseLongAttribute(parser, ATTR_VALUE); in loadBaseStateLocked()
DShortcutUser.java388 final long lastAppScanTime = ShortcutService.parseLongAttribute(parser, in loadFromXml()