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.java712 return parseLongAttribute(parser, attribute) == 1;
716 return (int) parseLongAttribute(parser, attribute);
720 return (int) parseLongAttribute(parser, attribute, def);
723 static long parseLongAttribute(XmlPullParser parser, String attribute) { method in class:ShortcutService
724 return parseLongAttribute(parser, attribute, 0);
727 static long parseLongAttribute(XmlPullParser parser, String attribute, long def) { method in class:ShortcutService
887 mRawLastResetTime = parseLongAttribute(parser, ATTR_VALUE);
H A DShortcutUser.java388 final long lastAppScanTime = ShortcutService.parseLongAttribute(parser,

Completed in 31 milliseconds