Lines Matching refs:name
314 void TiXmlElement::RemoveAttribute( const std::string& name )
316 TiXmlAttribute* node = attributeSet.Find( name );
421 const std::string* TiXmlElement::Attribute( const std::string& name ) const
423 TiXmlAttribute* node = attributeSet.Find( name );
432 const std::string* TiXmlElement::Attribute( const std::string& name, int* i ) const
434 const std::string* s = Attribute( name );
443 void TiXmlElement::SetAttribute( const std::string& name, int val )
450 SetAttribute( name, v );
454 void TiXmlElement::SetAttribute( const std::string& name, const std::string& value )
456 TiXmlAttribute* node = attributeSet.Find( name );
463 TiXmlAttribute* attrib = new TiXmlAttribute( name, value );
717 // have a value or name.
718 if ( next->value.empty() && next->name.empty() )
727 // have a value or name.
728 if ( prev->value.empty() && prev->name.empty() )
748 PutString( name, stream );
755 PutString( name, stream );
996 TiXmlAttribute* TiXmlAttributeSet::Find( const std::string& name ) const
1002 if ( node->Name() == name )