Home | History | Annotate | Download | only in tinyxml

Lines Matching defs:Attribute

577 const char* TiXmlElement::Attribute( const char* name ) const
587 const std::string* TiXmlElement::Attribute( const std::string& name ) const
597 const char* TiXmlElement::Attribute( const char* name, int* i ) const
613 const std::string* TiXmlElement::Attribute( const std::string& name, int* i ) const
629 const char* TiXmlElement::Attribute( const char* name, double* d ) const
645 const std::string* TiXmlElement::Attribute( const std::string& name, double* d ) const
860 const TiXmlAttribute* attribute = 0;
861 for( attribute = attributeSet.First();
862 attribute;
863 attribute = attribute->Next() )
865 target->SetAttribute( attribute->Name(), attribute->Value() );
1544 assert( 0 ); // we tried to remove a non-linked attribute.