Searched refs:XMLNode (Results 1 - 10 of 10) sorted by relevance

/frameworks/base/tools/aapt/
H A DXMLNode.h13 class XMLNode;
37 class XMLNode : public RefBase class in inherits:RefBase
40 static sp<XMLNode> parse(const sp<AaptFile>& file);
43 sp<XMLNode> newNamespace(const String8& filename, const String16& prefix, const String16& uri) {
44 return new XMLNode(filename, prefix, uri, true);
48 sp<XMLNode> newElement(const String8& filename, const String16& ns, const String16& name) {
49 return new XMLNode(filename, ns, name, false);
53 sp<XMLNode> newCData(const String8& filename) {
54 return new XMLNode(filename);
70 const Vector<sp<XMLNode> >
[all...]
H A DXMLNode.cpp7 #include "XMLNode.h"
558 sp<XMLNode> root = XMLNode::parse(file);
586 sp<XMLNode> XMLNode::parse(const sp<AaptFile>& file)
632 XMLNode::XMLNode()
638 XMLNode::XMLNode(const String8& filename, const String16& s1, const String16& s2, bool isNamespace)
654 XMLNode
[all...]
H A DAndroid.mk46 XMLNode.cpp \
H A DResource.cpp19 #include "XMLNode.h"
709 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8,
720 XMLNode::attribute_entry* existingEntry = node->editAttribute(ns, attr);
757 bool addTagAttribute(const sp<XMLNode>& node, const char* ns8,
763 static void fullyQualifyClassName(const String8& package, sp<XMLNode> node,
765 XMLNode::attribute_entry* attr = node->editAttribute(
793 status_t massageManifest(Bundle* bundle, sp<XMLNode> root)
808 const XMLNode::attribute_entry* attr = root->getAttribute(
819 const XMLNode::attribute_entry* attr = root->getAttribute(
826 sp<XMLNode> ver
[all...]
H A DResourceTable.h20 class XMLNode;
54 const sp<XMLNode>& xmlTree,
207 const sp<XMLNode>& root);
H A DResourceTable.cpp10 #include "XMLNode.h"
49 sp<XMLNode> root = XMLNode::parse(target);
65 sp<XMLNode> root = XMLNode::parse(target);
76 const sp<XMLNode>& root,
4677 const sp<XMLNode>& root) {
4695 sp<XMLNode> newRoot = NULL;
4698 Vector<sp<XMLNode> > nodesToVisit;
4701 sp<XMLNode> nod
[all...]
/frameworks/opt/net/wifi/service/java/com/android/server/wifi/hotspot2/omadm/
H A DMOTree.java28 public MOTree(XMLNode node, String urn) throws IOException, SAXException {
29 Iterator<XMLNode> children = node.getChildren().iterator();
34 XMLNode child = children.next();
47 for (XMLNode child : node.getChildren()) {
88 private static void buildNode(OMANode parent, XMLNode node) throws IOException {
92 Map<String, XMLNode> checkMap = new HashMap<String, XMLNode>(3);
95 List<XMLNode> children = new ArrayList<XMLNode>();
99 for (XMLNode chil
[all...]
H A DXMLNode.java14 public class XMLNode { class
17 private final List<XMLNode> mChildren;
18 private final XMLNode mParent;
23 public XMLNode(XMLNode parent, String tag, Attributes attributes) throws SAXException { method in class:XMLNode
35 mChildren = new ArrayList<XMLNode>();
53 public void addChild(XMLNode child) {
80 public XMLNode getParent() {
97 public List<XMLNode> getChildren() {
118 for (XMLNode chil
[all...]
H A DOMAParser.java18 private XMLNode mRoot;
19 private XMLNode mCurrent;
34 XMLNode parent = mCurrent;
36 mCurrent = new XMLNode(mCurrent, qName, attributes);
H A DSOAPParser.java21 private XMLNode mRoot;
22 private XMLNode mCurrent;
55 public XMLNode parse(File file) throws IOException, ParserConfigurationException, SAXException {
70 XMLNode parent = mCurrent;
72 mCurrent = new XMLNode(mCurrent, qName, attributes);
109 private static void extractFields(XMLNode node, Map<RequestDetail.RequestFields,
133 for (XMLNode child : node.getChildren()) {
140 XMLNode root = soapParser.parse(new File(args[0]));

Completed in 934 milliseconds