Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/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()
/third_party/lame/ACM/tinyxml/
Dtinyxml.h39 class TiXmlAttribute; variable
431 class TiXmlAttribute : public TiXmlBase
437 TiXmlAttribute() : prev( 0 ), next( 0 ) {} in TiXmlAttribute() function
440TiXmlAttribute( const std::string& _name, const std::string& _value ) : name( _name ), value( _val… in TiXmlAttribute() function
454 TiXmlAttribute* Next() const;
456 TiXmlAttribute* Previous() const;
458 bool operator==( const TiXmlAttribute& rhs ) const { return rhs.name == name; }
459 bool operator<( const TiXmlAttribute& rhs ) const { return name < rhs.name; }
460 bool operator>( const TiXmlAttribute& rhs ) const { return name > rhs.name; }
483 TiXmlAttribute* prev;
[all …]
Dtinyxml.cpp316 TiXmlAttribute* node = attributeSet.Find( name ); in RemoveAttribute()
415 TiXmlAttribute* node = attributeSet.First(); in ~TiXmlElement()
423 TiXmlAttribute* node = attributeSet.Find( name ); in Attribute()
456 TiXmlAttribute* node = attributeSet.Find( name ); in SetAttribute()
463 TiXmlAttribute* attrib = new TiXmlAttribute( name, value ); in SetAttribute()
486 TiXmlAttribute* attrib; in Print()
532 TiXmlAttribute* attrib; in StreamOut()
569 TiXmlAttribute* attribute = 0; in Clone()
714 TiXmlAttribute* TiXmlAttribute::Next() const in Next()
724 TiXmlAttribute* TiXmlAttribute::Previous() const in Previous()
[all …]
Dtinyxmlparser.cpp590 TiXmlAttribute attrib; in Parse()
752 const char* TiXmlAttribute::Parse( const char* p ) in Parse()
889 TiXmlAttribute attrib; in Parse()
896 TiXmlAttribute attrib; in Parse()
903 TiXmlAttribute attrib; in Parse()
Dchanges.txt4 - Implemented the Next and Prev methods of the TiXmlAttribute class.
46 - Fixed TiXmlAttribute::Previous actually returning "next." Thanks
/third_party/skia/third_party/externals/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,
/third_party/skia/third_party/externals/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()