Home
last modified time | relevance | path

Searched refs:appendChildren (Results 1 – 6 of 6) sorted by relevance

/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/marshallable/
DAndroidSafetyLabel.java54 XmlUtils.appendChildren(aslEle, mSafetyLabels.toOdDomElements(doc)); in toOdDomElements()
57 XmlUtils.appendChildren(aslEle, mSystemAppSafetyLabel.toOdDomElements(doc)); in toOdDomElements()
60 XmlUtils.appendChildren(aslEle, mTransparencyInfo.toOdDomElements(doc)); in toOdDomElements()
71 XmlUtils.appendChildren(aslEle, mSafetyLabels.toHrDomElements(doc)); in toHrDomElements()
74 XmlUtils.appendChildren(aslEle, mSystemAppSafetyLabel.toHrDomElements(doc)); in toHrDomElements()
77 XmlUtils.appendChildren(aslEle, mTransparencyInfo.toHrDomElements(doc)); in toHrDomElements()
DSafetyLabels.java63 XmlUtils.appendChildren(safetyLabelsEle, mDataLabels.toOdDomElements(doc)); in toOdDomElements()
66 XmlUtils.appendChildren(safetyLabelsEle, mSecurityLabels.toOdDomElements(doc)); in toOdDomElements()
69 XmlUtils.appendChildren(safetyLabelsEle, mThirdPartyVerification.toOdDomElements(doc)); in toOdDomElements()
81 XmlUtils.appendChildren(safetyLabelsEle, mDataLabels.toHrDomElements(doc)); in toHrDomElements()
84 XmlUtils.appendChildren(safetyLabelsEle, mSecurityLabels.toHrDomElements(doc)); in toHrDomElements()
87 XmlUtils.appendChildren(safetyLabelsEle, mThirdPartyVerification.toHrDomElements(doc)); in toHrDomElements()
DTransparencyInfo.java53 XmlUtils.appendChildren(transparencyInfoEle, mDeveloperInfo.toOdDomElements(doc)); in toOdDomElements()
56 XmlUtils.appendChildren(transparencyInfoEle, mAppInfo.toOdDomElements(doc)); in toOdDomElements()
66 XmlUtils.appendChildren(transparencyInfoEle, mDeveloperInfo.toHrDomElements(doc)); in toHrDomElements()
69 XmlUtils.appendChildren(transparencyInfoEle, mAppInfo.toHrDomElements(doc)); in toHrDomElements()
DDataCategory.java64 XmlUtils.appendChildren(dataCategoryEle, dataType.toOdDomElements(doc)); in toOdDomElements()
DDataLabels.java98 XmlUtils.appendChildren(dataCategoryEle, dataType.toOdDomElements(doc)); in maybeAppendDataUsages()
/frameworks/base/tools/app_metadata_bundles/src/lib/java/com/android/asllib/util/
DXmlUtils.java183 public static void appendChildren(Element ele, List<Element> children) { in appendChildren() method in XmlUtils