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

/frameworks/base/services/core/java/com/android/server/pm/
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);

Completed in 58 milliseconds