Lines Matching refs:XMLNode
688 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8, in addTagAttribute()
699 XMLNode::attribute_entry* existingEntry = node->editAttribute(ns, attr); in addTagAttribute()
734 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8, in addTagAttribute()
740 static void fullyQualifyClassName(const String8& package, sp<XMLNode> node, in fullyQualifyClassName()
742 XMLNode::attribute_entry* attr = node->editAttribute( in fullyQualifyClassName()
768 status_t massageManifest(Bundle* bundle, sp<XMLNode> root) in massageManifest()
783 const XMLNode::attribute_entry* attr = root->getAttribute( in massageManifest()
794 const XMLNode::attribute_entry* attr = root->getAttribute( in massageManifest()
801 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk")); in massageManifest()
806 vers = XMLNode::newElement(root->getFilename(), String16(), String16("uses-sdk")); in massageManifest()
825 const XMLNode::attribute_entry* attr = vers->getAttribute( in massageManifest()
847 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); in massageManifest()
860 XMLNode::attribute_entry* attr = root->editAttribute(String16(), String16("package")); in massageManifest()
870 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); in massageManifest()
875 … Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren()); in massageManifest()
877 sp<XMLNode> child = children.editItemAt(i); in massageManifest()
893 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(root->getChildren()); in massageManifest()
895 sp<XMLNode> child = children.editItemAt(i); in massageManifest()
898 XMLNode::attribute_entry* attr = child->editAttribute( in massageManifest()
908 const XMLNode::attribute_entry* attr = root->getAttribute(String16(), String16("featureName")); in massageManifest()
1064 sp<XMLNode> root = XMLNode::newNamespace(filename, androidPrefix, androidNSUri); in generateAndroidManifestForSplit()
1067 sp<XMLNode> manifest = XMLNode::newElement(filename, String16(), String16("manifest")); in generateAndroidManifestForSplit()
1097 sp<XMLNode> app = XMLNode::newElement(filename, String16(), String16("application")); in generateAndroidManifestForSplit()
1545 sp<XMLNode> manifestTree = XMLNode::parse(manifestFile); in buildResources()