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

/packages/apps/OMA-DM/DMService/src/com/android/omadm/service/
H A DDMConfigureDB.java368 ai.acctName = getAttributeValue(xpp, "AccName", account, 0);
371 ai.serverID = getAttributeValue(xpp, "ServerID", account, 1);
374 ai.addr = getRealString(getAttributeValue(xpp, "Addr", account, 2));
377 ai.addrType = getAttributeValue(xpp, "AddrType", account, 3);
380 ai.portNbr = getAttributeValue(xpp, "PortNbr", account, 4);
383 ai.conRef = getAttributeValue(xpp, "ConRef", account, 5);
386 ai.serverName = getAttributeValue(xpp, "ServerName", account, 6);
389 ai.authPref = getAttributeValue(xpp, "AuthPref", account, 7);
392 ai.serverPW = getAttributeValue(xpp, "ServerPW", account, 8);
395 ai.serverNonce = getAttributeValue(xp
443 private String getAttributeValue(XmlPullParser xpp, String attribute, String[] account, int idx) { method in class:DMConfigureDB
[all...]
/packages/apps/Launcher3/src/com/android/launcher3/
H A DAutoInstallsLayout.java173 if (HOTSEAT_CONTAINER_NAME.equals(getAttributeValue(parser, ATTR_CONTAINER))) {
177 long rank = Long.parseLong(getAttributeValue(parser, ATTR_RANK));
182 screenId = Long.parseLong(getAttributeValue(parser, ATTR_SCREEN));
184 mValues.put(Favorites.CELLX, getAttributeValue(parser, ATTR_X));
185 mValues.put(Favorites.CELLY, getAttributeValue(parser, ATTR_Y));
255 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
256 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
294 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
295 final String className = getAttributeValue(parser, ATTR_CLASS_NAME);
316 final String url = getAttributeValue(parse
531 private static String getAttributeValue(XmlResourceParser parser, String attribute) { method in class:AutoInstallsLayout
[all...]
H A DLauncherProvider.java1463 String strContainer = getAttributeValue(parser, ATTR_CONTAINER);
1468 String screen = getAttributeValue(parser, ATTR_SCREEN);
1469 String x = getAttributeValue(parser, ATTR_X);
1470 String y = getAttributeValue(parser, ATTR_Y);
1479 final String title = getAttributeValue(parser, ATTR_TITLE);
1480 final String pkg = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1576 final String pkg = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1577 final String uri = getAttributeValue(parser, ATTR_URI);
1727 final String packageName = getAttributeValue(parser, ATTR_PACKAGE_NAME);
1728 final String className = getAttributeValue(parse
2257 private static String getAttributeValue(XmlResourceParser parser, String attribute) { method in class:LauncherProvider
[all...]

Completed in 1388 milliseconds