Searched defs:XMLNode (Results 1 - 3 of 3) sorted by relevance
/frameworks/base/tools/localize/ |
H A D | XMLHandler.cpp | 178 XMLNode::XMLNode() function in class:XMLNode 182 XMLNode::~XMLNode() 184 // for_each(m_children.begin(), m_children.end(), delete_object<XMLNode>); 187 XMLNode* 188 XMLNode::Clone() const 192 XMLNode* e = XMLNode::NewElement(m_pos, m_ns, m_name, m_attrs, m_pretty); 200 return XMLNode [all...] |
H A D | XMLHandler.h | 53 struct XMLNode struct 66 static XMLNode* NewElement(const SourcePos& pos, const string& ns, const string& name, 68 static XMLNode* NewText(const SourcePos& pos, const string& text, int pretty); 70 ~XMLNode(); 73 XMLNode* Clone() const; 92 inline const vector<XMLNode*>& Children() const { return m_children; } 93 inline vector<XMLNode*>& EditChildren() { return m_children; } 94 vector<XMLNode*> GetElementsByName(const string& ns, const string& name) const; 95 XMLNode* GetElementByNameAt(const string& ns, const string& name, size_t index) const; 103 XMLNode(); [all...] |
/frameworks/base/tools/aapt/ |
H A D | XMLNode.h | 13 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...] |
Completed in 344 milliseconds