Home
last modified time | relevance | path

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

/external/sfntly/cpp/src/test/tinyxml/
Dtinyxml.cpp441 TiXmlAttribute* node = attributeSet.Find( str ); in RemoveAttribute()
443 TiXmlAttribute* node = attributeSet.Find( name ); in RemoveAttribute()
570 TiXmlAttribute* node = attributeSet.First(); in ClearThis()
579 const TiXmlAttribute* node = attributeSet.Find( name ); in Attribute()
589 const TiXmlAttribute* attrib = attributeSet.Find( name ); in Attribute()
599 const TiXmlAttribute* attrib = attributeSet.Find( name ); in Attribute()
615 const TiXmlAttribute* attrib = attributeSet.Find( name ); in Attribute()
631 const TiXmlAttribute* attrib = attributeSet.Find( name ); in Attribute()
647 const TiXmlAttribute* attrib = attributeSet.Find( name ); in Attribute()
663 const TiXmlAttribute* attrib = attributeSet.Find( name ); in QueryIntAttribute()
[all …]
Dtinyxml.h87 class TiXmlAttribute; variable
139 …virtual bool VisitEnter( const TiXmlElement& /*element*/, const TiXmlAttribute* /*firstAttribute*/… in VisitEnter() argument
779 class TiXmlAttribute : public TiXmlBase
785 TiXmlAttribute() : TiXmlBase() in TiXmlAttribute() function
793 TiXmlAttribute( const std::string& _name, const std::string& _value ) in TiXmlAttribute() function
803 TiXmlAttribute( const char * _name, const char * _value ) in TiXmlAttribute() function
849 const TiXmlAttribute* Next() const;
850 TiXmlAttribute* Next() { in Next()
851 return const_cast< TiXmlAttribute* >( (const_cast< const TiXmlAttribute* >(this))->Next() ); in Next()
855 const TiXmlAttribute* Previous() const;
[all …]
Dtinyxmlparser.cpp1142 TiXmlAttribute* attrib = new TiXmlAttribute(); in Parse()
1161 TiXmlAttribute* node = attributeSet.Find( attrib->NameTStr() ); in Parse()
1163 TiXmlAttribute* node = attributeSet.Find( attrib->Name() ); in Parse()
1392 const char* TiXmlAttribute::Parse( const char* p, TiXmlParsingData* data, TiXmlEncoding encoding ) in Parse()
1605 TiXmlAttribute attrib; in Parse()
1611 TiXmlAttribute attrib; in Parse()
1617 TiXmlAttribute attrib; in Parse()
/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/sfntly/cpp/src/test/
Dtest_xml_utils.cc40 const TiXmlAttribute* GetAttribute(const TiXmlNode* node, in GetAttribute()
42 for (const TiXmlAttribute* attribute = node->ToElement()->FirstAttribute(); in GetAttribute()
Dtest_xml_utils.h29 const TiXmlAttribute* GetAttribute(const TiXmlNode* node,
/external/sfntly/cpp/src/test/autogenerated/
Dcmap_basic_test.cc86 const TiXmlAttribute* num_cmaps_attr = GetAttribute(cmap_table->at(0), in TEST_P()
88 ASSERT_NE(num_cmaps_attr, reinterpret_cast<TiXmlAttribute*>(NULL)); in TEST_P()