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

/frameworks/base/services/core/java/com/android/server/pm/
H A DShortcutPackageInfo.java175 final long lastUpdateTime = ShortcutService.parseLongAttribute(
H A DShortcutPackage.java1349 ShortcutService.parseLongAttribute(parser, ATTR_LAST_RESET);
1420 rank = (int) ShortcutService.parseLongAttribute(parser, ATTR_RANK);
1421 lastChangedTimestamp = ShortcutService.parseLongAttribute(parser, ATTR_TIMESTAMP);
1422 flags = (int) ShortcutService.parseLongAttribute(parser, ATTR_FLAGS);
1423 iconResId = (int) ShortcutService.parseLongAttribute(parser, ATTR_ICON_RES_ID);
H A DShortcutService.java703 return parseLongAttribute(parser, attribute) == 1;
707 return (int) parseLongAttribute(parser, attribute);
711 return (int) parseLongAttribute(parser, attribute, def);
714 static long parseLongAttribute(XmlPullParser parser, String attribute) { method in class:ShortcutService
715 return parseLongAttribute(parser, attribute, 0);
718 static long parseLongAttribute(XmlPullParser parser, String attribute, long def) { method in class:ShortcutService
878 mRawLastResetTime = parseLongAttribute(parser, ATTR_VALUE);
H A DShortcutUser.java388 final long lastAppScanTime = ShortcutService.parseLongAttribute(parser,

Completed in 70 milliseconds