HomeSort by relevance Sort by last modified time
    Searched defs:XMLNode (Results 1 - 5 of 5) sorted by null

  /frameworks/base/tools/aapt/
XMLNode.h 13 class XMLNode;
37 class XMLNode : public 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> >& getChildren() const
    [all...]
  /frameworks/base/tools/localize/
XMLHandler.cpp 178 XMLNode::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::NewText(m_pos, m_text, m_pretty)
    [all...]
XMLHandler.h 53 struct XMLNode
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...]
  /external/srec/tools/grxmlcompile/
grxmldoc.h 41 typedef TiXmlNode XMLNode;
85 bool parseGrammar( XMLNode &node, std::string & xMLFileName );
97 bool parseNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
98 bool beginNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
99 bool endNode( XMLNode &node, SubGraph *&p_SubGraph, const unsigned int level );
100 bool beginParseGrammarNode( XMLNode &node );
101 bool endParseGrammarNode( XMLNode &node );
102 bool beginParseMetaNode( XMLNode &node );
103 bool endParseMetaNode( XMLNode &node );
104 bool beginParseRuleNode( XMLNode &node, SubGraph *&p_SubGraph)
    [all...]
  /external/libvpx/examples/includes/ASCIIMathPHP-2.0/
ASCIIMathPHP-2.0.class.php 5 * -- XMLNode
6 * -- MathMLNode extends XMLNode
58 class XMLNode
72 function XMLNode($id = NULL)
387 class MathMLNode extends XMLNode
391 parent::XMLNode($id);
    [all...]

Completed in 97 milliseconds