HomeSort by relevance Sort by last modified time
    Searched refs:XMLElement (Results 1 - 3 of 3) sorted by null

  /external/tinyxml2/
tinyxml2.h 93 class XMLElement;
343 virtual bool VisitEnter( const XMLElement& /*element*/, const XMLAttribute* /*firstAttribute*/ ) { return true; }
345 virtual bool VisitExit( const XMLElement& /*element*/ ) { return true; }
436 friend class XMLElement;
444 virtual XMLElement* ToElement() { return 0; } ///< Safely cast to an Element, or null.
451 virtual const XMLElement* ToElement() const { return 0; }
486 const XMLElement* FirstChildElement( const char* value=0 ) const;
487 XMLElement* FirstChildElement( const char* _value=0 ) { return const_cast<XMLElement*>(const_cast<const XMLNode*>(this)->FirstChildElement( _value )); }
496 const XMLElement* LastChildElement( const char* value=0 ) const;
    [all...]
tinyxml2.cpp 512 returnNode = new (elementPool.Alloc()) XMLElement( this );
675 const XMLElement* XMLNode::FirstChildElement( const char* value ) const
678 XMLElement* element = node->ToElement();
689 const XMLElement* XMLNode::LastChildElement( const char* value ) const
692 XMLElement* element = node->ToElement();
703 const XMLElement* XMLNode::NextSiblingElement( const char* value ) const
716 const XMLElement* XMLNode::PreviousSiblingElement( const char* value ) const
768 if ( node->ToElement() && node->ToElement()->ClosingType() == XMLElement::CLOSING ) {
770 *parentEnd = static_cast<XMLElement*>(node)->value;
778 XMLElement* ele = node->ToElement();
    [all...]
  /external/bluetooth/bluedroid/btif/src/
btif_config_util.cpp 67 XMLElement* se;
68 XMLElement* ke;
69 XMLElement* ve;
77 static int parse_sections(const char* section_name, const XMLElement* section);
155 XMLElement* root = xml.NewElement(BLUEDROID_ROOT);
171 const XMLElement* root = xml.RootElement();
175 const XMLElement* section;
191 static int parse_sections(const char* section_name, const XMLElement* section)
193 const XMLElement* key;
204 const XMLElement* value
    [all...]

Completed in 2154 milliseconds