Lines Matching refs:_value
361 const TiXmlNode* TiXmlNode::FirstChild( const char * _value ) const in FirstChild()
366 if ( strcmp( node->Value(), _value ) == 0 ) in FirstChild()
373 const TiXmlNode* TiXmlNode::LastChild( const char * _value ) const in LastChild()
378 if ( strcmp( node->Value(), _value ) == 0 ) in LastChild()
413 const TiXmlNode* TiXmlNode::NextSibling( const char * _value ) const in NextSibling()
418 if ( strcmp( node->Value(), _value ) == 0 ) in NextSibling()
425 const TiXmlNode* TiXmlNode::PreviousSibling( const char * _value ) const in PreviousSibling()
430 if ( strcmp( node->Value(), _value ) == 0 ) in PreviousSibling()
467 const TiXmlElement* TiXmlNode::FirstChildElement( const char * _value ) const in FirstChildElement()
471 for ( node = FirstChild( _value ); in FirstChildElement()
473 node = node->NextSibling( _value ) ) in FirstChildElement()
497 const TiXmlElement* TiXmlNode::NextSiblingElement( const char * _value ) const in NextSiblingElement()
501 for ( node = NextSibling( _value ); in NextSiblingElement()
503 node = node->NextSibling( _value ) ) in NextSiblingElement()
525 TiXmlElement::TiXmlElement (const char * _value) in TiXmlElement() argument
529 value = _value; in TiXmlElement()
534 TiXmlElement::TiXmlElement( const std::string& _value ) in TiXmlElement() argument
538 value = _value; in TiXmlElement()
790 void TiXmlElement::SetAttribute( const std::string& _name, const std::string& _value ) in SetAttribute() argument
794 attrib->SetValue( _value ); in SetAttribute()
1250 void TiXmlAttribute::SetIntValue( int _value ) in SetIntValue() argument
1254 TIXML_SNPRINTF(buf, sizeof(buf), "%d", _value); in SetIntValue()
1256 sprintf (buf, "%d", _value); in SetIntValue()
1261 void TiXmlAttribute::SetDoubleValue( double _value ) in SetDoubleValue() argument
1265 TIXML_SNPRINTF( buf, sizeof(buf), "%g", _value); in SetDoubleValue()
1267 sprintf (buf, "%g", _value); in SetDoubleValue()