Home
last modified time | relevance | path

Searched refs:getBoolAttr (Results 1 – 5 of 5) sorted by relevance

/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/marshallable/
DAppInfoFactory.java40 Boolean containsAds = XmlUtils.getBoolAttr(appInfoEle, XmlUtils.HR_ATTR_CONTAINS_ADS, true); in createFromHrElements()
41 Boolean obeyAps = XmlUtils.getBoolAttr(appInfoEle, XmlUtils.HR_ATTR_OBEY_APS, true); in createFromHrElements()
43 XmlUtils.getBoolAttr(appInfoEle, XmlUtils.HR_ATTR_ADS_FINGERPRINTING, true); in createFromHrElements()
45 XmlUtils.getBoolAttr(appInfoEle, XmlUtils.HR_ATTR_SECURITY_FINGERPRINTING, true); in createFromHrElements()
DSecurityLabelsFactory.java39 XmlUtils.getBoolAttr(ele, XmlUtils.HR_ATTR_IS_DATA_DELETABLE, false); in createFromHrElements()
41 XmlUtils.getBoolAttr(ele, XmlUtils.HR_ATTR_IS_DATA_ENCRYPTED, false); in createFromHrElements()
DDataTypeFactory.java57 XmlUtils.getBoolAttr(hrDataTypeEle, XmlUtils.HR_ATTR_IS_COLLECTION_OPTIONAL, false); in createFromHrElements()
59 XmlUtils.getBoolAttr(hrDataTypeEle, XmlUtils.HR_ATTR_IS_SHARING_OPTIONAL, false); in createFromHrElements()
DSystemAppSafetyLabelFactory.java40 XmlUtils.getBoolAttr(systemAppSafetyLabelEle, XmlUtils.HR_ATTR_DECLARATION, true); in createFromHrElements()
/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/util/
DXmlUtils.java286 public static Boolean getBoolAttr(Element ele, String attrName, boolean required) in getBoolAttr() method in XmlUtils