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

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

Completed in 36 milliseconds