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...]
  /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/tinyxml2/
tinyxml2.cpp 52 node->~XMLNode(); \
451 char* XMLDocument::Identify( char* p, XMLNode** node )
453 XMLNode* returnNode = 0;
531 for ( const XMLNode* node=FirstChild(); node; node=node->NextSibling() )
541 // --------- XMLNode ----------- //
543 XMLNode::XMLNode( XMLDocument* doc ) :
552 XMLNode::~XMLNode()
561 void XMLNode::SetValue( const char* str, bool staticMem )
    [all...]
tinyxml2.h 96 class XMLNode;
330 @sa XMLNode::Accept()
408 /** XMLNode is a base class for every object that is in the
412 The type of a XMLNode can be queried, and it can
433 class XMLNode
439 /// Get the XMLDocument that owns this XMLNode.
441 /// Get the XMLDocument that owns this XMLNode.
474 const XMLNode* Parent() const { return parent; }
475 XMLNode* Parent() { return parent; }
481 const XMLNode* FirstChild() const { return firstChild; }
    [all...]
  /external/libvpx/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 354 milliseconds