Home
last modified time | relevance | path

Searched refs:getStringAttr (Results 1 – 4 of 4) sorted by relevance

/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/marshallable/
DDeveloperInfoFactory.java37 String name = XmlUtils.getStringAttr(developerInfoEle, XmlUtils.HR_ATTR_NAME, true); in createFromHrElements()
38 String email = XmlUtils.getStringAttr(developerInfoEle, XmlUtils.HR_ATTR_EMAIL, true); in createFromHrElements()
39 String address = XmlUtils.getStringAttr(developerInfoEle, XmlUtils.HR_ATTR_ADDRESS, true); in createFromHrElements()
41 XmlUtils.getStringAttr(developerInfoEle, XmlUtils.HR_ATTR_COUNTRY_REGION, true); in createFromHrElements()
44 XmlUtils.getStringAttr( in createFromHrElements()
46 String website = XmlUtils.getStringAttr(developerInfoEle, XmlUtils.HR_ATTR_WEBSITE, false); in createFromHrElements()
48 XmlUtils.getStringAttr( in createFromHrElements()
DAppInfoFactory.java38 String title = XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_TITLE, true); in createFromHrElements()
39 String description = XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_DESCRIPTION, true); in createFromHrElements()
47 XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_PRIVACY_POLICY, true); in createFromHrElements()
57 String category = XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_CATEGORY, true); in createFromHrElements()
58 String email = XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_EMAIL, true); in createFromHrElements()
59 String website = XmlUtils.getStringAttr(appInfoEle, XmlUtils.HR_ATTR_WEBSITE, false); in createFromHrElements()
DThirdPartyVerificationFactory.java40 String url = XmlUtils.getStringAttr(ele, XmlUtils.HR_ATTR_URL, true); in createFromHrElements()
/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/util/
DXmlUtils.java411 public static String getStringAttr(Element ele, String attrName) throws MalformedXmlException { in getStringAttr() method in XmlUtils
412 return getStringAttr(ele, attrName, true); in getStringAttr()
416 public static String getStringAttr(Element ele, String attrName, boolean required) in getStringAttr() method in XmlUtils
454 ints.add(Integer.parseInt(XmlUtils.getStringAttr(itemEle, XmlUtils.OD_ATTR_VALUE))); in getOdIntArray()
484 strs.add(XmlUtils.getStringAttr(itemEle, XmlUtils.OD_ATTR_VALUE, true)); in getOdStringArray()