Lines Matching refs:XMLNode
710 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8, in addTagAttribute()
721 XMLNode::attribute_entry* existingEntry = node->editAttribute(ns, attr); in addTagAttribute()
749 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8, in addTagAttribute()
755 static void fullyQualifyClassName(const String8& package, const sp<XMLNode>& node, in fullyQualifyClassName()
757 XMLNode::attribute_entry* attr = node->editAttribute( in fullyQualifyClassName()
857 status_t massageManifest(Bundle* bundle, ResourceTable* table, sp<XMLNode> root) in massageManifest()
872 const XMLNode::attribute_entry* attr = root->getAttribute( in massageManifest()
883 const XMLNode::attribute_entry* attr = root->getAttribute( in massageManifest()
890 sp<XMLNode> vers = root->getChildElement(String16(), String16("uses-sdk")); in massageManifest()
895 vers = XMLNode::newElement(root->getFilename(), String16(), String16("uses-sdk")); in massageManifest()
914 const XMLNode::attribute_entry* attr = vers->getAttribute( in massageManifest()
952 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); in massageManifest()
965 XMLNode::attribute_entry* attr = root->editAttribute(String16(), String16("package")); in massageManifest()
978 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); in massageManifest()
983 … Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(application->getChildren()); in massageManifest()
985 sp<XMLNode> child = children.editItemAt(i); in massageManifest()
1001 Vector<sp<XMLNode> >& children = const_cast<Vector<sp<XMLNode> >&>(root->getChildren()); in massageManifest()
1003 sp<XMLNode> child = children.editItemAt(i); in massageManifest()
1006 XMLNode::attribute_entry* attr = child->editAttribute( in massageManifest()
1015 sp<XMLNode> application = root->getChildElement(String16(), String16("application")); in massageManifest()
1017 XMLNode::attribute_entry* icon_attr = application->editAttribute( in massageManifest()
1020 XMLNode::attribute_entry* round_icon_attr = application->editAttribute( in massageManifest()
1029 const XMLNode::attribute_entry* attr = root->getAttribute(String16(), String16("featureName")); in massageManifest()
1204 sp<XMLNode> root = XMLNode::newNamespace(filename, androidPrefix, androidNSUri); in generateAndroidManifestForSplit()
1207 sp<XMLNode> manifest = XMLNode::newElement(filename, String16(), String16("manifest")); in generateAndroidManifestForSplit()
1237 sp<XMLNode> app = XMLNode::newElement(filename, String16(), String16("application")); in generateAndroidManifestForSplit()
1754 sp<XMLNode> manifestTree = XMLNode::parse(manifestFile); in buildResources()