Home
last modified time | relevance | path

Searched refs:TiXmlAttribute (Results 1 – 7 of 7) sorted by relevance

/external/tinyxml/
Dtinyxml.h89 class TiXmlAttribute; variable
694 class TiXmlAttribute : public TiXmlBase
700 TiXmlAttribute() : TiXmlBase() in TiXmlAttribute() function
708 TiXmlAttribute( const std::string& _name, const std::string& _value ) in TiXmlAttribute() function
718 TiXmlAttribute( const char * _name, const char * _value ) in TiXmlAttribute() function
766 const TiXmlAttribute* Next() const;
767 TiXmlAttribute* Next();
769 const TiXmlAttribute* Previous() const;
770 TiXmlAttribute* Previous();
772 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
[all …]
Dtinyxml.cpp466 TiXmlAttribute* node = attributeSet.Find( name ); in RemoveAttribute()
655 TiXmlAttribute* node = attributeSet.First(); in ClearThis()
664 const TiXmlAttribute* node = attributeSet.Find( name ); in Attribute()
703 const TiXmlAttribute* node = attributeSet.Find( name ); in QueryIntAttribute()
713 const TiXmlAttribute* node = attributeSet.Find( name ); in QueryDoubleAttribute()
747 TiXmlAttribute* node = attributeSet.Find( name ); in SetAttribute()
754 TiXmlAttribute* attrib = new TiXmlAttribute( name, _value ); in SetAttribute()
776 const TiXmlAttribute* attrib; in Print()
821 const TiXmlAttribute* attrib; in StreamOut()
855 const TiXmlAttribute* attribute = 0; in CopyTo()
[all …]
Dtinyxmlparser.cpp1100 TiXmlAttribute* attrib = new TiXmlAttribute(); in Parse()
1119 TiXmlAttribute* node = attributeSet.Find( attrib->Name() ); in Parse()
1318 const char* TiXmlAttribute::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
1539 TiXmlAttribute attrib; in Parse()
1545 TiXmlAttribute attrib; in Parse()
1551 TiXmlAttribute attrib; in Parse()
Dxmltest.cpp389 TiXmlAttribute* doors = room->FirstAttribute(); in main()
428 TiXmlAttribute* doors = room->FirstAttribute(); in main()
Dchanges.txt4 - Implemented the Next and Prev methods of the TiXmlAttribute class.
46 - Fixed TiXmlAttribute::Previous actually returning "next." Thanks
/external/skia/src/ports/
DSkXMLParser_tinyxml.cpp29 const TiXmlAttribute* attr = elem->FirstAttribute(); in walk_elem()
/external/srec/tools/grxmlcompile/
Dgrxmldoc.cpp799 for(TiXmlAttribute* attr=node.ToElement()->FirstAttribute(); in printNode()